/* ============================================
   Nederlandse Toguz Korgool Federatie - NTKF
   ============================================ */

/* --- Custom Properties --- */
:root {
    --red: #AE1C28;
    --red-dark: #8B1620;
    --blue: #21468B;
    --blue-dark: #1A3770;
    --gold: #C9A84C;
    --gold-light: #D4BA6A;
    --dark: #1A1A2E;
    --dark-light: #2A2A42;
    --light: #F5F5F7;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #E5E7EB;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --nav-height: 72px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

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

a:hover {
    color: var(--red);
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Animations --- */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: var(--blue);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    z-index: 1001;
}

.nav__logo:hover {
    color: var(--gold);
}

.nav__logo-icon {
    font-size: 2rem;
    line-height: 1;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav__logo-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav__logo-text small {
    font-size: 0.65rem;
    opacity: 0.85;
    font-weight: 500;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

.nav__links a:hover {
    color: var(--gold);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: auto;
    margin-right: 1.5rem;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 50%, var(--blue) 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(33, 70, 139, 0.3) 0%, transparent 50%);
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        var(--gold) 40px,
        var(--gold) 41px
    );
}

.hero__content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 2rem 1rem;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero board decoration */
.hero__board-decoration {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    opacity: 0.15;
}

.hero__board-decoration .pit {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.btn--primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn--primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(174, 28, 40, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.btn--outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    color: var(--dark);
}

.btn--small {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* ============================================
   Intro Section
   ============================================ */
.intro {
    padding: 4rem 0;
    background: var(--light);
}

.intro__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.intro__card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.intro__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.intro__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.intro__icon svg {
    width: 26px;
    height: 26px;
}

.intro__card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.intro__card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   Generic Section
   ============================================ */
.section {
    padding: 5rem 0;
}

.section--light {
    background: var(--light);
}

.section--white {
    background: var(--white);
}

.section--dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
}

.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.section--dark .section__header h2 {
    color: var(--white);
}

.section__lead {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section--dark .section__lead {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Game Info (Over Toguz Korgool)
   ============================================ */
.game-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.game-info__text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--blue);
    margin-top: 2rem;
}

.game-info__text h3:first-child {
    margin-top: 0;
}

.game-info__text p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.game-info__text em {
    color: var(--dark);
    font-style: italic;
}

.game-info__features {
    margin-top: 1rem;
}

.game-info__features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.game-info__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.game-info__features li strong {
    color: var(--dark);
}

/* Board diagram */
.board-diagram {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.board-diagram__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin: 0.5rem 0;
}

.board-diagram__row {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.4rem;
    margin: 0.5rem 0;
}

.board-diagram__pit {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #E8D5B7, #D4C4A0);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    border: 2px solid #C4B48A;
}

.board-diagram__kazans {
    display: flex;
    justify-content: space-between;
    margin: 0.75rem 0;
}

.board-diagram__kazan {
    background: linear-gradient(145deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.board-diagram__kazan span {
    font-size: 1.1rem;
    font-weight: 800;
}

.board-diagram__caption {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

.game-info__links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* ============================================
   Federation Section
   ============================================ */
.federation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.federation__goals h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.federation__list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.federation__list-icon {
    color: var(--gold);
    font-size: 0.6rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Spotlight card */
.spotlight-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.spotlight-card__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.spotlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.spotlight-card__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spotlight-card__item {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.spotlight-card__label {
    font-weight: 700;
    color: var(--gold);
    min-width: 90px;
}

/* Founders Section */
.founders {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founders__title {
    text-align: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.founders__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.founders__card {
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    backdrop-filter: blur(8px);
    transition: transform var(--transition);
}

.founders__card:hover {
    transform: translateY(-4px);
}

.founders__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.founders__card h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.founders__role {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.founders__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================
   Meedoen (Join)
   ============================================ */
.join__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.join__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.join__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.join__card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.join__card-icon svg {
    width: 26px;
    height: 26px;
}

.join__card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.join__card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ============================================
   News
   ============================================ */
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news__card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--gray-light);
}

.news__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.news__date {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news__card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.news__card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news__card a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red);
}

.news__card a:hover {
    color: var(--red-dark);
}

.news__more {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================
   Contact
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact__item {
    margin-bottom: 2rem;
}

.contact__item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact__item a {
    color: var(--blue);
    font-size: 1rem;
}

.contact__item p {
    color: var(--gray);
}

.contact__social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.contact__social-link:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.contact__social-link svg {
    width: 20px;
    height: 20px;
}

/* Form */
.contact__form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form__group textarea {
    resize: vertical;
}

.form__success {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: #D4EDDA;
    color: #155724;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.form__success.show {
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer__logo .nav__logo-icon {
    color: var(--gold);
}

.footer__brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer__links h4,
.footer__affiliations h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__affiliations p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.4rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .game-info {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .federation {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav__links.open {
        right: 0;
    }

    .nav__links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Language switcher mobile */
    .lang-switcher {
        margin-right: 0.75rem;
    }

    /* Founders */
    .founders__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    /* Grids */
    .intro__grid,
    .join__grid,
    .news__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

    .section__header {
        margin-bottom: 2.5rem;
    }

    /* Hero */
    .hero__board-decoration {
        gap: 0.5rem;
    }

    .hero__board-decoration .pit {
        width: 20px;
        height: 20px;
    }

    /* Contact form */
    .contact__form {
        padding: 1.5rem;
    }

    /* Board diagram */
    .board-diagram {
        padding: 1.25rem;
    }

    .board-diagram__pit {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .spotlight-card__item {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ============================================
   News page specifics
   ============================================ */
.news-page {
    padding-top: calc(var(--nav-height) + 3rem);
}

.news-page__header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-page__header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.news-page__header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.news-article {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.news-article__date {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-article h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.news-article p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.news-article a {
    color: var(--blue);
    font-weight: 600;
}

.news-article__back {
    text-align: center;
    margin-top: 2rem;
}
