@font-face {
    font-family: 'VentiCF-Medium';
    src: url('../fonts/VentiCF-Medium.otf') format('opentype'),
         url('../fonts/VentiCF-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VentiCF-ExtraBold';
    src: url('../fonts/VentiCF-ExtraBold.otf') format('opentype'),
         url('../fonts/VentiCF-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-accent:             #e11515;
    --color-accent-glow:        rgba(225, 21, 21, 0.5);
    --color-white:  #fff;
    --color-black:  #000;
    --color-bg-dark:        #0a0a0a;
    --color-bg-light:       #ffffff;
    --color-bg-light-alt:   #f5f5f5;
    --color-text-dark:      #1a1a1a;
    --color-text-dark-muted:#555555;
    --color-border-light:   #e0e0e0;

    --font-medium: 'VentiCF-Medium', sans-serif;
    --font-bold:   'VentiCF-ExtraBold', sans-serif;

    --transition: 0.3s;
    --container-max: 780px;
    --radius: 8px;
    --radius-lg: 12px;

    --fs-h1:    clamp(1.75rem, 5vw, 2.5rem);
    --fs-h2:    clamp(1.375rem, 4vw, 1.75rem);
    --fs-h3:    clamp(1.125rem, 3vw, 1.375rem);
    --fs-body:  clamp(0.9375rem, 2.5vw, 1.0625rem);
    --fs-small: clamp(0.8125rem, 2vw, 0.875rem);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-medium);
    font-size: var(--fs-body);
    line-height: 1.8;
    color: var(--color-text-dark);
    background: var(--color-bg-light);
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: opacity var(--transition);
}

a:hover { opacity: 0.75; }

.article-content a:not(.btn):not(.inline-cta a) {
    color: inherit;
    text-decoration: none;
    font-family: var(--font-bold);
    transition: color var(--transition);
}

.article-content a:not(.btn):not(.inline-cta a):hover {
    color: var(--color-accent);
    opacity: 1;
}

img { max-width: 100%; height: auto; }

/* ── Container ── */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 16px;
}

@media (min-width: 768px) {
    .container { padding-inline: 24px; }
}


/* ── Hero Banner ── */

.article-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a0505 100%);
    padding: 48px 0 40px;
    text-align: center;
}

.article-hero__breadcrumb {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.article-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.article-hero__breadcrumb a:hover {
    color: var(--color-white);
    opacity: 1;
}

.article-hero h1 {
    font-family: var(--font-bold);
    font-size: var(--fs-h1);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-hero__meta {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 16px;
}

/* ── Article Body ── */

.article-content {
    padding: 40px 0 32px;
}

.article-content h2 {
    font-family: var(--font-bold);
    font-size: var(--fs-h2);
    color: var(--color-text-dark);
    margin: 36px 0 14px;
    line-height: 1.25;
}

.article-content h3 {
    font-family: var(--font-bold);
    font-size: var(--fs-h3);
    color: var(--color-text-dark);
    margin: 28px 0 10px;
}

.article-content p {
    margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 16px 22px;
}

.article-content li {
    margin-bottom: 6px;
    line-height: 1.7;
}

.article-content blockquote {
    border-left: 4px solid var(--color-accent);
    margin: 24px 0;
    padding: 16px 20px;
    background: var(--color-bg-light-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text-dark-muted);
}

.article-content strong {
    font-family: var(--font-bold);
}

/* ── CTA Box ── */

.cta-box {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b91010 100%);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    font-family: var(--font-bold);
    font-size: var(--fs-h3);
    color: var(--color-white);
    margin: 0 0 10px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    font-size: var(--fs-body);
}

.cta-box .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--color-white);
    color: var(--color-accent);
    font-family: var(--font-bold);
    font-size: 1.125rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* ── Intro Media (image left + text right) ── */

.intro-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 8px;
}

.intro-media__img {
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.intro-media__img img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-media__body {
    display: flex;
    flex-direction: column;
}

.intro-media__body p {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .intro-media {
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
    }

    .intro-media__img {
        flex: 0 0 260px;
    }

    .intro-media__body {
        flex: 1;
    }
}

/* ── Inline CTA (smaller, within text) ── */

.inline-cta {
    display: block;
    text-align: center;
    margin: 28px 0;
}

.inline-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-bold);
    font-size: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 0 10px 4px var(--color-accent-glow);
    transition: opacity var(--transition), box-shadow var(--transition), transform var(--transition);
}

.inline-cta a:hover {
    opacity: 0.9;
    box-shadow: 0 0 16px 6px var(--color-accent-glow);
    transform: translateY(-2px);
}

/* ── Related Articles ── */

.related {
    background: var(--color-bg-light-alt);
    padding: 48px 0;
}

.related .container {
    max-width: 1100px;
}

.related h2 {
    font-family: var(--font-bold);
    font-size: var(--fs-h2);
    text-align: center;
    margin-bottom: 28px;
}

.related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.related-card {
    display: block;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: transform var(--transition), box-shadow var(--transition);
    color: inherit;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.related-card__img {
    background: var(--color-bg-light-alt);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.related-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card__body {
    padding: 16px;
}

.related-card__body h3 {
    font-family: var(--font-bold);
    font-size: var(--fs-h3);
    margin-bottom: 6px;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.related-card__body p {
    font-size: var(--fs-small);
    color: var(--color-text-dark-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.related-card__link {
    font-family: var(--font-bold);
    font-size: var(--fs-small);
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Footer ── */

.article-footer {
    background: var(--color-bg-dark);
    border-top: 3px solid var(--color-accent);
    padding: 40px 0 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

.article-footer .container {
    max-width: 1100px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer__col h4 {
    font-family: var(--font-bold);
    color: var(--color-white);
    margin-bottom: 12px;
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer__col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.footer__disclaimer {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Action Table ── */

.action-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: var(--fs-small);
    overflow-x: auto;
    display: block;
}

.action-table th,
.action-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--color-border-light);
    white-space: nowrap;
}

.action-table th {
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-bold);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.action-table tr:nth-child(even) td {
    background: var(--color-bg-light-alt);
}

.action-table tr:hover td {
    background: #f0f0f0;
}

@media (min-width: 768px) {
    .action-table {
        display: table;
        font-size: var(--fs-body);
    }
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Sticky Bottom CTA (mobile) ── */

.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--color-accent);
    text-align: center;
    z-index: 35;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

.sticky-bottom a {
    color: var(--color-white);
    font-family: var(--font-bold);
    font-size: 1rem;
}

.sticky-bottom a:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .sticky-bottom {
        left: auto;
        right: 24px;
        bottom: 24px;
        width: auto;
        border-radius: var(--radius);
        padding: 14px 28px;
    }
}

/* ── Focus & Reduced Motion ── */

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}
