* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    width: 100%;
}

/* 상단 배너 */
.TopBanner_sub_vs {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: -80px;
    padding-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.TopBanner_subImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.TopBanner_textOverlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.TopBanner_textOverlay h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .TopBanner_sub_vs {
        height: 250px;
        margin-top: -60px;
        padding-top: 60px;
    }
    
    .TopBanner_textOverlay h2 {
        font-size: 32px;
    }
}