/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f6f9;
    color:#222;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#111827;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.top-left{
    width:20%;
}

.top-center{
    width:60%;
}

.top-right{
    width:20%;
    text-align:right;
}

.top-right a{
    color:white;
    margin-left:12px;
    font-size:18px;
}

.top-right a:hover{
    color:#ffcc00;
}

/* =========================
   HEADER
========================= */

.main-header{
    background:#ffffff;
    padding:25px 0;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.main-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h1{
    font-size:42px;
    color:#e10600;
    margin-bottom:5px;
    font-weight:800;
}

.logo p{
    color:#666;
}

.header-ad{
    width:728px;
    height:90px;
    background:#ececec;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#777;
    border-radius:8px;
    border:1px dashed #bbb;
}

/* =========================
   MENU
========================= */

.main-nav{
    background:#e10600;
    position:sticky;
    top:0;
    z-index:999;
}

.main-nav ul{
    display:flex;
    justify-content:center;
}

.main-nav li{
    margin:0 4px;
}

.main-nav a{
    display:block;
    color:white;
    padding:18px 22px;
    font-weight:600;
    transition:.3s;
}

.main-nav a:hover{
    background:white;
    color:#e10600;
}

/* =========================
   FOOTER
========================= */

.footer{
    margin-top:80px;
    background:#111827;
    color:white;
    text-align:center;
    padding:30px;
}

/* ================= HERO ================= */

.hero-section{
    padding:40px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.featured-news{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.featured-image{
    position:relative;
}

.featured-image img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.category{
    position:absolute;
    left:20px;
    top:20px;
    background:#e10600;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.featured-content{
    padding:30px;
}

.breaking{
    color:#e10600;
    font-weight:700;
}

.featured-content h2{
    margin:15px 0;
    font-size:38px;
    line-height:1.3;
}

.featured-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.read-btn{
    display:inline-block;
    background:#e10600;
    color:#fff;
    padding:14px 28px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.read-btn:hover{
    background:#111827;
    color:#fff;
}

.widget{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.widget h3{
    margin-bottom:20px;
}

.widget ul{
    padding:0;
}

.widget li{
    border-bottom:1px solid #eee;
    padding:14px 0;
}

.widget li:last-child{
    border:none;
}

.widget li a{
    color:#333;
    font-weight:500;
}

.widget li a:hover{
    color:#e10600;
}

.ad-box{
    height:250px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    border:2px dashed #ccc;
    color:#777;
}

/* =========================
   LATEST NEWS
========================= */

.latest-news{
    padding:60px 0;
}

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.section-title h2{
    font-size:34px;
    font-weight:700;
}

.section-title a{
    color:#e10600;
    font-weight:600;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-content{
    padding:20px;
}

.news-category{
    background:#e10600;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
}

.news-content h3{
    margin:15px 0;
    font-size:22px;
    line-height:1.4;
}

.news-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.news-content a{
    color:#e10600;
    font-weight:600;
}

.hero-section img{
    transition:.4s;
}

.hero-section img:hover{
    transform:scale(1.03);
}

.hero-section .card{
    border-radius:18px;
}

.hero-section h1{
    line-height:1.3;
}

.hero-section .badge{
    font-size:14px;
    padding:8px 15px;
}

.hero-section .btn{
    border-radius:30px;
    padding:12px 35px;
}

.news-card{
    transition:0.3s ease;
    border-radius:15px;
    overflow:hidden;
}

.news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.news-card img{
    transition:0.4s;
}

.news-card:hover img{
    transform:scale(1.05);
}

.news-card .badge{
    font-size:13px;
    padding:6px 12px;
}

.news-card h5{
    line-height:1.5;
    min-height:70px;
}

/* Breaking News */

.breaking-news{

background:#d60000;

color:#fff;

margin:40px 0;

}

.breaking-title{

background:#000;

padding:15px;

font-weight:bold;

text-align:center;

}

.ticker{

padding:15px;

font-size:16px;

font-weight:500;

}

.ticker a{

color:#fff;

text-decoration:none;

}

.ticker a:hover{

text-decoration:underline;

}

/* Navbar */

.navbar{

padding:15px 0;

}

.navbar-brand{

font-size:30px;

color:#d60000 !important;

}

.nav-link{

font-weight:600;

margin:0 8px;

position:relative;

}

.nav-link:hover{

color:#d60000 !important;

}

.nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-5px;

width:0;

height:2px;

background:#d60000;

transition:.3s;

}

.nav-link:hover::after{

width:100%;

}

.dropdown-menu{

border:none;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.dropdown-item:hover{

background:#d60000;

color:#fff;

}

.sticky-top{

z-index:9999;

}

body.dark{

background:#111;

color:#fff;

}

body.dark .card{

background:#222;

color:#000000;

}

body.dark .navbar{

background:#1a1a1a !important;

}

body.dark .dropdown-menu{

background:#222;

}

body.dark .dropdown-item{

color:#080707;

}


/* Hero Slider */

.hero-image{

height:650px;

object-fit:cover;

filter:brightness(60%);

}

.carousel-caption{

bottom:15%;

text-align:left;

left:8%;

right:8%;

}

.carousel-caption h1{

font-size:55px;

font-weight:700;

max-width:800px;

}

.carousel-caption p{

font-size:20px;

max-width:700px;

margin-top:20px;

margin-bottom:30px;

}

.carousel-caption .badge{

font-size:15px;

padding:10px 18px;

margin-bottom:20px;

}

.carousel-caption .btn{

padding:15px 40px;

font-size:18px;

border-radius:40px;

}

.carousel-control-next,

.carousel-control-prev{

width:70px;

}

.carousel-caption{
    bottom:15%;
    left:8%;
    right:8%;
    text-align:left;
    color:#000;
}

.carousel-caption h1{
    color:#000;
    font-weight:700;
}

.carousel-caption p{
    color:#333;
}

.carousel-caption .badge{
    background:#dc3545 !important;
}

.carousel-caption .btn{
    background:#dc3545;
    border:none;
}
.news-card{

transition:.35s;

border-radius:15px;

overflow:hidden;

}

.news-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.news-card img{

transition:.5s;

}

.news-card:hover img{

transform:scale(1.05);

}

.news-card h5{

font-weight:700;

min-height:65px;

}

.news-card p{

color:#666;

}

.news-card .btn{

border-radius:25px;

padding:8px 20px;

}

.article-content{

font-size:18px;

line-height:1.9;

color:#444;

}

.article-content img{

max-width:100%;

margin:20px 0;

border-radius:12px;

}

.article-content p{

margin-bottom:20px;

}

.article-content h2{

margin-top:40px;

font-weight:700;

}

.article-content h3{

margin-top:35px;

font-weight:700;

}

.article-content ul{

padding-left:20px;

}

.article-content blockquote{

border-left:5px solid red;

padding-left:20px;

font-style:italic;

margin:25px 0;

}


/*=============================
Breaking News
==============================*/

.breaking-news-bar{

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#111827;

    color:#fff;

    border-radius:6px;

}

.breaking-label{

    background:#dc3545;

    padding:10px 18px;

    font-weight:700;

    white-space:nowrap;

}

.breaking-wrapper{

    overflow:hidden;

    width:100%;

    position:relative;

}

.breaking-scroll{

    display:inline-block;

    white-space:nowrap;

    padding-left:100%;

    animation:breakingTicker 35s linear infinite;

}

.breaking-scroll:hover{

    animation-play-state:paused;

}

.breaking-scroll a{

    color:#fff;

    text-decoration:none;

    margin:0 20px;

    font-weight:500;

}

.breaking-scroll a:hover{

    color:#ffc107;

}

.separator{

    color:#ffc107;

    font-size:18px;

}

@keyframes breakingTicker{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-100%);

    }

}


/*============================
Social Share
============================*/

.share-box{

padding:25px;

background:#fff;

border-radius:12px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

margin-top:50px;

}

.share-buttons{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.share-buttons a,

.share-buttons button{

padding:12px 20px;

border:none;

border-radius:40px;

color:#fff;

text-decoration:none;

font-weight:600;

transition:.3s;

cursor:pointer;

}

.facebook{

background:#1877f2;

}

.twitter{

background:#000;

}

.whatsapp{

background:#25d366;

}

.telegram{

background:#229ED9;

}

.copy-link{

background:#6c757d;

}

.share-buttons a:hover,

.share-buttons button:hover{

transform:translateY(-3px);

opacity:.9;

}


/*==============================
SOCIAL SHARE
===============================*/

.share-box{

background:#fff;

padding:30px;

border-radius:12px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

margin-top:40px;

}

.share-buttons{

display:flex;

flex-wrap:wrap;

gap:15px;

}

.share-btn{

display:inline-flex;

align-items:center;

gap:8px;

padding:12px 22px;

border-radius:40px;

text-decoration:none;

font-weight:600;

color:#fff;

transition:.3s;

border:none;

cursor:pointer;

}

.share-btn:hover{

transform:translateY(-4px);

color:#fff;

}

.facebook{

background:#1877F2;

}

.twitter{

background:#000;

}

.whatsapp{

background:#25D366;

}

.telegram{

background:#229ED9;

}

.copy{

background:#6c757d;

}

/*=========================
CATEGORY PAGE
==========================*/

.category-banner{

background:linear-gradient(135deg,#dc3545,#ff6b6b);

padding:60px;

color:#fff;

border-radius:15px;

margin-bottom:40px;

text-align:center;

}

.category-banner h1{

font-size:42px;

font-weight:700;

margin-bottom:10px;

}

.category-banner p{

font-size:18px;

opacity:.9;

}

.news-card{

border:none;

border-radius:12px;

overflow:hidden;

transition:.3s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.news-card:hover{

transform:translateY(-8px);

}

.news-card img{

transition:.4s;

}

.news-card:hover img{

transform:scale(1.05);

}

.pagination .page-link{

color:#dc3545;

}

.pagination .active .page-link{

background:#dc3545;

border-color:#dc3545;

}

/*=========================
LIVE SEARCH
=========================*/

#searchResult{

position:absolute;

top:100%;

left:0;

width:100%;

background:#fff;

border-radius:10px;

box-shadow:0 10px 30px rgba(0,0,0,.15);

z-index:9999;

max-height:420px;

overflow-y:auto;

margin-top:5px;

}

.search-item{

display:flex;

gap:12px;

padding:12px;

text-decoration:none;

color:#222;

border-bottom:1px solid #eee;

transition:.3s;

}

.search-item:hover{

background:#f5f5f5;

color:#dc3545;

}

.search-item img{

width:80px;

height:60px;

object-fit:cover;

border-radius:8px;

}

.search-item h6{

margin:0;

font-size:15px;

font-weight:600;

}

.search-item small{

color:#777;

}

#searchResult{
    position:absolute;
    top:105%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:9999;
    overflow:hidden;
    display:none;
    max-height:450px;
    overflow-y:auto;
}

.search-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    text-decoration:none;
    color:#222;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.search-item:hover{
    background:#f8f9fa;
}

.search-item img{
    width:70px;
    height:55px;
    object-fit:cover;
    border-radius:6px;
}

.search-title{
    font-weight:600;
    font-size:15px;
}

.search-category{
    color:#dc3545;
    font-size:13px;
    margin-top:4px;
}
#floatingAd{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 -3px 15px rgba(0,0,0,.15);
    z-index:9999;
    padding:10px;
}

.floating-ad-box{
    max-width:728px;
    height:90px;
    margin:auto;
    border:1px dashed #bbb;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fafafa;
}

#closeFloatingAd{
    position:absolute;
    right:15px;
    top:8px;
    border:none;
    background:red;
    color:#fff;
    width:28px;
    height:28px;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
}

/* =====================================================
   HOMEPAGE FEATURED NEWS
   ===================================================== */

.featured-news-section {
    width: 100%;
    padding: 30px 0;
    background: #fff;
}

.featured-news-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 2fr 1fr;

    grid-template-rows: 230px 230px;

    gap: 20px;
}


/* =====================================================
   ALL FEATURED CARDS
   ===================================================== */

.featured-small-card,
.featured-main-card {
    position: relative;

    overflow: hidden;

    border-radius: 10px;

    background: #111;
}

.featured-small-card a,
.featured-main-card a {
    display: block;

    width: 100%;
    height: 100%;

    text-decoration: none;
}


/* =====================================================
   SMALL ARTICLES
   ===================================================== */

.featured-small-card {
    min-height: 230px;
}

.featured-small-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}

