/* ── News Article Styles ── */
.news-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #07080d;
}

.news-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.25) saturate(0.6);
}

.news-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #07080d 0%, rgba(7, 8, 13, 0.4) 40%, transparent 100%);
}

.news-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem 3rem;
    width: 100%;
}

.news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.news-breadcrumb a {
    color: rgba(240, 160, 66, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.news-breadcrumb a:hover {
    color: var(--color-primary);
}

.news-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--color-primary);
    background: rgba(240, 160, 66, 0.12);
    border: 1px solid rgba(240, 160, 66, 0.3);
    border-radius: 3px;
    padding: 0.2rem 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-date {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.news-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0;
}

.news-hero-title span {
    color: var(--color-primary);
}

.news-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.75rem;
    max-width: 640px;
    line-height: 1.6;
}

/* ── Article Body ── */
.news-body {
    background: #07080d;
    padding: 4rem 2rem;
}

.news-article-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.news-article {
    min-width: 0;
}

.news-article h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(240, 160, 66, 0.2);
}

.news-article h2:first-child {
    margin-top: 0;
}

.news-article p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.news-article strong {
    color: #e0e0e0;
}

/* Lists — match the surrounding <p> typography exactly so font-sizes
   stay consistent across articles whether they use bullets or not. */
.news-article ul,
.news-article ol {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.2rem 0;
    padding-left: 1.4rem;
}

.news-article li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.news-article li::marker {
    color: rgba(240, 160, 66, 0.65);
}

.news-article li:last-child {
    margin-bottom: 0;
}

/* H3 in case any article uses subsection headings */
.news-article h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #ececec;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 2rem 0 0.85rem;
}

.news-article img {
    width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* CTA Banner */
.news-cta-banner {
    background: linear-gradient(135deg, rgba(240, 160, 66, 0.1) 0%, rgba(240, 160, 66, 0.03) 100%);
    border: 1px solid rgba(240, 160, 66, 0.25);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
}

.news-cta-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #f0f0f0;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-cta-banner p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.news-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.7rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.news-cta-btn:hover {
    background: #c71a22;
    transform: translateY(-2px);
}

/* ── More Articles (bottom section) ── */
.more-articles {
    background: #07080d;
    padding: 0 2rem 5rem;
}

.more-articles-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 3rem;
}

.more-articles-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 1.5rem;
}

.more-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.more-card {
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.more-card:hover {
    transform: translateY(-4px);
    border-color: rgba(240, 160, 66, 0.35);
    box-shadow: 0 8px 30px rgba(240, 160, 66, 0.08);
}

.more-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #111;
}

.more-card-body {
    padding: 1rem 1.1rem;
}

.more-card-meta {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.35rem;
}

.more-card-tag {
    color: var(--color-primary);
}

.more-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #ddd;
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.more-card:hover .more-card-title {
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .more-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .news-hero {
        min-height: 40vh;
    }

    .news-hero-content {
        padding: 0 1rem 2rem;
    }

    .news-body {
        padding: 2rem 1rem;
    }

    .more-articles {
        padding: 0 1rem 3rem;
    }
}


/* ── Article body content styles ── */
.article-video {
    position: relative;
    padding-top: 56.25%;
    margin: 2rem 0;
    background: var(--color-bg-card);
    border-radius: var(--radius-base);
    overflow: hidden;
}
.article-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.article-figure {
    margin: 2rem 0;
}
.article-figure img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-base);
    display: block;
}
.article-figure figcaption {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.6rem;
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

/* Article body typography */
.news-article p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}
.news-article h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-bright);
    margin: 2.5rem 0 1rem;
}
.news-article h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-bright);
    margin: 2rem 0 0.75rem;
}
.news-article ul, .news-article ol {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 1rem;
}
.news-article li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.news-article strong {
    color: var(--color-text-bright);
    font-weight: 700;
}
.news-article code {
    background: var(--color-bg-card);
    padding: 0.15em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
    color: var(--color-primary);
}