/* ── Hero ─────────────────────────────────────── */
.nsy-yc-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--nsy-black);
}

.nsy-yc-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.nsy-yc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.nsy-yc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    max-width: 700px;
}

.nsy-yc-hero-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.nsy-yc-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.nsy-yc-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ── Info ─────────────────────────────────────── */
.nsy-yc-info {
    padding: 88px 0;
    background: var(--nsy-white);
}

.nsy-yc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.nsy-yc-info-card {
    border-top: 1px solid var(--nsy-grey-mid);
    padding-top: 24px;
}

.nsy-yc-info-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.nsy-yc-info-card-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
    white-space: pre-line;
}

/* ── Gallery ──────────────────────────────────── */
.nsy-yc-gallery-section {
    background: var(--nsy-black);
    padding: 88px 24px;
}

.nsy-yc-gallery {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.nsy-yc-gallery-item {
    text-align: center;
}

.nsy-yc-gallery-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.nsy-yc-gallery-caption {
    margin-top: 14px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ── CTA ──────────────────────────────────────── */
.nsy-yc-cta {
    background: var(--nsy-white);
    border-top: 1px solid var(--nsy-grey-mid);
    padding: 88px 24px;
    text-align: center;
}

.nsy-yc-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.nsy-yc-cta-body {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.nsy-yc-cta-btn {
    display: inline-block;
    padding: 14px 44px;
    background: var(--nsy-black);
    color: var(--nsy-white);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--nsy-black);
    transition: background 0.2s, color 0.2s;
}

    .nsy-yc-cta-btn:hover {
        background: transparent;
        color: var(--nsy-black);
        text-decoration: none;
    }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .nsy-yc-info-grid {
        grid-template-columns: 1fr;
    }

    .nsy-yc-gallery {
        grid-template-columns: 1fr;
    }

    /* Center all content on phones (gallery and CTA are already centered) */
    .nsy-yc-info {
        text-align: center;
    }
}

/* Admin-entered text: a long unbroken word must wrap rather than
   overflow the phone viewport. */
.nsy-yc-hero-title,
.nsy-yc-hero-sub,
.nsy-yc-info-card-title,
.nsy-yc-info-card-text {
    overflow-wrap: anywhere;
}