.featured-small-card:hover img {
    transform: scale(1.05);
}


/* =====================================================
   MAIN ARTICLE
   ===================================================== */

.featured-main-card {

    grid-column: 2;

    grid-row: 1 / 3;

    min-height: 480px;
}

.featured-main-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}

.featured-main-card:hover img {
    transform: scale(1.04);
}


/* =====================================================
   OVERLAY
   ===================================================== */

.featured-card-overlay,
.featured-main-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 20px;

    color: #fff;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.55),
        transparent
    );
}


/* =====================================================
   CATEGORY
   ===================================================== */

.featured-category {

    display: inline-block;

    padding: 7px 12px;

    margin-bottom: 8px;

    background: #ff2938;

    color: #fff;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 600;
}


/* =====================================================
   SMALL ARTICLE TITLE
   ===================================================== */

.featured-card-overlay h3 {

    margin: 5px 0;

    color: #fff;

    font-size: 18px;

    line-height: 1.25;

    font-weight: 700;
}


/* =====================================================
   MAIN ARTICLE TITLE
   ===================================================== */

.featured-main-overlay h1 {

    margin: 8px 0;

    color: #fff;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;
}


/* =====================================================
   DATE
   ===================================================== */

.featured-date {

    margin-top: 7px;

    color: #eee;

    font-size: 13px;
}


