/**
 * TW Licznik
 */

.tw-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tw-counter {
    text-align: center;
}

.tw-counter__icon {
    font-size: 40px;
    color: #6366f1;
    margin-bottom: 15px;
    line-height: 1;
}

.tw-counter__icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.tw-counter__top-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 5px;
}

.tw-counter__number {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.tw-counter__prefix,
.tw-counter__suffix {
    /* Dziedziczą styl od .tw-counter__number */
}

.tw-counter__title {
    font-size: 16px;
    color: #6b7280;
    margin-top: 10px;
    line-height: 1.4;
}

/* Responsywność */
@media (max-width: 1024px) {
    .tw-counters {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tw-counters {
        grid-template-columns: 1fr;
    }

    .tw-counter__number {
        font-size: 36px;
    }

    .tw-counter__icon {
        font-size: 32px;
    }

    .tw-counter__icon svg {
        width: 32px;
        height: 32px;
    }
}
