/* =================================================================
   POLICY PAGES — terms, refund, privacy
   ================================================================= */

/* ── Hero ─────────────────────────────────────────────────────── */
.pol-hero-wrap {
    position: relative;
    overflow: hidden;
    background: #0d1a2d;
}
.pol-hero-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: brightness(0.3);
}
.pol-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2.5rem;
}
.pol-hero-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0.4rem 0 0;
    line-height: 1.2;
}
.pol-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.6);
}
.pol-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.pol-breadcrumb a:hover { color: #fff; }
.pol-breadcrumb .bi-chevron-right { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.pol-breadcrumb span { color: rgba(255,255,255,0.9); }

/* ── Page wrapper ─────────────────────────────────────────────── */
.pol-page-wrap {
    background: #f3f4f6;
    padding: 48px 0 72px;
}

/* ── Card ─────────────────────────────────────────────────────── */
.pol-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 42px 48px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 860px;
    margin: 0 auto;
}

/* ── Updated badge ────────────────────────────────────────────── */
.pol-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef2f2;
    color: var(--dhs-red);
    border: 1px solid #fca5a5;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    margin-bottom: 22px;
}

/* ── Typography ───────────────────────────────────────────────── */
.pol-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px;
    line-height: 1.2;
}
.pol-lead {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 30px;
    line-height: 1.65;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.pol-section {
    margin-bottom: 28px;
}
.pol-section:last-child {
    margin-bottom: 0;
}
.pol-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dhs-red);
    margin: 0 0 10px;
    padding-left: 12px;
    border-left: 3px solid var(--dhs-red);
    line-height: 1.3;
}
.pol-body {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.8;
}
.pol-body p {
    margin: 0 0 10px;
}
.pol-body p:last-child {
    margin-bottom: 0;
}
.pol-body strong {
    color: #111827;
}
.pol-body ul {
    padding-left: 1.3rem;
    margin: 4px 0 10px;
}
.pol-body li {
    margin-bottom: 7px;
    line-height: 1.7;
}
.pol-body a {
    color: var(--dhs-red);
    text-decoration: none;
}
.pol-body a:hover {
    text-decoration: underline;
}

/* ── Contact box ──────────────────────────────────────────────── */
.pol-contact-box {
    margin-top: 28px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 22px;
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.8;
}
.pol-contact-box strong {
    color: #111827;
}
.pol-contact-box a {
    color: var(--dhs-red);
    text-decoration: none;
}
.pol-contact-box a:hover {
    text-decoration: underline;
}

/* ── Divider ──────────────────────────────────────────────────── */
.pol-divider {
    border: none;
    border-top: 1px solid #f3f4f6;
    margin: 24px 0;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .pol-hero-img { height: 200px; }
    .pol-page-wrap { padding: 28px 0 48px; }
    .pol-card { padding: 28px 22px; border-radius: 12px; }
    .pol-page-title { font-size: 1.4rem; }
}