/* =====================================================
   ADVERTISEMENT
   ===================================================== */

.homepage-ad {

    width: 100%;

    padding: 20px 0 30px;

    text-align: center;
}

.ad-placeholder {

    width: 728px;

    max-width: 90%;

    height: 90px;

    margin: auto;

    border: 1px dashed #ccc;

    background: #fafafa;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    color: #777;

    gap: 5px;
}

.ad-placeholder strong {
    color: #333;

    font-size: 15px;
}

.ad-placeholder span {
    font-size: 13px;
}


/* =====================================================
   TABLET
   ===================================================== */

@media(max-width: 992px) {

    .featured-news-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 350px 220px 220px;
    }

    .featured-main-card {

        grid-column: 1 / 3;

        grid-row: 1;

        min-height: 350px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media(max-width: 768px) {

    .featured-news-section {

        padding: 20px 0;
    }

    .featured-news-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 15px;
    }

    .featured-main-card {

        grid-column: 1;

        grid-row: 1;

        min-height: 350px;
    }

    .featured-small-card {

        min-height: 220px;
    }

    .featured-small-card img {

        min-height: 220px;
    }

    .featured-main-overlay h1 {

        font-size: 23px;
    }

    .featured-card-overlay h3 {

        font-size: 17px;
    }

    .homepage-ad {

        padding: 15px 0;
    }

}

