@media (max-width: 768px) {
    /* conditions.css */
    .conditions-section {
        padding: 80px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .conditions-title {
        color: #2E2E2E;
        text-align: center;
        font-family: Pretendard;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%; /* 33.6px */
        letter-spacing: -0.48px;
        margin: 0;
    }

    .conditions-cards {
        display: flex;
        flex-direction: row;
        gap: 24px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .condition-card {
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0px 0px 16px 0px rgba(102, 102, 102, 0.3);
        padding: 24px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 154px;
        box-sizing: border-box;
    }

    .condition-card-icon {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

    .condition-card-icon img {
        width: 100%;
        height: 100%;
    }

    .condition-card-text {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .condition-card-title {
        color: var(--gray-90, #101010);
        font-family: Pretendard;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%; /* 25.2px */
        letter-spacing: -0.18px;
        margin: 0;
        text-align: center;
    }

    .condition-card-divider {
        height: 1px;
        background-color: #d9d9d9;
        width: 100%;
    }

    .condition-card-description {
        color: var(--gray-70, #535353);
        text-align: center;
        font-family: Pretendard;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%; /* 20.8px */
        letter-spacing: -0.16px;
        margin: 0;
        text-align: center;
        height: 42px;
    }
}
