/* News Section Styles - Fantasy/RPG themed */

/* Main news section container */
.news-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.news-title {
    font-family: 'Cinzel Decorative';
    font-size: 3rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Two-column grid layout (60/40 split) */
.news-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Featured news (left column) */
.news-featured {
    background: #17181a;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.news-featured:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.news-featured-image {
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0.05) 50%, 
        rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-featured-placeholder::before {
    content: '📰';
    font-size: 4rem;
    opacity: 0.3;
}

span.hero-eyebrow-date {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #ddaf27;
}

span.hero-eyebrow-name {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #b7b7b7;
}

.news-featured-title {
    font-family: 'Cinzel';
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 1000;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.news-date {
    color: var(--accent-gold);
}

.news-author {
    color: var(--text-secondary);
}

.news-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-family: 'Crimson Text';
    letter-spacing: 0.6px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: var(--accent-gold-light);
    transform: translateX(4px);
}

/* Latest news list (right column) */
.news-list {
    background: #17181a;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    padding: 2rem;
}

.news-list-title {
    font-family: Cinzel;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.news-list-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-default);
    transition: all 0.2s ease;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item:hover {
    padding-left: 0.5rem;
    border-left: 3px solid var(--accent-gold);
}

.news-list-link {
    text-decoration: none;
    display: block;
}

.news-list-item-title {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
    font-family: 'Cinzel';
}

.news-list-item:hover .news-list-item-title {
    color: var(--accent-gold);
}

.news-list-item-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Full article view */
.news-article-view {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.news-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.news-back-btn:hover {
    color: var(--accent-gold);
    transform: translateX(-4px);
}

.news-article-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-article-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.news-article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.news-article-body h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--accent-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.news-article-body h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.news-article-body p {
    margin-bottom: 1rem;
}

.news-article-body ul,
.news-article-body ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.news-article-body li {
    margin-bottom: 0.5rem;
}

.news-article-body strong {
    color: var(--accent-gold);
}

.news-article-body a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.news-article-body a:hover {
    color: var(--accent-gold-light);
}

/* Responsive design */
@media (max-width: 768px) {
    .news-section {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    /* Stack columns on mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-featured,
    .news-list {
        padding: 1.5rem;
    }
    
    .news-featured-title {
        font-size: 1.5rem;
    }
    
    .news-featured-image {
        height: 200px;
    }
    
    .news-article-view {
        padding: 1.5rem;
    }
    
    .news-article-title {
        font-size: 1.75rem;
    }
    
    .news-article-body {
        font-size: 1rem;
    }
}

/* Landing page news box - ensure it's above video carousel */
#landingNewsBox {
    position: relative;
    z-index: 100;
    background: #1a1a1a00;
    margin-bottom: 1rem;
    padding: 1rem 0;
    padding-top: 0px;
    clear: both;
    width: 100%;
}

.news-grid {
    position: relative;
    z-index: 10;
}

/* Landing page news cards - simpler card-based layout */
.landing-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-news-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.landing-news-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
    transform: translateY(-4px);
}

.landing-news-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.landing-news-content {
    padding: 1.5rem;
}

.landing-news-title {
    font-family: Cinzel;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.landing-news-meta {
    font-size: 0.875rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.landing-news-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-family: Crimson Pro;
}

.landing-news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Cinzel;
    font-size: 0.95rem;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-news-link:hover {
    color: var(--accent-gold-light);
    transform: translateX(4px);
}

/* Responsive for landing news cards */
@media (max-width: 768px) {
    #landingNewsBox {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .landing-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .landing-news-image {
        height: 150px;
    }
    
    .landing-news-content {
        padding: 1rem;
    }
    
    .landing-news-title {
        font-size: 1.1rem;
    }
}
