.tae-counter-wrap {
    font-family: inherit;
    text-align: center;
    padding: 30px 20px;
}

/* Icon */
.tae-counter-icon {
    display: inline-block;
    margin-bottom: 20px;
}
.tae-counter-icon i {
    font-size: 60px;
    color: #4caf50;
    line-height: 1;
}
.tae-counter-icon svg {
    width: 60px;
    height: 60px;
    fill: #4caf50;
}

/* Title */
.tae-counter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.4;
}

/* Number */
.tae-counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4caf50;
    margin: 0 0 5px;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

/* Suffix */
.tae-counter-suffix {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 767px) {
    .tae-counter-wrap {
        padding: 20px 15px;
    }
    .tae-counter-icon i,
    .tae-counter-icon svg {
        font-size: 48px;
        width: 48px;
        height: 48px;
    }
    .tae-counter-number {
        font-size: 2.5rem;
    }
    .tae-counter-title {
        font-size: 1rem;
    }
    .tae-counter-suffix {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tae-counter-number {
        font-size: 2rem;
    }
    .tae-counter-icon i,
    .tae-counter-icon svg {
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
}

/* Animation states */
.tae-counter-wrap[data-animated="true"] .tae-counter-number {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.tae-counter-wrap[data-animated="false"] .tae-counter-number {
    opacity: 0.7;
    transform: translateY(10px);
}

/* Hover effects */
.tae-counter-wrap:hover .tae-counter-icon i,
.tae-counter-wrap:hover .tae-counter-icon svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.tae-counter-wrap .tae-counter-icon i,
.tae-counter-wrap .tae-counter-icon svg {
    transition: transform 0.3s ease;
}