/* ══════════════════════════════════════
   LEGAL PAGES — shared styles
   Used by: terms.html, privacy-policy.html, refund-policy.html, delivery-policy.html
   Built on top of about.css tokens (--red, --purple, --cream, --white, --fa)
══════════════════════════════════════ */

.lg-hero {
    padding: 150px 24px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.lg-eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: rgba(228,0,43,0.12);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.lg-hero h1 {
    font-size: clamp(26px, 4.5vw, 38px);
    font-weight: 600;
    margin-bottom: 12px;
}
.lg-updated {
    font-size: 13.5px;
    opacity: 0.55;
}

.lg-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 24px 100px;
}

.lg-block {
    margin-bottom: 36px;
}
.lg-block h2 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cream);
}
.lg-block h2 .lg-num {
    color: var(--red);
    margin-left: 8px;
}
.lg-block p {
    font-size: 15.5px;
    line-height: 1.9;
    opacity: 0.85;
    margin-bottom: 12px;
}
.lg-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0;
}
.lg-block ul li {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
    padding-right: 22px;
    position: relative;
}
.lg-block ul li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}
.lg-block a { color: var(--red); text-decoration: none; }
.lg-block a:hover { text-decoration: underline; }

.lg-callout {
    background: rgba(228,0,43,0.08);
    border: 1px solid rgba(228,0,43,0.25);
    border-radius: 16px;
    padding: 18px 22px;
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.lg-contact-box {
    background: rgba(252,242,223,0.04);
    border: 1px solid rgba(252,242,223,0.12);
    border-radius: 18px;
    padding: 24px;
    font-size: 14.5px;
    line-height: 2;
}

@media (max-width: 600px) {
    .lg-hero { padding: 120px 20px 30px; }
}