.breadcrumb-custom {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    font-family: var(--font-editorial);
}

.breadcrumb-custom a {
    color: var(--primary-maroon);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    text-decoration: underline;
}

.divider {
    width: 70px;
    height: 2px;
    background: var(--primary-brown);
    margin: 15px auto 20px;
}

/* ================= GRID ================= */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ================= CARD ================= */
.policy-box {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
    border-top: 3px solid transparent;
    position: relative;
    height: 100%;
}

.policy-box:hover {
    transform: translateY(-6px);
    border-top: 3px solid var(--primary-maroon);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ================= NUMBER ================= */
.policy-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
}

/* ================= CONTENT ================= */
.policy-box h3 {
    color: var(--primary-maroon);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: var(--font-editorial);
}

.policy-box p {
    color: var(--bg-dark);
    font-size: 0.95rem;
    line-height: var(--lh-body-loose);
}

.policy-box ul {
    padding-left: 18px;
    margin-top: 10px;
}

.policy-box ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.policy-box ul li::marker {
    color: var(--primary-maroon);
}

.highlight {
    color: var(--primary-maroon);
    font-weight: 600;
}

/* ================= FULL WIDTH ================= */
.full-width {
    grid-column: span 2;
}

.contact-box {
    background: var(--bg--dark-cream);
    text-align: center;
}

/* ================= FOOT ================= */
.last-updated {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

.section-heading-wrap {
    margin-bottom: 36px;
    text-align: center;
}

.section-heading-wrap .section-title {
    font-family: var(--font-editorial);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-section);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    color: #000;
    z-index: 1;
    padding-left: 20px;
    margin: 0;
}

.section-heading-wrap .section-title::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 104%;
    height: 27px;
    background: var(--bg-cream);
    z-index: -1;
}
