/* ===========================
   Legal Page Styles
   Shared by Privacy Policy, Terms & Conditions, and any plain content pages
   =========================== */

/* ── Container ─────────────────────────────────────────── */

.lp-container {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.lp-hero {
    background-color: var(--color-navy);
    background-image: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(197, 160, 73, 0.1) 0%, transparent 65%);
    padding: 64px 0 56px;
    text-align: center;
}

.lp-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
    letter-spacing: 0.03em;
}

.lp-hero-eyebrow a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s;
}

.lp-hero-eyebrow a:hover {
    color: var(--color-gold);
}

.lp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.lp-hero-updated {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ============================================================
   CONTENT BODY
   ============================================================ */

.lp-body {
    padding: 72px 0 96px;
    background-color: #ffffff;
}

/* ── Prose typography ───────────────────────────────────── */

.lp-content {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
}

.lp-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 700;
    color: var(--color-navy);
    margin: 56px 0 16px;
    line-height: 1.25;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(197, 160, 73, 0.25);
}

.lp-content h2:first-child {
    margin-top: 0;
}

.lp-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-navy);
    margin: 40px 0 12px;
    line-height: 1.3;
}

.lp-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 28px 0 8px;
}

.lp-content p {
    margin: 0 0 20px;
}

.lp-content p:last-child {
    margin-bottom: 0;
}

.lp-content a {
    color: var(--color-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
}

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

.lp-content strong,
.lp-content b {
    font-weight: 700;
    color: #1f2937;
}

.lp-content em,
.lp-content i {
    font-style: italic;
}

/* ── Lists ──────────────────────────────────────────────── */

.lp-content ul,
.lp-content ol {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
}

.lp-content ul li,
.lp-content ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.75;
}

.lp-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

.lp-content ol {
    counter-reset: lp-ol;
}

.lp-content ol li {
    counter-increment: lp-ol;
}

.lp-content ol li::before {
    content: counter(lp-ol) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.9375rem;
}

/* ── Nested lists ───────────────────────────────────────── */

.lp-content ul ul,
.lp-content ol ol,
.lp-content ul ol,
.lp-content ol ul {
    margin-top: 8px;
    margin-bottom: 0;
    padding-left: 16px;
}

/* ── Horizontal rule ────────────────────────────────────── */

.lp-content hr {
    border: none;
    border-top: 1px solid rgba(12, 30, 74, 0.1);
    margin: 48px 0;
}

/* ── Blockquote ─────────────────────────────────────────── */

.lp-content blockquote {
    border-left: 3px solid var(--color-gold);
    margin: 32px 0;
    padding: 16px 24px;
    background: rgba(197, 160, 73, 0.06);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4a5568;
}

.lp-content blockquote p:last-child {
    margin-bottom: 0;
}

/* ── Tables ─────────────────────────────────────────────── */

.lp-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 0.9375rem;
}

.lp-content th {
    background: var(--color-navy);
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    font-size: 0.875rem;
}

.lp-content td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(12, 30, 74, 0.08);
    vertical-align: top;
}

.lp-content tr:last-child td {
    border-bottom: none;
}

.lp-content tr:nth-child(even) td {
    background: rgba(12, 30, 74, 0.02);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {

    .lp-hero {
        padding: 48px 0 40px;
    }

    .lp-body {
        padding: 48px 0 72px;
    }

    .lp-content h2 {
        margin-top: 40px;
    }

    .lp-content h3 {
        margin-top: 28px;
    }

}
