﻿/* ???????????????????????????????????????????????????????????
   News — Public user-facing styles — news.css
   Theme: #ff5e14 orange + #010e2a navy
??????????????????????????????????????????????????????????? */

/* ??????????????????????????????????????
   HERO BAND (Index page)
?????????????????????????????????????? */
.nws-hero {
    background: linear-gradient(135deg, #010e2a 0%, #0d2252 50%, #010e2a 100%);
    padding: 72px 0 56px;
    position: relative; overflow: hidden;
}
.nws-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,94,20,.12) 0%, transparent 65%);
    pointer-events: none;
}
.nws-hero-inner { text-align: center; position: relative; z-index: 1; }
.nws-hero-badge {
    display: inline-flex; align-items: center;
    background: rgba(255,94,20,.15); color: #ff7b3d;
    border: 1px solid rgba(255,94,20,.3);
    font-size: 12.5px; font-weight: 700;
    padding: 5px 16px; border-radius: 20px;
    margin-bottom: 16px; letter-spacing: .5px;
}
.nws-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900; color: #fff;
    margin-bottom: 12px; line-height: 1.15;
}
.nws-hero-sub {
    color: rgba(255,255,255,.6); font-size: 15px;
    max-width: 560px; margin: 0 auto 24px;
}
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ??????????????????????????????????????
   SECTION WRAP
?????????????????????????????????????? */
.nws-section { padding: 60px 0 80px; background: #f8fafc; }

/* ??????????????????????????????????????
   FEATURED ARTICLE CARD
?????????????????????????????????????? */
.nws-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 6px 32px rgba(0,0,0,.09);
    margin-bottom: 48px;
    transition: transform .25s, box-shadow .25s;
}
.nws-featured:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.13); }

.nws-featured-img-wrap {
    position: relative; min-height: 300px;
    overflow: hidden; background: #1e293b;
}
.nws-featured-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform .4s;
}
.nws-featured:hover .nws-featured-img { transform: scale(1.04); }
.nws-featured-img-placeholder {
    width: 100%; height: 100%; min-height: 300px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,#1e293b,#334155);
    font-size: 4rem; color: rgba(255,255,255,.1);
}
.nws-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(1,14,42,.18) 0%, transparent 60%);
}

.nws-featured-body {
    padding: 36px 36px;
    display: flex; flex-direction: column; justify-content: center;
}
.nws-featured-label {
    display: inline-flex; align-items: center;
    background: rgba(255,94,20,.1); color: #ff5e14;
    font-size: 11.5px; font-weight: 700;
    padding: 4px 12px; border-radius: 20px;
    margin-bottom: 14px; letter-spacing: .4px;
    width: fit-content;
}
.nws-featured-title {
    font-size: 1.55rem; font-weight: 800;
    color: #1e293b; line-height: 1.3; margin-bottom: 12px;
}
.nws-featured-excerpt {
    color: #64748b; font-size: 14px; line-height: 1.65;
    margin-bottom: 24px;
    display: -webkit-box; -webkit-line-clamp: 4;
    -webkit-box-orient: vertical; overflow: hidden;
}
.nws-featured-footer {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.nws-date {
    font-size: 12.5px; color: #94a3b8;
    display: flex; align-items: center; gap: 6px;
}

/* ??????????????????????????????????????
   BUTTONS
?????????????????????????????????????? */
.nws-btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg,#ff5e14,#ff7b3d);
    color: #fff; border: none; border-radius: 9px;
    font-size: 13.5px; font-weight: 700; cursor: pointer;
    box-shadow: 0 3px 12px rgba(255,94,20,.28);
    transition: all .2s; text-decoration: none; white-space: nowrap;
}
.nws-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,94,20,.35); color: #fff; }

