/* ===== Страницы «События» и «О нас» ===== */

.nbc-pages { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nbc-pg-section { margin: 48px 0; }
.nbc-pg-title {
    text-align: center; text-transform: uppercase;
    font-size: 30px; font-weight: 800; letter-spacing: 1px;
    margin: 0 0 32px;
}

/* Сетки карточек */
.nbc-pg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.nbc-pg-grid-4 { grid-template-columns: repeat(4, 1fr); }
.nbc-pg-grid-3 { grid-template-columns: repeat(3, 1fr); }

.nbc-pg-card {
    display: flex; flex-direction: column;
    background: #fafafa; border-radius: 20px; overflow: hidden;
    text-decoration: none; color: #1a1a1a;
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    transition: transform .2s, box-shadow .2s;
}
.nbc-pg-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.16); }
.nbc-pages a, .nbc-pages a:hover { text-decoration: none; }
.nbc-pg-card-img { aspect-ratio: 1 / 1; overflow: hidden; background: #eee; }
.nbc-pg-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter .2s; }
.nbc-pg-card:hover .nbc-pg-card-img img { filter: brightness(.82); }
.nbc-pg-card-body { padding: 16px; flex: 1; }
.nbc-pg-card-title { font-size: 15px; font-weight: 700; line-height: 1.35; }
.nbc-pg-card-date { padding: 12px 16px; font-size: 13px; color: #9a9a9a; text-align: center; border-top: 1px solid #eee; }

.nbc-pg-interior { border-radius: 20px; overflow: hidden; }
.nbc-pg-interior .nbc-pg-card-img { aspect-ratio: 4 / 3; }
.nbc-pg-interior .nbc-pg-card-body { padding: 10px 16px; border-radius: 0 0 20px 20px; }
.nbc-pg-interior .nbc-pg-card-title { font-size: 18px; font-weight: 500; text-align: center; }

/* Видео */
.nbc-pg-video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 4px; overflow: hidden; }
.nbc-pg-video-poster {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2;
}
.nbc-pg-video-play {
    width: 72px; height: 72px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.92); color: #c73133;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.3); transition: transform .2s;
}
.nbc-pg-video-play:hover { transform: scale(1.08); }
.nbc-pg-video-play svg { width: 34px; height: 34px; margin-left: 3px; }
.nbc-pg-video-embed { position: absolute; inset: 0; }
.nbc-pg-video-embed iframe, .nbc-pg-video-embed video { width: 100%; height: 100%; display: block; border: 0; }

/* Блог */
.nbc-pg-blog-card {
    display: block; max-width: 520px; aspect-ratio: 1 / 1;
    background-size: cover; background-position: center; border-radius: 20px;
    overflow: hidden; position: relative; text-decoration: none;
    transition: filter .2s;
}
.nbc-pg-blog-card:hover { filter: brightness(.85); }
.nbc-pg-blog-overlay {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,0)); color: #fff;
}
.nbc-pg-blog-tag { font-size: 13px; font-weight: 700; opacity: .9; }
.nbc-pg-blog-title { font-size: 18px; font-weight: 700; margin: 4px 0 2px; }
.nbc-pg-blog-date { font-size: 12px; opacity: .8; }

