/* ==========================================================
   Sri Prakash News - Page Specific Styles
========================================================== */

.news-hero{
    background:
        radial-gradient(circle at top left,rgba(255,255,255,.16),transparent 34%),
        linear-gradient(135deg,var(--dark),var(--primary),var(--heritage-maroon));
    color:#fff;
    padding:70px 0 80px;
}

.news-hero h1,
.news-hero p{
    color:#fff;
}

.news-hero-text{
    max-width:880px;
    margin-bottom:34px;
}

.news-hero-text h1{
    font-size:clamp(2.3rem,5vw,4.5rem);
}

.news-hero-text p{
    max-width:780px;
    opacity:.9;
    font-size:1.08rem;
}

.light-kicker{
    color:var(--secondary) !important;
}

.news-featured{
    display:grid;
    grid-template-columns:1fr 340px;
    gap:22px;
}

.news-slider{
    position:relative;
    min-height:500px;
    border-radius:30px;
    overflow:hidden;
    background:var(--dark);
    box-shadow:var(--shadow-lg);
}

.news-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:.5s ease;
}

.news-slide.active{
    opacity:1;
    visibility:visible;
}

.news-slide-image,
.news-slide-image img,
.news-slide-placeholder{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.news-slide-image img{
    object-fit:cover;
}

.news-slide-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,var(--primary),var(--heritage-maroon));
    color:#fff;
    font-family:var(--font-heading);
    font-weight:900;
    font-size:2rem;
}

.news-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(7,18,36,.9),rgba(7,18,36,.48),rgba(7,18,36,.1));
}

.news-slide-content{
    position:relative;
    z-index:2;
    height:100%;
    padding:46px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    max-width:720px;
}

.news-slide-content h2{
    color:#fff;
    font-size:clamp(1.8rem,3vw,3.1rem);
}

.news-slide-content h2 a,
.news-slide-content p{
    color:#fff;
}

.news-slide-content p{
    opacity:.9;
}

.news-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:14px;
    color:#fff;
    font-weight:700;
}

.news-chip{
    background:var(--heritage-maroon);
    color:#fff;
    padding:6px 12px;
    border-radius:999px;
    font-size:.84rem;
}

.news-thumbs{
    display:grid;
    gap:12px;
}

.news-thumb{
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.08);
    color:#fff;
    border-radius:18px;
    padding:16px;
    display:grid;
    grid-template-columns:42px 1fr;
    gap:12px;
    text-align:left;
    cursor:pointer;
    transition:var(--transition);
}

.news-thumb.active,
.news-thumb:hover{
    background:#fff;
    color:var(--dark);
}

.news-thumb strong{
    color:var(--secondary);
    font-family:var(--font-heading);
}

.news-ticker-section{
    padding:24px 0;
    background:#fff;
}

.news-ticker{
    display:grid;
    grid-template-columns:155px 1fr;
    align-items:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:999px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
}

.news-ticker strong{
    background:var(--heritage-maroon);
    color:#fff;
    padding:14px 20px;
}

.news-ticker-track{
    overflow:hidden;
    white-space:nowrap;
}

.news-ticker-items{
    display:inline-flex;
    gap:34px;
    animation:newsTicker 28s linear infinite;
}

.news-ticker-items a{
    font-weight:800;
    color:var(--dark);
}

.news-ticker-items a::before{
    content:"•";
    color:var(--heritage-maroon);
    margin-right:16px;
}

@keyframes newsTicker{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

.news-filter-block{
    margin-bottom:24px;
}

.news-filter-block h3{
    font-size:1.05rem;
    color:var(--heritage-maroon);
    margin-bottom:12px;
}

.news-pill-row{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.news-pill{
    padding:9px 15px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--border);
    color:var(--dark);
    font-weight:800;
    box-shadow:var(--shadow-sm);
}

.news-pill:hover,
.news-pill.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.news-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.news-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

.news-card-image{
    height:230px;
    display:block;
    background:var(--light);
    overflow:hidden;
}

.news-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.news-placeholder{
    width:100%;
    height:100%;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,rgba(13,71,161,.12),rgba(122,30,44,.12));
    color:var(--primary);
    font-family:var(--font-heading);
    font-weight:900;
}

.news-card-content{
    padding:24px;
}

