/* ===== QROPS Image With Text ===== */

.qrops-image-with-text {
    padding: 50px 0;
}

/* Header */
.qrops-image-with-text__header {
    text-align: center;
    margin-bottom: 26px;
}

.qrops-image-with-text__title {
    font-size: 32px;
    font-weight: 700;
    color: #233253;
    margin-bottom: 16px;
    line-height: 1.3;
}

.qrops-image-with-text__desc {
    font-size: 16px;
    color: #666666;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
    font-weight: 400;
}

.qrops-image-with-text__desc p {
    margin-bottom: 0;
}

/* List */
.qrops-image-with-text__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Item row */
.qrops-image-with-text__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

/* Icon circle */
/* .qrops-image-with-text__icon-wrap {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: #fce8e8;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.qrops-image-with-text__icon-wrap img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Content */
.qrops-image-with-text__content {
    flex: 1;
    padding-top: 8px;
}

.qrops-image-with-text__item-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.qrops-image-with-text__item-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    font-weight: 400;
}

.qrops-image-with-text__item-desc p {
    margin-bottom: 0;
}

/* ===== Responsive ===== */

@media (max-width: 767px) {
    .qrops-image-with-text {
        padding: 20px 0;
    }

    .qrops-image-with-text__title {
        font-size: 24px;
    }

    .qrops-image-with-text__desc {
        font-size: 14px;
        text-align: center;
        color: #808080;
    }

    .qrops-image-with-text__list {
        gap: 38px;
    }

    .qrops-image-with-text__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .qrops-image-with-text__icon-wrap {
        width: 80px;
        height: 80px;
    }

    .qrops-image-with-text__content {
        padding-top: 0;
    }

    .qrops-image-with-text__item-title {
        font-size: 22px;
    }

    .qrops-image-with-text__item-desc {
        font-size: 14px;
        text-align: center;
    }
}