.haiwode-brand-philosophy {
    padding-top: var(--gap-50);
    /* background: linear-gradient(180deg, rgba(202, 217, 224, 0.00) 1.46%, #CAD9E0 100%); */
    padding-bottom: var(--container-gap);
    position: relative;
}
.haiwode-brand-philosophy .philosophy-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.35;
}
.haiwode-brand-philosophy::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: linear-gradient(180deg, rgba(202, 217, 224, 0.00) 1.46%, #CAD9E0 100%);
    z-index: -1;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: var(--gap-80);
}

.brand-list .brand-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.brand-list .brand-item .brand-img {
    overflow: hidden;
}

.brand-list .brand-item .brand-img img {
    width: 100%;
    max-width: 786px;
    aspect-ratio: 786 /337;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.brand-list .brand-item:hover .brand-img img {
    transform: scale(1.05);
}

.brand-item .brand-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.brand-item .brand-title {
    transition: color 0.5s;
    color: #003365;
    font-family: Inter;
    font-size: var(--font-46);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}


.brand-item .brand-desc {
    margin-top: var(--gap-20);
    color: #313131;
    font-family: Inter;
    font-size: var(--font-16);
    font-weight: 400;
    line-height: 1.625;
}

.brand-item .brand-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: var(--gap-30);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-item .brand-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 18px;
    position: relative;
}

.brand-item .brand-detail-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
}

.brand-item .brand-detail-item .detail-title {
    color: #313131;
    font-family: Inter;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.brand-item .brand-detail-item .detail-con {
    color: #313131;
    font-family: Inter;
    font-size: var(--font-16);
    font-style: normal;
    font-weight: 400;
    line-height: 1.625;
}

@media screen and (max-width: 1500px) {
    .brand-list {
        gap: 24px;
    }

    .brand-item .brand-title {
        font-size: 30px;
    }

    .brand-item .brand-content {
        padding: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .brand-item .brand-title {
        font-size: 24px;
    }

    .brand-list {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .brand-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .brand-item .brand-content {
        padding: 24px;
    }
}