.news-card-meta{
    display:flex;
    justify-content:space-between;
    gap:10px;
    color:var(--heritage-maroon);
    font-size:.86rem;
    font-weight:800;
    margin-bottom:10px;
}

.news-institution{
    display:inline-flex;
    padding:5px 10px;
    border-radius:999px;
    background:rgba(13,71,161,.08);
    color:var(--primary);
    font-weight:800;
    font-size:.78rem;
    margin-bottom:12px;
}

.news-readmore{
    color:var(--primary);
    font-weight:900;
}

.news-empty{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:34px;
    box-shadow:var(--shadow-sm);
}

@media (max-width:991px){
    .news-featured{
        grid-template-columns:1fr;
    }

    .news-thumbs{
        grid-template-columns:repeat(2,1fr);
    }

    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:640px){
    .news-hero{
        padding:54px 0;
    }

    .news-slider{
        min-height:500px;
    }

    .news-slide-content{
        padding:28px;
    }

    .news-thumbs,
    .news-grid{
        grid-template-columns:1fr;
    }

    .news-ticker{
        grid-template-columns:1fr;
        border-radius:20px;
    }

    .news-ticker strong{
        text-align:center;
        justify-content:center;
    }

    .news-pill-row{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:6px;
    }

    .news-pill{
        white-space:nowrap;
    }
}




/* ==========================================================
   News Article Page
========================================================== */

.news-article-hero{
    background:
        radial-gradient(circle at top left,rgba(255,255,255,.14),transparent 34%),
        linear-gradient(135deg,var(--dark),var(--primary),var(--heritage-maroon));
    color:#fff;
    padding:72px 0;
}

.news-article-heading{
    max-width:920px;
}

.news-article-heading h1{
    color:#fff;
    font-size:clamp(2rem,4vw,4rem);
    margin-bottom:18px;
}

.news-article-heading p{
    color:rgba(255,255,255,.9);
    font-size:1.08rem;
    max-width:820px;
}

.news-article-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:34px;
    align-items:start;
}

.news-article-main{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
}

.news-article-image{
    width:100%;
    max-height:560px;
    background:var(--light);
    overflow:hidden;
}

.news-article-image img{
    width:100%;
    height:100%;
    max-height:560px;
    object-fit:cover;
    display:block;
}

.news-article-content{
    padding:34px;
    color:var(--text);
    line-height:1.85;
    font-size:1.03rem;
}

.news-video-wrap{
    position:relative;
    width:calc(100% - 68px);
    margin:0 34px 34px;
    padding-top:56.25%;
    border-radius:20px;
    overflow:hidden;
    background:#000;
}

.news-video-wrap iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

.news-gallery-block{
    padding:0 34px 34px;
}

.news-gallery-block h2{
    margin-bottom:18px;
}

.news-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.news-gallery-item{
    height:150px;
    border-radius:16px;
    overflow:hidden;
    display:block;
    background:var(--light);
}

.news-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:var(--transition);
}

.news-gallery-item:hover img{
    transform:scale(1.06);
}

.news-article-side{
    position:sticky;
    top:100px;
    display:grid;
    gap:20px;
}

.news-side-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:24px;
    box-shadow:var(--shadow-sm);
}

.news-side-card h3{
    margin-bottom:16px;
}

.news-side-card p{
    padding:12px 0;
    border-bottom:1px solid var(--border);
    margin-bottom:0;
}

.news-side-card p:last-child{
    border-bottom:0;
}

.news-side-card strong{
    display:block;
    color:var(--dark);
    margin-bottom:4px;
}

.news-side-card span{
    color:var(--text);
}

