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

.brand-wrap {
    gap: 0;
    align-items: stretch;
}

/* Card */
.brand-card {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
}

.brand-card-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Right card — white background, full right side */
.brand-card:nth-child(even) {
    background-color: var(--txt-light);
}

/* Pretitle */
.brand-pretitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--main);
    opacity: 0.65;
    margin: 0;
}

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

/* Description */
.brand-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: var(--main);
    margin: 0;
    max-width: 780px;
}

/* List label */
.brand-list-label {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--main);
    margin: 0;
}

/* Feature list */
.brand-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    color: var(--main);
}

.brand-feature img {
    flex-shrink: 0;
}

/* Logo row */
.brand-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.brand-logo-wrap {
    flex-shrink: 0;
}

.brand-logo {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-logo-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--main);
}

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

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

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

    .brand-card {
        flex: unset;
        width: 100%;
    }
}

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

    .brand-title {
        font-size: 24px;
        line-height: 34px;
    }
}