/* =========================================================
   FINAL EDITOR'S PICKS LAYOUT
   ========================================================= */

.featured-news-section {
    width: 100%;
    padding: 25px 0 35px;
    background: #fff;
}

.featured-news-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid !important;

    grid-template-columns: 1fr 2fr 1fr !important;
    grid-template-rows: 230px 230px !important;

    gap: 20px !important;
}


/* Small cards */

.featured-small-card {
    position: relative;
    width: 100%;
    height: 230px;

    overflow: hidden;

    border-radius: 10px;

    background: #111;
}


/* Main card */

.featured-main-card {
    position: relative;

    grid-column: 2 !important;
    grid-row: 1 / 3 !important;

    width: 100%;
    height: 480px;

    overflow: hidden;

    border-radius: 10px;

    background: #111;
}


/* Images */

.featured-small-card img,
.featured-main-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .3s ease;
}


/* Hover */

.featured-small-card:hover img,
.featured-main-card:hover img {
    transform: scale(1.04);
}


/* Overlay */

.featured-card-overlay,
.featured-main-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 20px;

    color: #fff;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.55),
        transparent
    );
}


/* Category */

.featured-category {

    display: inline-block;

    padding: 6px 10px;

    margin-bottom: 8px;

    background: #ed2939;

    color: #fff;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 600;
}


/* Small article title */

.featured-card-overlay h3 {

    margin: 5px 0;

    color: #fff;

    font-size: 18px;

    line-height: 1.25;

    font-weight: 700;
}


/* Main article title */

.featured-main-overlay h1 {

    margin: 8px 0;

    color: #fff;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;
}


/* Date */

.featured-date {

    color: #eee;

    font-size: 12px;

    margin-top: 7px;
}


/* =========================================================
   ADVERTISEMENT
   ========================================================= */

.homepage-ad {

    width: 100%;

    padding: 15px 0 25px;

    text-align: center;
}

