/* ==========================================================================
   NEWS / HOMEPAGE - WoW Themed Modern Design
   ========================================================================== */

/* News Header */
.news-header {
    margin-bottom: 30px;
}

.news-header .header-text {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #e8d5a3;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(201, 169, 102, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(201, 169, 102, 0.3);
}

.news-header .header-text span {
    color: #c9a966;
}

/* News Article Card */
.news-article {
    background: linear-gradient(180deg, rgba(18, 18, 28, 0.95) 0%, rgba(12, 12, 20, 0.98) 100%);
    border: 1px solid rgba(201, 169, 102, 0.15);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-article:hover {
    border-color: rgba(201, 169, 102, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 169, 102, 0.1);
}

.news-article.first-item {
    border-color: rgba(201, 169, 102, 0.25);
}

/* Glow Effect */
.news-article [glow] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 102, 0.5) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-article:hover [glow] {
    opacity: 1;
}

/* Article Thumbnail */
.article-thumbnail {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 102, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin: 0;
}

.article-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.news-article:hover .article-thumbnail img {
    transform: scale(1.05);
}

/* Article Head */
.article-head {
    margin-bottom: 15px;
}

.article-title {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.article-title a {
    color: #e8d5a3 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.article-title a:hover {
    color: #c9a966 !important;
    text-shadow: 0 0 15px rgba(201, 169, 102, 0.4);
}

.article-metadata {
    font-size: 0.8rem;
    color: #8a8070;
    margin-top: 8px;
}

.article-metadata .article-author,
.article-metadata .article-date,
.article-metadata .article-comments {
    display: inline;
}

.article-metadata .article-author::after {
    content: " • ";
    color: #555;
}

.article-metadata a {
    color: #c9a966 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-metadata a:hover {
    color: #e8d5a3 !important;
}

.article-metadata time {
    color: #9a9080;
}

/* Article Tags - Below metadata */
.article-tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tag {
    background: rgba(201, 169, 102, 0.1);
    border: 1px solid rgba(201, 169, 102, 0.2);
    color: #c9a966;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Article Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 102, 0.3) 50%, 
        transparent 100%);
    margin: 20px 0;
}

/* Article Body */
.article-body {
    color: #b8a888;
    line-height: 1.8;
}

.article-content {
    font-size: 0.95rem;
}

.article-content strong {
    color: #c9a966;
}

.article-content a {
    color: #8ab4f8 !important;
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.article-content li {
    margin-bottom: 8px;
}

/* Article Footer */
.article-foot {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 169, 102, 0.1);
}

.btn-readmore {
    background: linear-gradient(180deg, rgba(201, 169, 102, 0.2) 0%, rgba(139, 115, 85, 0.15) 100%) !important;
    border: 1px solid rgba(201, 169, 102, 0.4) !important;
    color: #c9a966 !important;
    padding: 10px 25px !important;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background: linear-gradient(180deg, rgba(201, 169, 102, 0.3) 0%, rgba(139, 115, 85, 0.25) 100%) !important;
    border-color: #c9a966 !important;
    box-shadow: 0 0 20px rgba(201, 169, 102, 0.3);
}

.icon-readmore {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid currentColor;
}

/* Comments */
.news-comments {
    background: linear-gradient(180deg, rgba(15, 15, 22, 0.95) 0%, rgba(10, 10, 16, 0.98) 100%);
    border: 1px solid rgba(201, 169, 102, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination .page-item .page-link {
    background: linear-gradient(180deg, rgba(25, 25, 35, 0.9) 0%, rgba(20, 20, 28, 0.95) 100%);
    border: 1px solid rgba(201, 169, 102, 0.2);
    color: #c9a966;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background: linear-gradient(180deg, rgba(35, 35, 50, 0.95) 0%, rgba(30, 30, 42, 0.98) 100%);
    border-color: #c9a966;
    box-shadow: 0 0 15px rgba(201, 169, 102, 0.2);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(180deg, #c9a966 0%, #8b7355 100%);
    border-color: #c9a966;
    color: #1a1a2e;
}

/* Sidebar Styling */
[sidebar] .box,
[widgets] .box {
    background: linear-gradient(180deg, rgba(18, 18, 28, 0.95) 0%, rgba(12, 12, 20, 0.98) 100%);
    border: 1px solid rgba(201, 169, 102, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

[sidebar] .box-header,
[widgets] .box-header {
    background: linear-gradient(180deg, rgba(201, 169, 102, 0.1) 0%, rgba(201, 169, 102, 0.05) 100%);
    color: #c9a966 !important;
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(201, 169, 102, 0.15);
}

[sidebar] .box-content,
[widgets] .box-content {
    padding: 15px 20px;
    color: #b8a888;
}

/* Responsive */
@media (max-width: 991px) {
    .article-thumbnail {
        margin-bottom: 20px;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .news-article {
        padding: 20px 15px;
    }
    
    .article-title {
        font-size: 1.1rem;
    }
}