.news-share-links{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.news-share-links a{
    padding:9px 13px;
    border-radius:999px;
    background:rgba(13,71,161,.08);
    color:var(--primary);
    font-weight:900;
}

.news-share-links a:hover{
    background:var(--primary);
    color:#fff;
}

.news-related-list{
    display:grid;
    gap:12px;
}

.news-related-list a{
    display:block;
    padding:13px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid var(--border);
}

.news-related-list small{
    display:block;
    color:var(--heritage-maroon);
    font-weight:800;
    margin-bottom:5px;
}

.news-related-list strong{
    color:var(--dark);
    line-height:1.35;
}

@media (max-width:991px){
    .news-article-layout{
        grid-template-columns:1fr;
    }

    .news-article-side{
        position:static;
    }
}

@media (max-width:640px){
    .news-article-hero{
        padding:54px 0;
    }

    .news-article-content,
    .news-gallery-block{
        padding:24px;
    }

    .news-video-wrap{
        width:calc(100% - 48px);
        margin:0 24px 24px;
    }

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

    .news-gallery-item{
        height:130px;
    }
}


/* ==========================================================
   External Gallery + Local Image Iframe Popup
========================================================== */

.news-external-gallery-box{
    margin:0 34px 34px;
    padding:28px;
    border-radius:22px;
    background:linear-gradient(135deg,rgba(13,71,161,.08),rgba(122,30,44,.08));
    border:1px solid var(--border);
}

.news-external-gallery-box h2{
    margin-bottom:10px;
}

.news-external-gallery-box p{
    margin-bottom:18px;
}

.news-image-frame-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    background:rgba(7,18,36,.92);
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.news-image-frame-modal.active{
    display:flex;
}

.news-frame-box{
    width:min(1000px, 96vw);
    max-height:90vh;
    background:#fff;
    border-radius:22px;
    padding:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
    overflow:auto;
}

.news-frame-box iframe{
    width:100%;
    height:75vh;
    border:0;
    border-radius:16px;
    background:#f3f6fb;
}

.news-frame-box p{
    margin:14px 0 0;
    color:var(--dark);
    font-weight:800;
}

.news-frame-close{
    position:fixed;
    top:20px;
    right:24px;
    width:44px;
    height:44px;
    border-radius:999px;
    border:0;
    background:#fff;
    color:var(--heritage-maroon);
    font-size:2rem;
    line-height:1;
    cursor:pointer;
    font-weight:900;
}

@media (max-width:640px){
    .news-external-gallery-box{
        margin:0 24px 24px;
        padding:22px;
    }

    .news-image-frame-modal{
        padding:12px;
    }

    .news-frame-box{
        width:96vw;
        max-height:86vh;
        padding:12px;
    }

    .news-frame-box iframe{
        height:68vh;
    }
}


/* ==========================================================
   News Article Main Image - Fit Without Cropping
========================================================== */

.news-article-image{
    width:100%;
    max-height:none;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.news-article-image img{
    width:100%;
    height:auto;
    max-height:560px;
    object-fit:contain;
    object-position:center center;
    display:block;
    background:#fff;
}




/* ==========================================================
   Multiple Links Display
========================================================== */

.news-multi-video-block{
    padding:0 34px 10px;
}

.news-multi-video-block h2{
    margin-bottom:18px;
}

.news-video-title{
    margin:18px 0 12px;
    font-weight:900;
    color:var(--dark);
    font-size:1.05rem;
}

.news-public-link-grid{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.news-public-link-grid a{
    display:inline-flex;
    padding:10px 15px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--border);
    color:var(--primary);
    font-weight:900;
    box-shadow:var(--shadow-sm);
}

.news-public-link-grid a:hover{
    background:var(--primary);
    color:#fff;
}

@media (max-width:640px){
    .news-multi-video-block{
        padding:0 24px 10px;
    }

    .news-public-link-grid a{
        width:100%;
        justify-content:center;
    }
}



/* ==========================================================
   Public News Search / Filter Improvements
========================================================== */

.news-quick-categories{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    margin-bottom:24px;
}

.news-quick-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:9px 15px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--border);
    color:var(--dark);
    font-weight:900;
    font-size:.88rem;
    box-shadow:var(--shadow-sm);
}

.news-quick-pill:hover,
.news-quick-pill.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

.news-public-filter{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:26px;
    box-shadow:var(--shadow-sm);
}

.news-public-filter-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr .7fr;
    gap:16px;
    align-items:end;
}

.news-public-filter-group label{
    display:block;
    font-weight:900;
    color:var(--dark);
    margin-bottom:8px;
    font-size:.9rem;
}

.news-public-filter-group input,
.news-public-filter-group select{
    width:100%;
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px 14px;
    background:#fff;
    color:var(--dark);
    font:inherit;
}

.news-public-filter-group input:focus,
.news-public-filter-group select:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(13,71,161,.10);
}

.news-public-filter-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:20px;
}

