/* =========================================================
   DEATH FUND CONTENT
========================================================= */

.info-card {

    display: flex;

    align-items: flex-start;

    gap: 22px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border-light);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-small);
}


.info-card-icon {

    width: 55px;

    height: 55px;

    flex: 0 0 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--brand-orange-light);

    color: var(--brand-orange);

    border-radius: 50%;

    font-size: 20px;
}


.info-card-content h3 {

    margin: 0 0 10px;

    color: var(--brand-navy);

    font-size: 20px;
}


.info-card-content p {

    margin: 0 0 10px;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.8;
}


.info-card-content p:last-child {

    margin-bottom: 0;
}


/* =========================================================
   ELIGIBILITY GRID
========================================================= */

.eligibility-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.eligibility-card {

    padding: 28px 24px;

    background: var(--white);

    border: 1px solid var(--border-light);

    border-radius: var(--radius-medium);

    text-align: center;

    box-shadow: var(--shadow-small);

    transition: var(--transition);
}


.eligibility-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(255,133,0,0.35);

    box-shadow:
        var(--shadow-medium);
}


.eligibility-icon {

    width: 52px;

    height: 52px;

    margin: 0 auto 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--brand-orange-light);

    color: var(--brand-orange);

    border-radius: 50%;

    font-size: 19px;
}


.eligibility-card h3 {

    margin: 0 0 8px;

    color: var(--brand-navy);

    font-size: 17px;
}


.eligibility-card p {

    margin: 0;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   DEATH FUND TABLE
========================================================= */

.death-fund-table th {

    white-space: nowrap;
}


.death-fund-table td {

    vertical-align: middle;
}


.death-fund-table .total-row td {

    background:
        var(--brand-orange-light);

    color:
        var(--brand-navy);
}


.death-fund-table td strong {

    color:
        var(--brand-navy);
}


/* =========================================================
   SUMMARY CARDS
========================================================= */

.death-fund-summary {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.death-summary-item {

    position: relative;

    overflow: hidden;

    padding: 28px 25px;

    background: var(--brand-navy);

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-small);
}


.death-summary-item::after {

    content: "";

    position: absolute;

    right: -35px;

    bottom: -45px;

    width: 100px;

    height: 100px;

    background: var(--brand-orange);

    border-radius: 50%;

    opacity: 0.8;
}


.death-summary-age {

    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 8px;

    color:
        rgba(255,255,255,0.7);

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.death-summary-item strong {

    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 5px;

    color: var(--brand-orange);

    font-size: 27px;
}


.death-summary-item small {

    position: relative;

    z-index: 2;

    color:
        rgba(255,255,255,0.55);

    font-size: 11px;
}


/* =========================================================
   NOTICE BOX
========================================================= */

.notice-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 25px 28px;

    background:
        var(--brand-orange-light);

    border-left:
        4px solid var(--brand-orange);

    border-radius:
        var(--radius-medium);
}


.notice-icon {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--brand-orange);

    color: var(--white);

    border-radius: 50%;
}


.notice-box h3 {

    margin: 0 0 7px;

    color: var(--brand-navy);

    font-size: 17px;
}


.notice-box p {

    margin: 0;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .eligibility-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .death-fund-summary {

        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 767px) {

    .info-card {

        padding: 22px;

        gap: 16px;
    }


    .info-card-icon {

        width: 48px;

        height: 48px;

        flex-basis: 48px;

        font-size: 17px;
    }


    .eligibility-grid {

        grid-template-columns:
            1fr;
    }


    .death-fund-summary {

        grid-template-columns:
            1fr;
    }


    .notice-box {

        padding: 20px;

        gap: 13px;
    }

}


@media (max-width: 480px) {

    .info-card {

        flex-direction: column;
    }


    .info-card-icon {

        margin-bottom: 2px;
    }


    .death-summary-item {

        padding: 24px 20px;
    }

}