.container {
    margin: 50px auto;
}

.title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: #0C5B8B;
    margin-bottom: 80px;
}

.brand-list {
    width: 100%;
    margin: 0 auto;
}

.brand-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #BFBFBF;
}

.brand-item:nth-child(1) {
    padding-top: 0;
}

.brand-item:last-child {
    border-bottom: none;
}

.brand-media {
    width: 378px;
    height: auto;
}

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

.brand-info {
    flex: 1;
}

.brand_title {
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    line-height: 36px;
}

.brand_desc {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 36px;
    margin-top: 10px;
}

.brand_desc span {
    color: var(--primary-color);
    margin-left: 6px;
}

.brand_desc span:hover {
    text-decoration: underline;
}

/* 交替（图片在右侧） */
.brand-item:nth-child(2n) {
    flex-direction: row-reverse;
}

/* 响应式：窄屏时图片在上方，文字在下方 */
@media (max-width: 800px) {
    .container {
        margin: 29px auto;
    }

    .title {
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 19px;
    }

    .brand-item,
    .brand-item.reverse {
        flex-direction: column !important;
    }

    .brand-item {
        gap: 15px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .brand-media {
        width: 100%;
    }

    .brand_title {
        font-size: 18px;
        line-height: 24px;
    }

    .brand_desc {
        font-weight: 400;
        font-size: 15px;
        color: #000000;
        line-height: 21px;
        margin-top: 10px;
    }
}