@media (max-width:991px){
    .news-public-filter-grid{
        grid-template-columns:1fr 1fr;
    }

    .news-public-filter-group.search-group{
        grid-column:1 / -1;
    }
}

@media (max-width:640px){
    .news-quick-categories{
        justify-content:flex-start;
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:6px;
    }

    .news-quick-pill{
        white-space:nowrap;
    }

    .news-public-filter{
        padding:20px;
        border-radius:22px;
    }

    .news-public-filter-grid{
        grid-template-columns:1fr;
    }

    .news-public-filter-actions .btn{
        width:100%;
    }
}



/* ==========================================================
   Article Share Buttons - Soft Elegant Version
========================================================== */

.news-share-box{
    margin:26px 0 30px;
    padding:18px 20px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    background:#ffffff;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
}

.news-share-box > span{
    display:block;
    margin-bottom:14px;
    color:var(--dark);
    font-size:.95rem;
    font-weight:700;
}

.news-share-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.news-share-links a,
.news-share-links button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid transparent;
    border-radius:999px;
    padding:9px 15px;
    font:inherit;
    font-size:.82rem;
    font-weight:650;
    line-height:1;
    cursor:pointer;
    text-decoration:none;
    transition:.2s ease;
    box-shadow:none;
}

/* Soft individual colors */
.news-share-links .share-facebook{
    background:#EEF4FF;
    color:#1D4ED8;
    border-color:#DCEAFE;
}

.news-share-links .share-x{
    background:#F3F4F6;
    color:#111827;
    border-color:#E5E7EB;
}

.news-share-links .share-linkedin{
    background:#EEF7FF;
    color:#0A66C2;
    border-color:#D8ECFF;
}

.news-share-links .share-whatsapp{
    background:#ECFDF5;
    color:#047857;
    border-color:#D1FAE5;
}

.news-share-links .share-instagram{
    background:#FFF1F5;
    color:#BE185D;
    border-color:#FCE7F3;
}

.news-share-links .share-copy{
    background:#FFF7ED;
    color:#9A3412;
    border-color:#FED7AA;
}

.news-share-links a:hover,
.news-share-links button:hover{
    transform:translateY(-1px);
    filter:none;
    box-shadow:0 8px 18px rgba(15,23,42,.08);
}

.news-share-links .share-facebook:hover{
    background:#DBEAFE;
}

.news-share-links .share-x:hover{
    background:#E5E7EB;
}

.news-share-links .share-linkedin:hover{
    background:#DBEAFE;
}

.news-share-links .share-whatsapp:hover{
    background:#D1FAE5;
}

.news-share-links .share-instagram:hover{
    background:#FCE7F3;
}

.news-share-links .share-copy:hover{
    background:#FED7AA;
}

@media (max-width:640px){
    .news-share-box{
        padding:16px;
        border-radius:16px;
    }

    .news-share-links{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:9px;
    }

    .news-share-links a,
    .news-share-links button{
        width:100%;
        padding:10px 12px;
        font-size:.8rem;
    }
}




/* ==========================================================
   Rich Article Content Styling
========================================================== */

.news-article-content{
    color:#162033;
    font-size:1rem;
    line-height:1.85;
}

.news-article-content p{
    margin:0 0 22px;
}

.news-article-content h2,
.news-article-content h3,
.news-article-content h4{
    color:var(--dark);
    font-weight:900;
    line-height:1.25;
    margin:34px 0 14px;
}

.news-article-content h2{
    font-size:1.65rem;
    padding-bottom:10px;
    border-bottom:1px solid var(--border);
}

.news-article-content h3{
    font-size:1.35rem;
    color:var(--primary);
}

.news-article-content h4{
    font-size:1.12rem;
    color:var(--heritage-maroon);
}

.news-article-content strong,
.news-article-content b{
    color:var(--dark);
    font-weight:900;
}

.news-article-content em{
    color:#475569;
}

.news-article-content ul,
.news-article-content ol{
    margin:0 0 24px 22px;
    padding:0;
}

.news-article-content li{
    margin-bottom:9px;
    line-height:1.75;
}

.news-article-content blockquote{
    margin:28px 0;
    padding:22px 24px;
    border-left:5px solid var(--heritage-maroon);
    background:#FFF7ED;
    border-radius:0 18px 18px 0;
    color:#4B2E1F;
    font-weight:700;
    line-height:1.75;
}

