/* =========================
   01 - Statik Sayfa Genel
========================= */

.static-page {
    padding: 54px 0 72px;
}

.static-page__container {
    max-width: 920px;
}


/* =========================
   02 - Sayfa Hero
========================= */

.static-page__hero {
    margin-bottom: 34px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.static-page__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.static-page__hero h1 {
    margin: 0 0 12px;
    color: var(--title);
    font-size: clamp(32px, 5vw, 46px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.04em;
}

.static-page__hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
}


/* =========================
   03 - İçerik
========================= */

.static-page__content {
    color: var(--text);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 300;
}

.static-page__content h2 {
    margin: 34px 0 10px;
    color: var(--title);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -.02em;
}

.static-page__content h2:first-child {
    margin-top: 0;
}

.static-page__content p {
    margin: 0 0 18px;
}

.static-page__content a {
    color: var(--primary);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.static-page__content a:hover {
    color: var(--primary-dark);
}


/* =========================
   04 - Bilgi Notu
========================= */

.static-page__note {
    margin-top: 28px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--text);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
}


/* =========================
   05 - Mobil
========================= */

@media (max-width: 720px) {
    .static-page {
        padding: 36px 0 50px;
    }

    .static-page__hero {
        margin-bottom: 26px;
        padding-bottom: 24px;
    }

    .static-page__hero h1 {
        font-size: 32px;
    }

    .static-page__hero p,
    .static-page__content {
        font-size: 14px;
    }

    .static-page__content h2 {
        font-size: 19px;
    }
}
