@charset "utf-8";

.stats-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 120px 0;
    background-color: #f3f5f7;
    width: 100%;
    box-sizing: border-box;
}

.stats-title-text {
    color: var(--ref-base-black, #151818);
    text-align: center;
    font-family: Pretendard;
    font-size: var(--ref-font-size-10-fluent, 45px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
}

.stats-title-highlight {
    background-color: #d4f8f8;
    padding: 2px 4px;
}

.stats-cards-container {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.stats-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 240px;
    height: 268px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 8px 0px rgba(55, 61, 68, 0.08);
    padding-top: 43px;
    padding-bottom: 26px;
    box-sizing: border-box;
}

.stats-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stats-card-number {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-top: 19px;
    color: #373d44;
    font-family: Pretendard;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
}

.stats-number {
    font-size: 45px;
}

.stats-suffix {
    font-size: 24px;
}

.stats-card-desc {
    margin-top: auto;
    text-align: center;
    color: var(--ref-primary-300, #00bbba);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.6;
}

.stats-card-desc p {
    margin: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .stats-section {
        padding: 60px 20px;
        gap: 40px;
    }

    .stats-title-text {
        font-size: var(--ref-font-size-7-fluent, 28px);
        word-break: keep-all;
    }

    .stats-cards-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .stats-card {
        width: calc(33.333% - 8px);
        height: auto;
        padding: 28px 16px 24px;
        box-sizing: border-box;
    }

    .stats-card-icon {
        width: 36px;
        height: 36px;
    }

    .stats-number {
        font-size: 36px;
    }

    .stats-suffix {
        font-size: 20px;
    }

    .stats-card-desc {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media screen and (max-width: 767px) {
    .stats-section {
        padding: 60px 20px;
        gap: 40px;
    }

    .stats-title-text {
        font-size: var(--ref-font-size-7-fluent, 28px);
        word-break: keep-all;
    }

    .stats-cards-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 400px;
    }

    .stats-card {
        width: 100%;
        height: auto;
        padding: 28px 16px 24px;
    }

    .stats-card-icon {
        width: 36px;
        height: 36px;
    }

    .stats-number {
        font-size: 36px;
    }

    .stats-suffix {
        font-size: 20px;
    }

    .stats-card-desc {
        font-size: 14px;
        margin-top: 12px;
    }
}
