.sce-wrap {
    width: 100%;
}

.sce-grid {
    display: grid;
    width: 100%;
    align-items: start;
}

/* Responsive: collapse to 1 column on mobile */
@media (max-width: 767px) {
    .sce-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .sce-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.sce-item {
    padding: 20px 24px;
    box-sizing: border-box;
}

/* Dividers — only visible on desktop */
.sce-has-dividers .sce-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
    .sce-has-dividers .sce-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
}

.sce-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.sce-symbol {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.sce-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
}

/* Animate-in state: start invisible, become visible when JS fires */
.sce-item.sce-will-animate {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.sce-item.sce-animated {
    opacity: 1;
    transform: translateY(0);
}
