/* ===== Hero Banner ===== */
.page-hero__banner {
    min-height: 200px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.page-hero__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ===== Info Section (overlap card) ===== */
.page-hero {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* ===== Card ===== */
.page-hero__card {
    transition: box-shadow 0.2s ease;
}

.page-hero__card-icon {
    width: 72px;
    height: auto;
}

/* ===== Mobile ===== */
@media (max-width: 575.98px) {
    .page-hero__banner {
        min-height: 150px;
    }

    .page-hero {
        margin-top: -40px;
        border-radius: 8px;
        padding: 1rem;
    }

    .page-hero__card-icon {
        width: 56px;
    }
}

.page-hero__card--coverage {
    padding: 2rem;
}

.page-hero__card-label {
    display: flex;
    align-items: flex-start;
    padding-right: 1.5rem;
}

.page-hero__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 0.75rem;
}

/* section */
.page-hero__card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #c8102e;
    border-radius: 2px;
}

/* Divider vertical */
.page-hero__card-divider {
    width: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
}

.page-hero__card-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #c8102e;
    margin-bottom: 0.75rem;
}

.page-hero__card-desc {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
}
/* mobile vertical */
@media (max-width: 767.98px) {
    .page-hero__card--coverage {
        padding: 1.25rem;
    }

    .page-hero__card-label {
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }

    .page-hero__card-title::after {
        bottom: -0.75rem;
    }
}

.features-section .feature-item {}