.dtc-counters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
    width: 100%;
    padding: 28px 20px;
    box-sizing: border-box;
}

.dtc-counter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.dtc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.dtc-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dtc-icon-blue { color: #1464f4; background: #eef5ff; }
.dtc-icon-orange { color: #ff6a00; background: #fff4eb; }
.dtc-icon-purple { color: #8b18f5; background: #f8efff; }

.dtc-number {
    display: block;
    margin: 0;
    color: #111;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.dtc-label {
    display: block;
    margin-top: 7px;
    color: #444;
    font-size: 15px;
    line-height: 1.4;
}

.dtc-substat {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.dtc-substat strong {
    color: #222;
    font-weight: 700;
}

@media (max-width: 700px) {
    .dtc-counters {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

.dtc-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.dtc-substat strong {
    color: var(
        --dtc-accent,
        var(
            --global-palette1,
            var(
                --wp--preset--color--accent,
                var(--e-global-color-accent, currentColor)
            )
        )
    );
    font-size: 24px;
    line-height: 1;
    vertical-align: -2px;
}
