/* ── PAGE BANNER ── */
.page-banner {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #085041 0%, #1d9e75 60%, #5dcaa5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.banner-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* ── CONTENT ── */

.content-section {
    background: #fff;
    padding: 3rem 2.5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #b8912a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.section-sub {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 2rem;
}

/* YouTube */

.video-wrap {

    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background: #000;
    overflow: hidden;
}


.video-wrap iframe {

    width: 100%;
    height: 100%;
    display: block;
}

.video-info {
    width: 100%;
    max-width: 1200px;
    margin-top: 1.5rem;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.video-desc {
    font-size: 14px;
    color: #888;
    display: block;
    margin-bottom: 12px;
    line-height: 1.8;
}

.video-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #f0ede6;
    color: #b8912a;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {

    .page-banner {
        height: 110px;
    }

    .banner-title {
        font-size: 18px;
    }

    .content-section {
        padding: 2rem 1rem 2.5rem;
    }

    .section-title {
        font-size: 24px;
    }

    .section-sub {
        font-size: 14px;
    }
}