/* ===================================
   Block: Servicers
   =================================== */
#dd-servicers {
    background-color: var(--txt-light);
    float: left;
    width: 100%;
    padding: 80px 0;
}

.servicers-wrap {
    align-items: flex-start;
}

/* Left column — title only */
.servicers-left {
    width: 50%;
    padding-right: 60px;
}

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

/* Right column — items list */
.servicers-right {
    width: 50%;
}

.servicers-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Single servicer item */
.servicers-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.servicers-logo-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicers-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.servicers-item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.servicers-brand-name {
    font-size: 22px;
    font-weight: 600;
    line-height: 31px;
    color: var(--main);
    margin: 0;
}

.servicers-item-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    color: var(--main);
    margin: 0;
}

/* Info box (yellow) */
.servicers-box {
    background-color: rgba(220, 249, 89, 0.25);
    border-radius: 6px;
    padding: 28px 32px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.servicers-box-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--main);
    margin: 0;
}

.servicers-box-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: var(--main);
    margin: 0;
}

/* ===================================
   Responsive
   =================================== */
@media screen and (max-width: 1400px) {
    .servicers-left {
        padding-right: 40px;
    }

    .servicers-title {
        font-size: 32px;
        line-height: 46px;
    }
}

@media screen and (max-width: 1199px) {
    .servicers-left {
        padding-right: 30px;
    }

    .servicers-title {
        font-size: 28px;
        line-height: 40px;
    }
}

@media screen and (max-width: 991px) {
    #dd-servicers {
        padding: 60px 0;
    }

    .servicers-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .servicers-left {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .servicers-list {
        gap: 50px;
    }
}

@media screen and (max-width: 767px) {
    #dd-servicers {
        padding: 50px 0;
    }

    .servicers-title {
        font-size: 26px;
        line-height: 36px;
    }

    .servicers-item-text {
        padding-left: 0;
    }

    .servicers-list {
        gap: 40px;
    }
}
