/* ═══════════════════════════════════════════
   Legal Pages — shared stylesheet
   ═══════════════════════════════════════════ */

/* ── Page hero ── */
.pol-hero {
    background: linear-gradient(120deg, #1a1210 55%, #3d200a 100%);
    padding: 52px 24px 44px;
    text-align: center;
    color: #fff;
}
.pol-hero h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -.2px;
}
.pol-hero p {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin: 0;
}

/* ── Outer wrapper ── */
.pol-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

/* ══════════════════════════════════════
   Sidebar nav
══════════════════════════════════════ */
.pol-nav {
    width: 210px;
    flex-shrink: 0;
    position: sticky;
    top: 96px;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 2px 18px rgba(0,0,0,.08);
}
.pol-nav-heading {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #bbb;
    padding: 8px 14px 6px;
}
.pol-nav a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
    transition: background .15s, color .15s;
}
.pol-nav a .pol-nav-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
}
.pol-nav a:hover {
    background: #fff8ee;
    color: #7a5200;
}
.pol-nav a:hover .pol-nav-icon { background: #ffe8b8; }
.pol-nav a.active {
    background: #fff8ee;
    color: #996600;
    font-weight: 600;
    border-left-color: #996600;
}
.pol-nav a.active .pol-nav-icon { background: #ffe8b8; }

/* ══════════════════════════════════════
   Content card
══════════════════════════════════════ */
.pol-content {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 14px;
    padding: 40px 46px;
    box-shadow: 0 2px 18px rgba(0,0,0,.08);
}

/* Effective date badge */
.pol-effective {
    display: inline-block;
    background: #fff8ee;
    border: 1px solid #e8d0a0;
    color: #7a5200;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 13px;
    border-radius: 20px;
    margin-bottom: 28px;
}

/* Intro lead paragraph */
.pol-lead {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 30px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0e8e0;
}

.pol-content h2 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1210;
    margin: 32px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0e8e0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pol-content h2:first-of-type { margin-top: 0; }
.pol-h2-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fff8ee;
    border: 1px solid #e8d0a0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #996600;
    flex-shrink: 0;
}

.pol-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}
.pol-content ul {
    padding-left: 20px;
    margin: 6px 0 16px;
}
.pol-content ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}
.pol-content ul li::marker { color: #996600; }
.pol-content strong { color: #1a1210; }
.pol-content a { color: #996600; text-decoration: none; }
.pol-content a:hover { text-decoration: underline; }

/* Highlight box */
.pol-box {
    background: #fff8ee;
    border-left: 4px solid #d3a985;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 4px 0 18px;
    font-size: 13.5px;
    color: #5a3800;
    line-height: 1.7;
}

/* Contact block */
.pol-contact {
    margin-top: 36px;
    padding: 20px 22px;
    background: #f7f4f0;
    border-radius: 10px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
}
.pol-contact strong { color: #1a1210; }

/* ══════════════════════════════════════
   Mobile
══════════════════════════════════════ */
@media (max-width: 768px) {
    .pol-wrap {
        flex-direction: column;
        padding: 0 0 60px;
        gap: 0;
    }

    /* Nav becomes horizontal scrollable tabs */
    .pol-nav {
        width: 100%;
        position: static;
        border-radius: 0;
        box-shadow: 0 1px 0 #e8d0a0;
        display: flex;
        overflow-x: auto;
        padding: 8px 10px;
        gap: 4px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    .pol-nav-heading { display: none; }
    .pol-nav a {
        white-space: nowrap;
        flex-shrink: 0;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 8px;
        font-size: 13px;
        padding: 7px 12px;
        margin-bottom: 0;
    }
    .pol-nav a.active {
        border-left: none;
        border-bottom-color: #996600;
    }
    .pol-nav a .pol-nav-icon { display: none; }

    .pol-content {
        border-radius: 0;
        padding: 26px 18px 44px;
        box-shadow: none;
    }
    .pol-hero h1 { font-size: 22px; }
    .pol-hero { padding: 36px 16px 30px; }
}