.news-article-content .news-callout{
    margin:26px 0;
    padding:20px 22px;
    border-radius:18px;
    background:#EEF5FF;
    border:1px solid #D7E7FF;
    color:#123A7A;
    font-weight:700;
}

.news-article-content .news-callout.success{
    background:#ECFDF5;
    border-color:#BBF7D0;
    color:#166534;
}

.news-article-content .news-callout.warning{
    background:#FFF7ED;
    border-color:#FED7AA;
    color:#9A3412;
}

/* Tables inside articles */
.news-article-content table{
    width:100%;
    border-collapse:collapse;
    margin:28px 0;
    font-size:.95rem;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;
}

.news-article-content th,
.news-article-content td{
    border:1px solid var(--border);
    padding:12px 14px;
    text-align:left;
    vertical-align:top;
}

.news-article-content th{
    background:#F1F5F9;
    color:var(--dark);
    font-weight:900;
}

.news-article-content tr:nth-child(even) td{
    background:#FAFBFC;
}

.news-article-content a{
    color:var(--primary);
    font-weight:800;
    text-decoration:underline;
    text-underline-offset:3px;
}

.news-article-content img{
    max-width:100%;
    height:auto;
    border-radius:16px;
}

@media (max-width:640px){
    .news-article-content{
        font-size:.96rem;
        line-height:1.78;
    }

    .news-article-content h2{
        font-size:1.35rem;
    }

    .news-article-content h3{
        font-size:1.18rem;
    }

    .news-article-content table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
        border-radius:14px;
    }

    .news-article-content th,
    .news-article-content td{
        padding:10px 12px;
    }
}









/* ==========================================================
   Public News pagination and list toolbar
========================================================== */

.news-list-toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:28px;
}

.news-list-toolbar p{
    margin:0;
    color:var(--text-light);
    font-weight:700;
}

.news-pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:42px;
}

.news-pagination__pages{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
}

.news-pagination__page,
.news-pagination__nav{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:44px;
    min-height:44px;
    padding:9px 14px;
    border:1px solid var(--border);
    border-radius:12px;
    background:#fff;
    color:var(--dark);
    text-decoration:none;
    font-weight:800;
    line-height:1;
    transition:var(--transition);
}

.news-pagination__nav{
    min-width:118px;
}

.news-pagination__page:hover,
.news-pagination__nav:hover{
    border-color:var(--heritage-maroon);
    color:var(--heritage-maroon);
    transform:translateY(-1px);
}

.news-pagination__page.is-current{
    border-color:var(--heritage-maroon);
    background:var(--heritage-maroon);
    color:#fff;
}

.news-pagination__nav.is-disabled{
    opacity:.46;
    cursor:not-allowed;
}

.news-pagination__ellipsis{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:28px;
    min-height:44px;
    color:var(--text-light);
    font-weight:800;
}

/* Branded News-specific 404 */
.news-not-found-hero{
    padding-bottom:58px;
}

.news-not-found-section{
    background:#f7f9fc;
}

.news-not-found-panel{
    max-width:760px;
    margin:0 auto;
    padding:52px 42px;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow-md);
    text-align:center;
}

.news-not-found-code{
    display:block;
    margin-bottom:8px;
    color:var(--heritage-maroon);
    font-size:clamp(3.5rem,10vw,6.5rem);
    font-family:var(--font-heading);
    font-weight:900;
    line-height:1;
    opacity:.13;
}

.news-not-found-panel h2{
    margin-bottom:12px;
}

.news-not-found-panel p{
    max-width:610px;
    margin:0 auto;
    color:var(--text-light);
    line-height:1.75;
}

.news-not-found-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:26px;
}

@media (max-width:620px){
    .news-list-toolbar{
        align-items:flex-start;
        flex-direction:column;
    }

    .news-pagination{
        align-items:stretch;
    }

    .news-pagination__pages{
        order:1;
        width:100%;
    }

    .news-pagination__nav{
        flex:1 1 0;
        min-width:0;
    }

    .news-not-found-panel{
        padding:38px 22px;
    }

    .news-not-found-actions{
        flex-direction:column;
    }

    .news-not-found-actions .btn{
        width:100%;
    }
}