/* ??????????????????????????????????????
   GRID HEADING SEPARATOR
?????????????????????????????????????? */
.nws-grid-heading {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
}
.nws-grid-heading span {
    font-size: 14px; font-weight: 800; color: #1e293b;
    white-space: nowrap;
}
.nws-grid-heading-line { flex: 1; height: 2px; background: #e8edf2; }

/* ??????????????????????????????????????
   NEWS CARDS (grid)
?????????????????????????????????????? */
.nws-card {
    background: #fff; border-radius: 14px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .25s, box-shadow .25s; height: 100%;
}
.nws-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }

.nws-card-thumb-link { display: block; flex-shrink: 0; }
.nws-card-thumb {
    position: relative; width: 100%;
    aspect-ratio: 16 / 9; overflow: hidden;
    background: #1e293b;
}
.nws-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s;
}
.nws-card:hover .nws-card-thumb img { transform: scale(1.07); }
.nws-card-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,#1e293b,#334155);
    font-size: 2.5rem; color: rgba(255,255,255,.15);
}
.nws-card-date-badge {
    position: absolute; bottom: 10px; left: 10px;
    background: rgba(1,14,42,.75); color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 6px;
    backdrop-filter: blur(4px);
    display: flex; align-items: center; gap: 5px;
}

.nws-card-body { padding: 16px 18px; flex: 1; }
.nws-card-title {
    font-size: 15px; font-weight: 800; color: #1e293b;
    margin-bottom: 8px; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.nws-card-title a { color: inherit; text-decoration: none; transition: color .15s; }
.nws-card-title a:hover { color: #ff5e14; }
.nws-card-excerpt {
    font-size: 13px; color: #64748b; line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.nws-card-footer {
    padding: 12px 18px; border-top: 1px solid #f1f5f9;
}
.nws-card-readmore {
    font-size: 13px; font-weight: 700; color: #ff5e14;
    display: inline-flex; align-items: center; gap: 5px;
    text-decoration: none; transition: gap .2s;
}
.nws-card-readmore:hover { gap: 8px; color: #e04e0f; }

/* ??????????????????????????????????????
   EMPTY STATE
?????????????????????????????????????? */
.nws-empty {
    text-align: center; padding: 72px 24px;
    background: #fff; border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.nws-empty-icon { font-size: 4rem; color: #e2e8f0; display: block; margin-bottom: 16px; }
.nws-empty h4   { color: #64748b; font-weight: 700; }
.nws-empty p    { color: #94a3b8; font-size: 14px; }

/* ??????????????????????????????????????
   DETAIL PAGE HERO
?????????????????????????????????????? */
.nws-detail-hero {
    background: linear-gradient(135deg, #010e2a 0%, #0d2252 60%, #010e2a 100%);
    padding: 60px 0 48px; position: relative; overflow: hidden;
}
.nws-detail-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,94,20,.1) 0%, transparent 65%);
    pointer-events: none;
}
.nws-detail-hero-inner { position: relative; z-index: 1; }
.nws-detail-date {
    font-size: 13px; color: rgba(255,255,255,.55);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
}
.nws-detail-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 900; color: #fff;
    line-height: 1.25; max-width: 760px;
}

/* ??????????????????????????????????????
   DETAIL ARTICLE SECTION
?????????????????????????????????????? */
.nws-detail-section { padding: 56px 0 80px; background: #f8fafc; }

.nws-article {}

.nws-article-img-wrap {
    border-radius: 14px; overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.nws-article-img {
    width: 100%; aspect-ratio: 16 / 9;
    object-fit: cover; display: block;
}

.nws-article-lead {
    font-size: 16px; color: #475569;
    line-height: 1.75; font-weight: 500;
    border-left: 3px solid #ff5e14;
    padding-left: 16px; margin-bottom: 28px;
}

.nws-article-content {
    font-size: 15px; color: #374151;
    line-height: 1.85;
}
.nws-article-content h2,
.nws-article-content h3 {
    font-size: 1.2rem; font-weight: 800; color: #1e293b;
    margin: 28px 0 10px;
}
.nws-article-content h3 { font-size: 1.05rem; }
.nws-article-content p  { margin-bottom: 18px; }
.nws-article-content ul,
.nws-article-content ol { padding-left: 22px; margin-bottom: 18px; }
.nws-article-content li { margin-bottom: 6px; }
.nws-article-content a  { color: #ff5e14; }
.nws-article-content a:hover { color: #e04e0f; }
.nws-article-content strong { color: #1e293b; }
.nws-article-content img    { max-width: 100%; border-radius: 10px; margin: 12px 0; }
.nws-article-content blockquote {
    border-left: 3px solid #ff5e14;
    padding: 12px 18px; background: #fff7f4;
    border-radius: 0 8px 8px 0; margin: 20px 0;
    font-style: italic; color: #64748b;
}

/* ?? Share buttons ?? */
.nws-share {
    margin-top: 40px; padding-top: 28px;
    border-top: 1px solid #e8edf2;
    display: flex; align-items: center;
    gap: 14px; flex-wrap: wrap;
}
.nws-share-label {
    font-size: 13.5px; font-weight: 700; color: #64748b;
    white-space: nowrap;
}
.nws-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.nws-share-btn {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff; text-decoration: none;
    transition: transform .2s, opacity .2s;
}
.nws-share-btn:hover { transform: scale(1.12); color: #fff; }
.nws-share-btn.fb { background: #1877f2; }
.nws-share-btn.tw { background: #000; }
.nws-share-btn.li { background: #0a66c2; }
.nws-share-btn.wa { background: #25d366; }

/* Back link */
.nws-back-link {
    font-size: 13.5px; font-weight: 700; color: #64748b;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 5px;
    transition: color .15s;
}
.nws-back-link:hover { color: #ff5e14; }

/* ??????????????????????????????????????
   SIDEBAR
?????????????????????????????????????? */
.nws-sidebar-card {
    background: #fff; border-radius: 14px;
    border: 1px solid #e8edf2;
    overflow: hidden; margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.nws-sidebar-title {
    padding: 14px 18px;
    background: #f8fafc; border-bottom: 1px solid #f1f5f9;
    font-size: 13.5px; font-weight: 800; color: #1e293b;
    display: flex; align-items: center; gap: 7px;
}
.nws-sidebar-title i { color: #ff5e14; }

.nws-recent-list {}
.nws-recent-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid #f8fafc;
    text-decoration: none; transition: background .15s;
}
.nws-recent-item:last-child { border-bottom: none; }
.nws-recent-item:hover { background: #fafbfc; }

.nws-recent-thumb {
    width: 64px; height: 46px; border-radius: 8px;
    overflow: hidden; flex-shrink: 0; background: #1e293b;
}
.nws-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nws-recent-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,#1e293b,#334155);
    font-size: 1.2rem; color: rgba(255,255,255,.15);
}

.nws-recent-info { flex: 1; min-width: 0; }
.nws-recent-title {
    font-size: 12.5px; font-weight: 700; color: #1e293b;
    line-height: 1.35; margin-bottom: 3px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.nws-recent-date {
    font-size: 11px; color: #94a3b8;
    display: flex; align-items: center; gap: 4px;
}

/* ?? CTA sidebar ?? */
.nws-sidebar-cta {
    background: linear-gradient(135deg,#010e2a,#0d2252);
    border-radius: 14px; padding: 28px 24px;
    text-align: center; color: #fff;
    box-shadow: 0 4px 20px rgba(1,14,42,.2);
}
.nws-sidebar-cta-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,94,20,.2); color: #ff7b3d;
    font-size: 22px; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 14px;
}
.nws-sidebar-cta h5 { font-weight: 800; margin-bottom: 8px; }
.nws-sidebar-cta p  { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.nws-btn-outline-white {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 20px;
    border: 1.5px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    color: #fff; border-radius: 9px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: all .2s;
}
.nws-btn-outline-white:hover {
    background: rgba(255,94,20,.2);
    border-color: #ff7b3d; color: #fff;
}

/* ??????????????????????????????????????
   DETAIL PAGE — TWO PANEL SCROLL LAYOUT
?????????????????????????????????????? */
.nws-scroll-wrapper {
    display: flex;
    gap: 0;
    height: calc(100vh - 76px);
    overflow: hidden;
    background: #f8fafc;
}

/* ?? LEFT panel ??????????????????????????????????? */
.nws-left {
    flex: 1 1 0;
    min-width: 0;
    overflow-y: auto;
    padding: 36px 40px 56px;
    scroll-behavior: smooth;
}
.nws-left::-webkit-scrollbar { width: 5px; }
.nws-left::-webkit-scrollbar-track { background: transparent; }
.nws-left::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }
.nws-left::-webkit-scrollbar-thumb:hover { background: #cbd5e1; }

/* ?? RIGHT panel ?????????????????????????????????? */
.nws-right {
    width: 340px;
    flex-shrink: 0;
    overflow-y: auto;
    border-left: 1px solid #e8edf2;
    background: #fff;
    scroll-behavior: smooth;
}
.nws-right::-webkit-scrollbar { width: 4px; }
.nws-right::-webkit-scrollbar-track { background: transparent; }
.nws-right::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }
.nws-right::-webkit-scrollbar-thumb:hover { background: #cbd5e1; }

/* ?? Right: sticky header ????????????????????????? */
.nws-right-header {
    position: sticky; top: 0; z-index: 10;
    background: #fff;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #f1f5f9;
}
.nws-right-title {
    font-size: 14px; font-weight: 800;
    color: #0f172a; letter-spacing: .3px;
    display: flex; align-items: center; gap: 8px;
}
.nws-right-title i { color: #ff5e14; font-size: 15px; }
.nws-right-sub { font-size: 11.5px; color: #94a3b8; margin-top: 2px; }

/* ?? Right: recent article card ??????????????????? */
.nws-right-card {
    display: flex; flex-direction: column;
    padding: 14px 16px;
    border-bottom: 1px solid #f8fafc;
    text-decoration: none;
    transition: background .18s;
}
.nws-right-card:hover { background: #fff8f5; text-decoration: none; }

.nws-right-card-top {
    display: flex; gap: 12px;
    align-items: flex-start;
    width: 100%;
}
.nws-right-thumb {
    flex-shrink: 0;
    width: 80px; height: 58px;
    border-radius: 8px;
    overflow: hidden;
    background: #1e293b;
    border: 1.5px solid #f1f5f9;
}
.nws-right-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.nws-right-thumb-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,#1e293b,#334155);
    font-size: 1.3rem; color: rgba(255,255,255,.15);
}

.nws-right-info { flex: 1; min-width: 0; }
.nws-right-card-title {
    font-size: 13px; font-weight: 700;
    color: #0f172a; line-height: 1.35;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nws-right-card:hover .nws-right-card-title { color: #ff5e14; }
.nws-right-card-date {
    font-size: 11px; color: #94a3b8;
    display: flex; align-items: center; gap: 4px;
    margin-bottom: 4px;
}
.nws-right-card-short {
    font-size: 11.5px; color: #94a3b8;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More btn — same style as pd-rel-link */
.nws-right-readmore {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; margin-top: 8px;
    padding: 7px 0; border-radius: 7px;
    border: 1.5px solid rgba(255,94,20,.25);
    background: rgba(255,94,20,.05);
    font-size: 12px; font-weight: 700;
    color: #ff5e14;
    transition: background .18s, border-color .18s;
}
.nws-right-card:hover .nws-right-readmore {
    background: #ff5e14;
    border-color: #ff5e14;
    color: #fff;
}

/* ?? Right: empty ????????????????????????????????? */
.nws-right-empty {
    padding: 40px 20px; text-align: center;
    color: #94a3b8; font-size: 13px;
}
.nws-right-empty i { font-size: 2rem; display: block; margin-bottom: 8px; }

/* ?? Left: article meta row ??????????????????????? */
.nws-left-meta {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap; margin-bottom: 14px;
}
.nws-left-date {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,94,20,.08);
    color: #ff5e14; border: 1px solid rgba(255,94,20,.2);
    border-radius: 20px; padding: 4px 14px;
    font-size: 12.5px; font-weight: 700;
}
.nws-left-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 900; color: #0f172a;
    line-height: 1.25; margin-bottom: 20px;
}

/* ── Inner split inside left panel ─────────────── */
.nws-inner-split {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.nws-inner-content {
    flex: 1 1 0;
    min-width: 0;
}
.nws-inner-image {
    width: 380px;
    flex-shrink: 0;
    position: sticky;
    top: 16px;
}

/* Image wrap — taller aspect ratio for news */
.nws-inner-image .nws-article-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 6px 28px rgba(0,0,0,.12);
    aspect-ratio: 4/3;
    cursor: zoom-in;
}
.nws-inner-image .nws-article-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .4s ease;
}
.nws-inner-image .nws-article-img-wrap:hover .nws-article-img {
    transform: scale(1.04);
}

/* Meta badges under image */
.nws-img-meta {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-top: 10px;
}
.nws-img-meta-date,
.nws-img-meta-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: 20px;
    font-size: 11.5px; font-weight: 700;
}
.nws-img-meta-date {
    background: rgba(255,94,20,.08);
    color: #ff5e14;
    border: 1px solid rgba(255,94,20,.2);
}
.nws-img-meta-tag {
    background: rgba(1,14,42,.06);
    color: #0f172a;
    border: 1px solid rgba(1,14,42,.1);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991.98px) {
    .nws-scroll-wrapper {
        flex-direction: column;
        height: auto; overflow: visible;
    }
    .nws-left {
        overflow-y: visible; height: auto;
        padding: 24px 20px 32px;
    }
    .nws-right {
        width: 100%; border-left: none;
        border-top: 2px solid #f1f5f9;
        height: auto; overflow-y: visible;
    }
    .nws-right-header { position: static; }
    /* Stack inner split on tablet */
    .nws-inner-split { flex-direction: column-reverse; gap: 20px; }
    .nws-inner-image { width: 100%; position: static; }
    .nws-inner-image .nws-article-img-wrap { aspect-ratio: 16/9; }
}
@media (max-width: 575.98px) {
    .nws-left { padding: 18px 14px 28px; }
    .nws-left-title { font-size: 1.3rem; }
}

/* ── Image zoom cursor on news detail image ─────── */
.nws-inner-image .nws-article-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 6px 28px rgba(0,0,0,.12);
    aspect-ratio: 4/3;
    cursor: zoom-in;
}

/* ── News Image Lightbox ─────────────────────────── */
.nws-img-lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.92);
    align-items: center; justify-content: center;
    padding: 20px;
    animation: nwsLbFadeIn .22s ease;
}
.nws-img-lightbox.open { display: flex; }

@keyframes nwsLbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Close button */
.nws-lb-close {
    position: absolute; top: 16px; right: 20px;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.08);
    color: #fff; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
    z-index: 10;
}
.nws-lb-close:hover { background: rgba(255,255,255,.2); }

/* Image inside lightbox */
.nws-lb-img-wrap {
    max-width: 90vw; max-height: 88vh;
    display: flex; align-items: center; justify-content: center;
    animation: nwsLbZoomIn .28s cubic-bezier(.34,1.56,.64,1);
}
@keyframes nwsLbZoomIn {
    from { transform: scale(.7); opacity: 0; }
    to   { transform: scale(1);  opacity: 1; }
}
.nws-lb-img-wrap img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain; border-radius: 10px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* Caption */
.nws-lb-caption {
    position: absolute; bottom: 20px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.6);
    color: #fff; font-size: 13px; font-weight: 600;
    padding: 6px 20px; border-radius: 20px;
    backdrop-filter: blur(8px);
    white-space: nowrap; max-width: 80vw;
    overflow: hidden; text-overflow: ellipsis;
}
