/* ============================================
   브랜드 페이지 스타일
   ============================================ */

/* 브랜드 배너 */
.brand-banner {
    position: relative;
    width: 1440px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.brand-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 브랜드 소개 섹션 */
.brand-intro-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.brand-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* 메인 타이틀 */
.brand-main-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 80px 0;
    letter-spacing: 2px;
}

/* 설명 블록 */
.brand-description-block {
    margin: 60px 0;
}

.brand-description {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

.brand-description strong {
    font-weight: 600;
    color: #000000;
}

/* 브랜드 하이라이트 색상 */
.brand-description .brand-highlight {
    color: #648876;
    font-weight: 600;
}

/* 브랜드 인포 이미지 */
.brand-info-image {
    margin: 80px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-info-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 중간 순간 텍스트 */
.brand-moments-text {
    font-size: 18px;
    font-weight: 300;
    color: #666666;
    margin-top: 10px;
}

/* 반응형 디자인 */
@media (max-width: 1440px) {
    .brand-banner {
        width: 100%;
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 900px) {
    .brand-banner {
        height: 300px;
    }

    .brand-intro-section {
        padding: 60px 0 140px; /* 하단 네비게이션 공간 확보 */
    }

    .brand-intro-container {
        padding: 0 16px;
    }

    .brand-main-title {
        font-size: 13px;
        margin: 0 0 40px 0;
    }

    .brand-description-block {
        margin: 40px 0;
    }

    .brand-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .brand-info-image {
        margin: 40px 0 0 0;
    }

    .brand-info-image img {
        max-width: 100%;
    }

    .brand-moments-text {
        font-size: 14px;
        margin-top: 10px;
    }
}