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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: #f7f8fa;
    color: #111827;

    line-height: 1.6;
}


/* =========================
   GENERAL
========================= */

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid #e5e7eb;

    z-index: 100;
}

.nav-container {
    width: min(1180px, calc(100% - 48px));
    height: 72px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 21px;
    font-weight: 750;

    color: #111827;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;

    color: #4b5563;
    text-decoration: none;

    transition: 0.2s;
}

.nav-links a:hover {
    color: #111827;
}

.nav-links .active {
    color: #111827;
    font-weight: 600;
}


/* =========================
   HERO
========================= */

.hero {
    padding: 110px 0 85px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f8fa 100%
        );
}

.eyebrow {
    color: #6b7280;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(52px, 8vw, 88px);

    line-height: 1;

    letter-spacing: -4px;

    margin-bottom: 28px;
}

.hero-description {
    max-width: 700px;

    font-size: 21px;

    color: #6b7280;
}


/* =========================
   SECTION
========================= */

.section-header {
    margin: 75px 0 28px;
}

.section-header h2 {
    font-size: 30px;

    letter-spacing: -1px;
}


/* =========================
   FEATURED
========================= */

.featured-news {
    background: #111827;

    color: white;

    min-height: 380px;

    border-radius: 22px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;
}

.featured-content {
    max-width: 760px;

    padding: 55px;
}

.featured-content h2 {
    font-size: clamp(32px, 5vw, 52px);

    line-height: 1.1;

    margin: 15px 0 20px;
}

.featured-content p {
    color: #d1d5db;

    font-size: 18px;

    margin-bottom: 25px;
}


/* =========================
   CATEGORY
========================= */

.category {
    display: inline-block;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #6b7280;
}

.featured-news .category {
    color: #9ca3af;
}


/* =========================
   NEWS GRID
========================= */

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.news-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    padding: 34px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.06);
}

.news-card h3 {
    font-size: 25px;

    line-height: 1.25;

    margin: 13px 0 15px;
}

.news-card p {
    color: #6b7280;

    margin-bottom: 22px;
}


/* =========================
   LINKS
========================= */

.read-more {
    color: #111827;

    font-weight: 650;

    text-decoration: none;
}

.featured-news .read-more {
    color: white;
}

.read-more:hover {
    text-decoration: underline;
}


/* =========================
   GOOGLE ADS
========================= */

.ad-section {
    width: 100%;

    margin: 80px 0;
}

.ad-container {
    width: min(1100px, calc(100% - 48px));

    min-height: 120px;

    margin: 0 auto;

    padding: 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;
}

.ad-label {
    font-size: 10px;

    letter-spacing: 1.5px;

    color: #9ca3af;

    margin-bottom: 12px;
}


/* =========================
   NEWSLETTER
========================= */

.newsletter {
    margin-top: 100px;
    margin-bottom: 100px;

    padding: 65px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 22px;
}

.newsletter h2 {
    font-size: 40px;

    margin-bottom: 10px;
}

.newsletter p {
    color: #6b7280;

    font-size: 18px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #111827;

    color: white;

    padding: 60px 0 25px;
}

.footer-container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    display: flex;
    justify-content: space-between;

    gap: 30px;
}

.footer-container p {
    color: #9ca3af;

    margin-top: 8px;
}

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a {
    color: #d1d5db;

    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    width: min(1180px, calc(100% - 48px));

    margin: 45px auto 0;

    padding-top: 20px;

    border-top: 1px solid #374151;

    color: #9ca3af;

    font-size: 13px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .container,
    .nav-container,
    .footer-container,
    .copyright,
    .ad-container {
        width: min(100% - 32px, 1180px);
    }

    .nav-container {
        height: auto;

        padding: 18px 0;

        flex-direction: column;

        gap: 15px;
    }

    .nav-links {
        gap: 18px;

        flex-wrap: wrap;

        justify-content: center;
    }

    .hero {
        padding: 75px 0 55px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

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

    .featured-content {
        padding: 35px 28px;
    }

    .newsletter {
        padding: 40px 28px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}
