.about__card-list {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, calc(10px + (20 - 10) * ((100vw - 360px) / (768 - 360))), 20px);
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .about__card-list {
        gap: 20px;
        align-items: start;
    }
}

@media (min-width: 1280px) {
    .about__card-list {
        gap: 20px;
    }
}

.about-card {
    color: var(--text-dark);
    display: flex;
    background-color: var(--bg-light);
    gap: clamp(10px, calc(10px + (16 - 10) * ((100vw - 360px) / (768 - 360))), 16px);
    align-items: center;
    width: 100%;
    border-radius: clamp(20px, calc(20px + (28 - 20) * ((100vw - 360px) / (768 - 360))), 28px);
    padding: 8px;
    position: relative;
    min-height: 86px;
}

.about-card:nth-child(odd) {
    padding-right: 24px;
}

.about-card:nth-child(even) {
    padding-left: 24px;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.about-card span {
    color: var(--color-primary);
}

.about-card__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-card__image {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.about-card__image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

@media (min-width: 768px) {
    .about-card {
        width: clamp(410px, calc(410px + (590 - 410) * ((100vw - 768px) / (1280 - 768))), 590px);
        padding: clamp(8px, calc(8px + (12 - 8) * ((100vw - 768px) / (1280 - 768))), 12px) 16px;
        flex-direction: row;
        border-radius: clamp(28px, calc(28px + (40 - 28) * ((100vw - 768px) / (1280 - 768))), 40px);
        gap: clamp(16px, calc(16px + (40 - 16) * ((100vw - 768px) / (1280 - 768))), 40px);
    }

    .about-card:nth-child(odd),
    .about-card:nth-child(even) {
        padding-left: clamp(16px, calc(16px + (40 - 16) * ((100vw - 768px) / (1280 - 768))), 40px);
        padding-right: clamp(16px, calc(16px + (40 - 16) * ((100vw - 768px) / (1280 - 768))), 40px);
    }

    .about-card:nth-child(even) {
        flex-direction: row;
        justify-content: start;
    }


    .about-card__text {
        gap: clamp(12px, calc(12px + (20 - 12) * ((100vw - 768px) / (1280 - 768))), 20px);
    }
}

@media (min-width: 1280px) {
    .about-card {
        height: clamp(120px, calc(120px + (130 - 120) * ((100vw - 1280px) / (1920 - 1280))), 130px);
        width: clamp(590px, calc(590px + (628 - 590) * ((100vw - 1280px) / (1920 - 1280))), 628px);
        padding: clamp(12px, calc(12px + (20 - 12) * ((100vw - 1280px) / (1920 - 1280))), 20px);
        gap: 40px;
        border-radius: 40px;
    }

    .about-card:nth-child(odd) {
        padding-right: 40px;
    }

    .about-card:nth-child(even) {
        flex-direction: row-reverse;
        justify-content: space-between;
        padding-left: 40px;
    }

    .about-card__image {
        width: clamp(80px, calc(80px + (100 - 80) * ((100vw - 1280px) / (1920 - 1280))), 100px);
        height: clamp(80px, calc(80px + (100 - 80) * ((100vw - 1280px) / (1920 - 1280))), 100px);
    }

    .about-card__text {
        gap: 20px;
    }
}

@media (min-width: 1920px) {
    .about-card {
        width: 628px;
        height: 130px;
        gap: 40px;
        padding: 20px;
    }

    .about-card__image {
        width: 100px;
        height: 100px;
    }

    .about-card__text {
        gap: 20px;
    }

    .about-card p {
        font-size: 16px;
    }

    .about-card:nth-child(odd) {
        padding-right: 40px;
    }

    .about-card:nth-child(even) {
        padding-left: 40px;
    }
}