.counter-wrapper {
    display: flex;
    flex-direction: column;
    /* flex-col */
    align-items: center;
    /* items-center */
    justify-content: center;
    /* justify-center */
    text-align: center;
    /* text-center */
    gap: 0.5rem;
    /* space-y-2 (tương đương 8px) */
}

.counter-number {
    font-size: 2.25rem;
    /* text-4xl (36px) */
    line-height: 2.5rem;
    /* 40px */
    font-weight: 600;
    /* font-extrabold */
    color: #c1121f;
    /* text-[#c1121f] */
    letter-spacing: 0.025em;
    /* tracking-wide */
}

.counter-caption {
    font-size: 1rem;
    /* text-base */
    line-height: 1.5rem;
    /* 24px */
    color: #4b5563;
    /* text-gray-600 */
    font-weight: 400;
}