/* =========================================================
   SUNUCURADAR HOME METRICS — COMPACT STRIP
   ========================================================= */

.sr-home-stats {
    width: min(1040px, calc(100% - 440px));
    max-width: 1040px;
    margin: 0 auto 62px;
    padding: 18px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.sr-home-stats::before,
.sr-home-stats-glow,
.sr-home-stats-heading,
.sr-home-stats-ad-note {
    display: none !important;
}

.sr-home-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    width: 100%;
}

.sr-home-metric-card {
    position: relative;
    min-width: 0;
    min-height: 74px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 14px;
    padding: 4px 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transition: none;
}

.sr-home-metric-card:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    bottom: 9px;
    width: 1px;
    background: rgba(148, 163, 184, .18);
}

.sr-home-metric-card::after {
    display: none;
}

.sr-home-metric-card:hover {
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.sr-home-metric-top {
    display: block;
}

.sr-home-metric-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.sr-home-metric-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: #22e46f;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter:
        drop-shadow(0 0 7px rgba(34, 228, 111, .32));
}

.sr-home-metric-live {
    display: none !important;
}

.sr-home-metric-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.sr-home-metric-copy > span {
    overflow: hidden;
    color: #a7adb8;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sr-home-metric-copy > strong {
    overflow: hidden;
    color: #f8fafc;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: none;
}

.sr-home-metric-copy > small {
    display: none;
}

@media (max-width: 1580px) {
    .sr-home-stats {
        width: min(1040px, calc(100% - 40px));
    }
}

@media (max-width: 900px) {
    .sr-home-stats {
        padding: 10px 0;
    }

    .sr-home-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 18px;
    }

    .sr-home-metric-card:nth-child(2)::before {
        display: none;
    }

    .sr-home-metric-card {
        min-height: 66px;
        padding: 3px 18px;
    }
}

@media (max-width: 560px) {
    .sr-home-stats {
        width: calc(100% - 24px);
        margin-bottom: 40px;
    }

    .sr-home-metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sr-home-metric-card {
        min-height: 58px;
        padding: 5px 8px;
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .sr-home-metric-card::before {
        display: none;
    }

    .sr-home-metric-card:not(:last-child) {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(148, 163, 184, .12);
    }

    .sr-home-metric-icon {
        width: 38px;
        height: 38px;
    }

    .sr-home-metric-icon svg {
        width: 31px;
        height: 31px;
    }

    .sr-home-metric-copy > strong {
        font-size: 23px;
    }
}