/* FAQ */
.nbc-pg-faq { max-width: 900px; margin: 0 auto; }
.nbc-pg-faq-item { border-bottom: 1px solid #e6e6e6; }
.nbc-pg-faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 4px; font-size: 18px; font-weight: 700; text-align: left; color: #1a1a1a;
    font-family: inherit;
}
.nbc-pg-faq-arrow { font-size: 24px; font-weight: 400; color: #c73133; flex: 0 0 auto; transition: transform .2s; }
.nbc-pg-faq-item.open .nbc-pg-faq-arrow { transform: rotate(45deg); }
.nbc-pg-faq-a { display: none; padding: 0 4px 18px; font-size: 15px; line-height: 1.6; color: #444; }
.nbc-pg-faq-item.open .nbc-pg-faq-a { display: block; }

/* Скрываем дублирующий заголовок страницы на «События»/«О нас» */
.nbc-hide-page-title .page-header,
.nbc-hide-page-title .entry-title { display: none; }

/* ===== Одиночная запись (Фотоотчёт / Событие) ===== */
.nbc-single { padding-top: 28px; padding-bottom: 48px; }
.nbc-single-main { min-height: 50vh; }

.nbc-pg-crumbs { font-size: 13px; color: #9a9a9a; margin-bottom: 22px; }
.nbc-pg-crumbs a { color: #c73133; text-decoration: none; text-transform: uppercase; }
.nbc-pg-crumbs a:hover { text-decoration: underline; }
.nbc-pg-crumbs-sep { margin: 0 8px; color: #c9c9c9; }
.nbc-pg-crumbs-cur { text-transform: uppercase; }

.nbc-pg-single-title {
    text-align: center; font-size: 32px; font-weight: 800;
    margin: 0 0 32px; line-height: 1.2;
}

/* Masonry-галерея фотоотчёта */
.nbc-gallery { column-count: 4; column-gap: 12px; }
.nbc-gallery-item {
    break-inside: avoid; margin: 0 0 12px; position: relative;
    border-radius: 20px; overflow: hidden; background: #eee;
}
.nbc-gallery-item img { width: 100%; height: auto; display: block; transition: filter .2s; }
.nbc-gallery-item a { display: block; }
.nbc-gallery-item:hover img { filter: brightness(.82); }

/* Событие */
.nbc-single-event { display: flex; gap: 32px; align-items: flex-start; }
.nbc-single-event-img { flex: 0 0 360px; max-width: 360px; }
.nbc-single-event-img img { width: 100%; height: auto; display: block; border-radius: 20px; }
.nbc-single-event-text { flex: 1; font-size: 17px; line-height: 1.6; color: #1a1a1a; }
.nbc-single-event-text p { margin: 0 0 14px; }

@media (max-width: 1024px) { .nbc-gallery { column-count: 3; } }
@media (max-width: 768px) {
    .nbc-pg-single-title { font-size: 24px; }
    .nbc-gallery { column-count: 2; }
    .nbc-single-event { flex-direction: column; gap: 18px; }
    .nbc-single-event-img { flex-basis: auto; max-width: 100%; }
}
@media (max-width: 480px) { .nbc-gallery { column-count: 2; column-gap: 8px; } .nbc-gallery-item { margin-bottom: 8px; } }

/* Lightbox галереи */
body.nbc-lb-open { overflow: hidden; }
.nbc-lb {
    display: none; position: fixed; inset: 0; z-index: 10060;
    background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.nbc-lb.active { display: flex; }
.nbc-lb-stage { margin: 0; max-width: 92vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.nbc-lb-stage img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; display: block; border-radius: 8px; }
.nbc-lb-count { color: #fff; font-size: 14px; margin-top: 12px; opacity: .85; }
.nbc-lb-close {
    position: absolute; top: 18px; right: 24px; background: none; border: none;
    color: #fff; font-size: 40px; line-height: 1; cursor: pointer; opacity: .8;
}
.nbc-lb-close:hover { opacity: 1; }
.nbc-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px; border: none; border-radius: 50%; cursor: pointer;
    background: rgba(255,255,255,.12); color: #fff; font-size: 26px;
    display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.nbc-lb-nav:hover { background: rgba(255,255,255,.25); }
.nbc-lb-prev { left: 24px; }
.nbc-lb-next { right: 24px; }
@media (max-width: 768px) {
    .nbc-lb-nav { width: 44px; height: 44px; font-size: 20px; }
    .nbc-lb-prev { left: 10px; } .nbc-lb-next { right: 10px; }
    .nbc-lb-close { top: 10px; right: 14px; }
}

/* Попап «Вакансии» */
.nbc-vac-overlay {
    display: none; position: fixed; inset: 0; z-index: 10050;
    background: rgba(0,0,0,.55); align-items: center; justify-content: center; padding: 20px;
}
.nbc-vac-overlay.active { display: flex; }
.nbc-vac-modal {
    position: relative; background: #fff; border-radius: 16px;
    max-width: 560px; width: 100%; padding: 48px 40px; text-align: center;
    box-shadow: 0 12px 48px rgba(0,0,0,.3);
}
.nbc-vac-close {
    position: absolute; top: 14px; right: 18px; background: none; border: none;
    font-size: 28px; line-height: 1; cursor: pointer; color: #c73133;
}
.nbc-vac-text { font-size: 17px; line-height: 1.5; color: #1a1a1a; margin-bottom: 18px; }
.nbc-vac-phone { font-size: 28px; font-weight: 700; color: #c73133; text-decoration: none; }
.nbc-vac-phone:hover { text-decoration: underline; }

/* Мобайл */
@media (max-width: 768px) {
    .nbc-pg-title { font-size: 22px; margin-bottom: 22px; }
    /* События и фотоотчёты — 2 колонки */
    .nbc-pg-grid, .nbc-pg-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    /* Интерьеры — 1 колонка */
    .nbc-pg-grid-3 { grid-template-columns: 1fr; }
    .nbc-pg-card-body { padding: 10px; }
    .nbc-pg-card-title { font-size: 12px; }
    .nbc-pg-card-date { padding: 8px 10px; font-size: 11px; }
    .nbc-pg-interior .nbc-pg-card-title { font-size: 16px; }
    .nbc-pg-blog-card { max-width: none; }
    .nbc-vac-modal { padding: 40px 24px; }
    .nbc-vac-phone { font-size: 24px; }
}
