/*
 * CT_PRODUCT_DETAIL_03J_ACTUAL_VOUCHERS_ONLY_POINT_REWARDS_SUPPRESS_SAFE
 *
 * Product-only guard:
 * - hides any point-reward card grid that a previous runtime may recreate;
 * - converts the top rewards summary to three actual-value metrics.
 */
html body#product
#ct-product-rewards-advantages-03h
[data-ct03h-role="rewards-grid"] {
    display: none !important;
}

html body#product
#ct-product-rewards-advantages-03h
[data-ct-product-rewards-metrics-03j="actual-only"] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

html body#product
#ct-product-rewards-advantages-03h
[data-ct-product-rewards-metrics-03j="actual-only"]
.ct03h-metric {
    border-bottom: 0 !important;
}

html body#product
#ct-product-rewards-advantages-03h
[data-ct-product-rewards-metrics-03j="actual-only"]
.ct03h-metric:nth-child(3) {
    border-right: 0 !important;
}

@media (max-width: 991px) {
    html body#product
    #ct-product-rewards-advantages-03h
    [data-ct-product-rewards-metrics-03j="actual-only"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    html body#product
    #ct-product-rewards-advantages-03h
    [data-ct-product-rewards-metrics-03j="actual-only"]
    .ct03h-metric:nth-child(2) {
        border-right: 0 !important;
    }

    html body#product
    #ct-product-rewards-advantages-03h
    [data-ct-product-rewards-metrics-03j="actual-only"]
    .ct03h-metric:nth-child(3) {
        grid-column: 1 / -1;
        border-top: 1px solid var(--ct03h-line, #e9e0d5) !important;
    }
}

@media (max-width: 575px) {
    html body#product
    #ct-product-rewards-advantages-03h
    [data-ct-product-rewards-metrics-03j="actual-only"] {
        grid-template-columns: 1fr !important;
    }

    html body#product
    #ct-product-rewards-advantages-03h
    [data-ct-product-rewards-metrics-03j="actual-only"]
    .ct03h-metric {
        grid-column: auto;
        border-right: 0 !important;
        border-top: 1px solid var(--ct03h-line, #e9e0d5) !important;
    }

    html body#product
    #ct-product-rewards-advantages-03h
    [data-ct-product-rewards-metrics-03j="actual-only"]
    .ct03h-metric:first-child {
        border-top: 0 !important;
    }
}
