/* ===================================
   Block: Comparison
   =================================== */
#dd-comparison {
    background-color: var(--bckg);
    float: left;
    width: 100%;
}

.comparison-wrap {
    align-items: stretch;
}

/* Left — full-height image */
.comparison-left {
    width: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comparison-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right — content */
.comparison-right {
    width: 50%;
    padding: 60px 50px 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Title */
.comparison-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 54px;
    color: var(--main);
    margin: 0;
}

/* Groups */
.comparison-groups {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.comparison-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-group-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 31px;
    color: var(--main);
    margin: 0;
}

/* Items list */
.comparison-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main);
}

.comparison-item img {
    flex-shrink: 0;
}

/* ===================================
   Responsive
   =================================== */
@media screen and (max-width: 1400px) {
    .comparison-title {
        font-size: 32px;
        line-height: 46px;
    }

    .comparison-right {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 1199px) {
    .comparison-title {
        font-size: 28px;
        line-height: 40px;
    }

    .comparison-right {
        padding: 50px 30px;
    }
}

@media screen and (max-width: 991px) {
    .comparison-wrap {
        flex-direction: column;
    }

    .comparison-left,
    .comparison-right {
        width: 100%;
    }

    .comparison-left {
        height: 320px;
    }

    .comparison-right {
        padding: 40px 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 767px) {
    .comparison-title {
        font-size: 26px;
        line-height: 36px;
    }

    .comparison-left {
        height: 260px;
    }

    .comparison-right {
        padding: 30px 20px;
    }
}
