.hc-121ec80d-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    font-family: inherit;
}

.hc-121ec80d-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.hc-121ec80d-desc {
    font-size: 16px;
    color: #555555;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.hc-121ec80d-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

/* ── Stat Item: Icon Above (default / column layout) ── */
.hc-121ec80d-stat-item {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 12px;
    background: #f9fafb;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-121ec80d-stat-item.hc-121ec80d-icon-above {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Stat Item: Icon Beside (row layout) ── */
.hc-121ec80d-stat-item.hc-121ec80d-icon-beside {
    flex-direction: row;
    align-items: center;
    text-align: left;
}

.hc-121ec80d-stat-item.hc-121ec80d-icon-beside .hc-121ec80d-stat-text {
    align-items: flex-start;
}

.hc-121ec80d-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ── Stat Text Wrapper ── */
.hc-121ec80d-stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* ── Icon ── */
.hc-121ec80d-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background-color: #eef2ff;
    color: #6366f1;
    font-size: 28px;
}

.hc-121ec80d-stat-icon svg {
    width: 28px;
    height: 28px;
    fill: #6366f1;
}

/* ── Value ── */
.hc-121ec80d-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

/* ── Label ── */
.hc-121ec80d-stat-label {
    font-size: 14px;
    color: #777777;
    line-height: 1.4;
}

/* ── Summary ── */
.hc-121ec80d-summary {
    font-size: 14px;
    color: #777777;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 767px) {
    .hc-121ec80d-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hc-121ec80d-card {
        padding: 24px;
    }

    .hc-121ec80d-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hc-121ec80d-stats {
        grid-template-columns: 1fr;
    }
}
