/* 品牌故事页面特定样式 */

/* 品牌板块 */
.brand-section {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    margin: 0;
    justify-content: flex-end;
}

.brand-text {
    width: 480px;
    padding: 100px 45px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: box-shadow 0.35s ease;
    position: relative;
    z-index: 2;
}

/* 奇数项 靠左排列 交替效果 */
.brand-section:nth-child(odd) {
    justify-content: flex-start;
}

/* 悬浮阴影 */
.brand-text:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.brand-text h2 {
    font-size: 30px;
    color: #ffa400;
    margin-bottom: 16px;
}

.brand-text p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
}

/* ============ 移动端适配 ============ */
@media (max-width: 768px) {
    .brand-section,
    .brand-section:nth-child(odd) {
        height: auto;
        min-height: 70vh;
        padding: 60px 16px;
        justify-content: center;
        align-items: flex-end;
    }

    .brand-text {
        width: 100%;
        padding: 24px 20px;
        background: rgba(255, 255, 255, 0.55);
    }

    .brand-text h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .brand-text p {
        font-size: 14px;
    }
}
