/* ============================================================
   legal.css — Общи условия + Политика за поверителност
   Shared by terms.html and privacy.html
   Prefix: .legal-
   ============================================================ */


/* ── Page hero (matches other page heroes) ───────────────────────────────── */
.legal-hero {
    padding-top: var(--nav-height);
    padding-bottom: 0;
    background: #f8f8f8;
}

.legal-hero__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-top: 56px;
    padding-bottom: 48px;
}

.legal-hero__bar {
    width: 120px;
    height: 64px;
    background: var(--g-primary);
    flex-shrink: 0;
    margin-right: 32px;
}

.legal-hero__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    color: var(--c-text-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}


/* ── Body section ────────────────────────────────────────────────────────── */
.legal-body {
    background: #fff;
    padding: 64px 0 80px;
}

.legal-content {
    max-width: 860px;
}

.legal-updated {
    font-family: var(--font-ui);
    font-size: 13px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--c-text-dark);
    margin: 40px 0 12px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-family: var(--font-ui);
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 12px;
}

.legal-content a {
    color: var(--c-primary-start);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.legal-content a:hover {
    opacity: 0.75;
}


/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .legal-hero__bar {
        width: 80px;
        height: 48px;
        margin-right: 20px;
    }

    .legal-hero__inner {
        padding-top: 36px;
        padding-bottom: 32px;
    }

    .legal-body {
        padding: 40px 0 60px;
    }

    .legal-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .legal-hero__bar {
        width: 60px;
        height: 40px;
        margin-right: 14px;
    }
}