.ad-placeholder {

    width: 728px;
    max-width: 90%;

    height: 90px;

    margin: 0 auto;

    border: 1px dashed #ccc;

    background: #fafafa;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    color: #777;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .featured-news-grid {

        grid-template-columns: 1fr 1fr !important;

        grid-template-rows: 350px 220px 220px !important;
    }

    .featured-main-card {

        grid-column: 1 / 3 !important;
        grid-row: 1 !important;

        height: 350px;
    }

    .featured-small-card {

        height: 220px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .featured-news-grid {

        display: grid !important;

        grid-template-columns: 1fr !important;

        grid-template-rows: auto !important;

        gap: 15px !important;
    }

    .featured-main-card {

        grid-column: 1 !important;
        grid-row: 1 !important;

        height: 350px;
    }

    .featured-small-card {

        height: 220px;
    }

    .featured-main-overlay h1 {

        font-size: 24px;
    }
}



/* =========================================================
   HOMEPAGE HERO - 3 COLUMN NEWS LAYOUT
   ========================================================= */

.homepage-hero {
    width: 100%;
    background: #fff;
    padding: 30px 0 40px;
}

.hero-news-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: stretch;
}


/* =========================================================
   COLUMN TITLES
   ========================================================= */

.hero-column-title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;
}

.hero-column-title span {
    width: 5px;
    height: 30px;

    background: #ed2939;

    display: block;
}

.hero-column-title h2 {
    margin: 0;

    font-size: 24px;
    font-weight: 700;

    color: #222;
}


/* =========================================================
   MAIN ARTICLE
   ========================================================= */

.hero-main-column {
    min-width: 0;
}

.hero-main-article {
    position: relative;

    width: 100%;
    height: 510px;

    overflow: hidden;

    border-radius: 8px;

    background: #111;
}

.hero-main-article a {
    display: block;

    width: 100%;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.hero-main-article img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}

.hero-main-article:hover img {
    transform: scale(1.04);
}


/* =========================================================
   MAIN ARTICLE OVERLAY
   ========================================================= */

.hero-main-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px 25px;

    color: #fff;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.65),
        transparent
    );
}

.hero-main-overlay h1 {
    margin: 10px 0;

    color: #fff;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 700;
}

.hero-main-overlay p {
    margin: 8px 0 18px;

    color: #eee;

    font-size: 15px;
    line-height: 1.5;
}

.hero-read-more {
    display: inline-block;

    padding: 9px 16px;

    background: #ed2939;

    border-radius: 5px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   SMALL NEWS ARTICLES
   ========================================================= */

.hero-small-news {
    margin-bottom: 18px;

    border-bottom: 1px solid #ddd;

    padding-bottom: 18px;
}

.hero-small-news:last-child {
    margin-bottom: 0;
}

.hero-small-news a {
    display: flex;

    gap: 12px;

    color: inherit;
    text-decoration: none;
}

.hero-small-news img {
    width: 125px;
    height: 95px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 6px;
}

.hero-small-content {
    min-width: 0;
}

.hero-category {
    display: inline-block;

    padding: 5px 8px;

    margin-bottom: 7px;

    background: #ed2939;

    border-radius: 4px;

    color: #fff;

    font-size: 11px;
    font-weight: 600;
}

.hero-small-content h3 {
    margin: 0 0 7px;

    color: #222;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 700;
}

.hero-small-content small {
    color: #777;

    font-size: 11px;
}

.hero-small-news:hover h3 {
    color: #ed2939;
}


/* =========================================================
   NO NEWS
   ========================================================= */

.hero-no-news,
.hero-no-breaking {
    padding: 20px;

    border: 1px solid #eee;

    color: #777;

    text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:992px) {

    .hero-news-layout {
        grid-template-columns: 1fr 1.5fr;
    }

    .hero-main-column {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .hero-side-column:last-child {
        grid-column: 1;
        grid-row: 2;
    }

    .hero-main-article {
        height: 500px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:768px) {

    .homepage-hero {
        padding: 20px 0 30px;
    }

    .hero-news-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-main-column {
        grid-column: auto;
        grid-row: auto;
    }

    .hero-side-column:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    .hero-main-article {
        height: 400px;
    }

    .hero-main-overlay h1 {
        font-size: 24px;
    }

    .hero-small-news img {
        width: 110px;
        height: 85px;
    }
}