/* NCB Events — Front-end Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

.ncb-front-wrap *, .ncb-front-wrap *::before, .ncb-front-wrap *::after { box-sizing: border-box; }
.ncb-front-wrap { font-family: 'Outfit', sans-serif; max-width: 1100px; margin: 0 auto; padding: 20px 0; }

.ncb-no-events { text-align: center; color: #888; font-size: 16px; padding: 40px; }

/* ── SECTION HEADING ── */
.ncb-section-heading {
    margin-bottom: 44px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.ncb-section-heading-inner { flex-shrink: 0; }
.ncb-section-tag {
    display: inline-block;
    background: #E87722;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.ncb-section-title {
    font-size: 34px;
    font-weight: 900;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.15;
    letter-spacing: -1px;
}
.ncb-section-sub {
    font-size: 15px;
    color: #777;
    margin: 0;
    font-weight: 400;
}
.ncb-section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #E87722 0%, rgba(232,119,34,0) 100%);
    border-radius: 2px;
    min-width: 40px;
}
@media (max-width: 600px) {
    .ncb-section-title { font-size: 24px; }
    .ncb-section-line  { display: none; }
}

/* ── MONTH BLOCK ── */
.ncb-month-block {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    margin-bottom: 56px;
    align-items: start;
}

/* ── CALENDAR ── */
.ncb-calendar {
    background: #1a1a2e;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26,26,46,.18);
    position: sticky;
    top: 20px;
}

.ncb-cal-header {
    background: #E87722;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    padding: 18px 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.ncb-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 12px 8px 16px;
    gap: 4px;
}

.ncb-cal-dow {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #E87722;
    padding: 6px 0;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.ncb-cal-cell {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #ccc;
    padding: 7px 2px;
    border-radius: 50%;
    position: relative;
    transition: all .15s;
}

.ncb-cal-empty { visibility: hidden; }

.ncb-cal-event {
    background: var(--ev-color, #E87722);
    color: #fff !important;
    font-weight: 800;
    font-size: 14px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px rgba(232,119,34,.35);
    animation: ncb-pulse 2s infinite;
    cursor: default;
}

@keyframes ncb-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(232,119,34,.35); }
    50%       { box-shadow: 0 0 0 7px rgba(232,119,34,.10); }
}

/* ── EVENT CARDS ── */
.ncb-event-cards { display: flex; flex-direction: column; gap: 20px; }

.ncb-event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: 1fr;
    border-left: 5px solid var(--ev-color, #E87722);
    transition: transform .2s, box-shadow .2s;
}
.ncb-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,.13);
}

.ncb-card-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
}
.ncb-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0;
}

.ncb-card-body {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* BIG DATE BLOCK */
.ncb-card-date-block {
    background: var(--ev-color, #E87722);
    color: #fff;
    min-width: 110px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.ncb-card-day {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    display: block;
    letter-spacing: -2px;
}

.ncb-card-month {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
    opacity: .9;
}

.ncb-card-dayname {
    font-size: 11px;
    font-weight: 500;
    display: block;
    margin-top: 6px;
    opacity: .75;
}

/* CARD INFO */
.ncb-card-info {
    padding: 20px 22px;
    flex: 1;
}

.ncb-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.3;
}

.ncb-card-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ncb-month-block {
        grid-template-columns: 1fr;
    }
    .ncb-calendar {
        position: static;
    }
    .ncb-card-day { font-size: 38px; }
    .ncb-card-date-block { min-width: 85px; padding: 16px 12px; }
    .ncb-card-title { font-size: 15px; }
}
