/* ================================================================
   TRE – Stat Strip
   File: assets/css/tre-stat-strip.css
   ================================================================ */

.tre-ss {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 0 0 28px;
    font-family: Arial, Helvetica, sans-serif;
}

/* ── Card ── */
.tre-ss__card {
    background: #0f1f4a;
    border-radius: 8px;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

/* ── Linked card ── */
.tre-ss__card--link {
    text-decoration: none;
    cursor: pointer;
}
.tre-ss__card--link:hover {
    opacity: 0.85;
}

/* ── Value — bold white ── */
.tre-ss__value {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    display: block;
}

/* ── Label — smaller, softer white ── */
.tre-ss__label {
    font-size: 12px;
    color: #ffffff;
    line-height: 1.4;
    display: block;
    opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .tre-ss {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .tre-ss {
        grid-template-columns: 1fr;
    }
    .tre-ss__card { padding: 18px 14px; }
}
