/* ─── NEOC Projections Page ──────────────────────────────────────── */

.neoc-page {
    position: relative;
    background-image: url('../img/hero.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.neoc-page__overlay {
    position: absolute;
    inset: 0;
    background: #0000008a;
    z-index: 0;
}

.neoc-page__content {
    position: relative;
    z-index: 1;
}

.neoc-page-title {
    text-align: center;
    padding: 28px 0 20px;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
    margin: 0;
}

/* ─── Column Panel ───────────────────────────────────────────────── */
.neoc-panel {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.neoc-panel__head {
    padding: 14px 18px;
    background: rgba(26,122,26,0.30);
    border-bottom: 1px solid rgba(26,122,26,0.45);
    display: flex;
    align-items: center;
    gap: 9px;
}

.neoc-panel__head h5 {
    margin: 0;
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.neoc-panel__head i {
    color: #f0c040;
    font-size: 1.1rem;
}

.neoc-panel__body {
    flex: 1;
    overflow-y: auto;
    max-height: 560px;
    padding: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(26,122,26,0.5) transparent;
}

.neoc-panel__body::-webkit-scrollbar { width: 4px; }
.neoc-panel__body::-webkit-scrollbar-track { background: transparent; }
.neoc-panel__body::-webkit-scrollbar-thumb { background: rgba(26,122,26,0.55); border-radius: 4px; }

/* ─── Projection List Item ───────────────────────────────────────── */
.proj-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9px;
    padding: 11px 14px;
    margin-bottom: 8px;
    transition: background .2s, border-color .2s;
}

.proj-item:last-child { margin-bottom: 0; }

.proj-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,.2);
}

.proj-item__title {
    font-size: .84rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.4;
}

.proj-item__title a {
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}

.proj-item__title a:hover { color: #f0c040; }

.proj-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.proj-item__date {
    font-size: .72rem;
    color: #f0c040;
    display: flex;
    align-items: center;
    gap: 5px;
}

.proj-item__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #1a7a1a;
    border: none;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: .72rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.proj-item__btn:hover { background: #145e14; color: #fff; }

/* ─── Projection Pagination ──────────────────────────────────────── */
.neoc-panel__foot {
    padding: 10px 12px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.neoc-pagination .page-link {
    border-radius: 5px !important;
    margin: 0 1px;
    border: 1px solid #1a7a1a;
    background: #1a7a1a;
    color: #fff;
    font-size: .72rem;
    padding: 4px 10px;
}

.neoc-pagination .page-link:hover { background: #145e14; border-color: #145e14; color: #fff; }
.neoc-pagination .page-item.active .page-link { background: #f0a500; border-color: #f0a500; color: #fff; }
.neoc-pagination .page-item.disabled .page-link { background: #555; border-color: #555; color: #aaa; opacity:1; }

/* ─── DEW / Outlook Image Card ───────────────────────────────────── */
.neoc-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: background .2s, border-color .2s, transform .2s;
}

.neoc-card:last-child { margin-bottom: 0; }

.neoc-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.neoc-card__img {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: rgba(0,0,0,.2);
}

.neoc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.neoc-card__body {
    padding: 9px 12px 10px;
}

.neoc-card__date {
    font-size: .7rem;
    color: #f0c040;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.neoc-card__title {
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
