/* =======================
   Business Layout Page
   ======================= */

/* 상단 배너 */
body.business-page .section-01 {
    background: url("/img/business/business-banner.png") center / cover no-repeat;
    position: relative;
    width: 100%;
    min-height: 40svh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner-overlay {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}
.banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}
.banner-sub {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
    display: block;
    font-weight: 400;
}

/* 탭 버튼 */
.business-tabs {
    text-align: center;
    margin: 2rem 0;
}
.tabs {
    display: inline-flex;
    gap: 1rem;
}
.tab-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    background: #f3f3f3;
    color: #111;
    font-weight: 400;
    text-decoration: none;
    transition: all .25s ease;
    font-size: 1rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tab-btn:hover {
    background: #ddd;
}
.tab-btn.active {
    background: #ccc;
}

@media (max-width: 1000px) {
    .banner-sub {
        display: none;
    }
}
@media (max-width: 800px) {
    .tabs {
        gap: 0.2rem;
    }
    .tab-btn {
        font-size: 0.7rem;
    }
}
