* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f2f2f2;
    color: #222;
}

body a {
    text-decoration: none;
    color: black;
}

/* =========================================
   GTV NEWS - TOP BAR
   ========================================= */

.topbar {
    width: 100%;
    background: #1990be;
    color: #ffffff;
    height: 38px;
    display: flex;
    align-items: center;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.topbar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Side */
.topbar-news {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.topbar-label {
    font-weight: 800;
    letter-spacing: 1px;
}

.topbar-divider {
    opacity: 0.55;
}

/* LIVE dot */
.live-dot {
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;

    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 1;
    }
}


/* =========================================
   SOCIAL MEDIA
   ========================================= */

.topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-social a {
    color: #ffffff;
    text-decoration: none;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;

    transition: all 0.25s ease;
}

.topbar-social a:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}

@media (max-width: 768px) {

    .topbar {
        height: 34px;
    }

    .topbar-container {
        padding: 0 12px;
    }

    .topbar-news {
        font-size: 10px;
        gap: 6px;
    }

    /* Mobile-la Breaking News + Latest Updates hide */
    .topbar-news .topbar-divider,
    .topbar-news > span:not(.live-dot):not(.topbar-label) {
        display: none;
    }

    /* GTV NEWS mattum show */
    .topbar-news .topbar-label {
        display: inline-block;
        font-size: 10px;
        font-weight: 800;
    }

    .topbar-social {
        gap: 9px;
    }

    .topbar-social a {
        font-size: 12px;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {

    .topbar {
        height: 34px;
    }

    .topbar-container {
        padding: 0 12px;
    }

    .topbar-news {
        font-size: 10px;
        gap: 6px;
    }

    .mobile-hide {
        display: none !important;
    }

    .topbar-label {
        font-size: 10px;
    }

    .topbar-social {
        gap: 9px;
    }

    .topbar-social a {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}



/* =========================================================
   GTV NEWS - MAIN HEADER
   ========================================================= */

.top-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;

    position: sticky;
    top: 38px; /* topbar height */
    z-index: 1040;
}


/* =========================================================
   HEADER ROW
   ========================================================= */

.header-row {
    width: 100%;
    max-width: 1400px;
    min-height: 92px;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* =========================================================
   BRAND / LOGO
   ========================================================= */

.brand-box {
    flex: 0 0 auto;
}

.brand-link {
    display: flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.logo-box img {
    width: 70px;
    height: 70px;

    object-fit: contain;
    display: block;
}

.brand-name {
    color: #000000;

    font-size: 28px;
    font-weight: 800;

    letter-spacing: 1px;

    white-space: nowrap;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.brand-location {
    margin-top: 5px;

    color: #1990be;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;

    text-align: center;
    white-space: nowrap;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.menu-box {
    flex: 1 1 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 !important;
    margin: 0;
}

.menu-box .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    margin: 0;
}

.menu-box .nav-link {
    position: relative;

    color: #222222 !important;

    font-size: 16px;
    font-weight: 700;

    white-space: nowrap;

    padding: 10px 9px !important;

    transition: color 0.25s ease;
}


/* Navigation hover underline */

.menu-box .nav-link::after {
    content: "";

    position: absolute;

    left: 9px;
    right: 9px;
    bottom: 2px;

    height: 2px;

    background: #b40000;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.menu-box .nav-link:hover {
    color: #b40000 !important;
}

.menu-box .nav-link:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   DATE + TIME
   ========================================================= */

.header-datetime {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding-left: 18px;

    white-space: nowrap;
}

.today-date {
    margin: 0;

    color: #333333;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}


/* Vertical line between Date and Time */

.datetime-divider {
    display: inline-block;

    width: 1px;
    height: 18px;

    background: #cfcfcf;

    flex-shrink: 0;
}


/* Live time */

.live-time {
    display: flex;
    align-items: center;

    gap: 5px;

    color: #b40000;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.time-dot {
    width: 6px;
    height: 6px;

    background: #b40000;

    border-radius: 50%;

    display: inline-block;

    flex-shrink: 0;

    animation: timePulse 1.5s infinite;
}

@keyframes timePulse {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 1;
    }

}


/* =========================================================
   MOBILE TOGGLE
   ========================================================= */

.mobile-toggle {
    display: none;

    border: none !important;
    box-shadow: none !important;

    padding: 6px 8px;

    flex-shrink: 0;
}

.mobile-toggle:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none;
}

/* =========================================================
   MORE MENU
   ========================================================= */

.more-menu {
    position: relative;
}


/* ---------------------------------------------------------
   MORE LINK
   --------------------------------------------------------- */

.more-menu .more-link {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* Dropdown Arrow */

.more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
    font-weight: 600;

    margin-left: 3px;

    transition: transform 0.25s ease;
}


/* Rotate arrow when hovering More */

.more-menu:hover .more-icon {
    transform: rotate(180deg);
}


/* =========================================================
   MORE DROPDOWN
   ========================================================= */

.more-menu .more-dropdown {
    /* Hidden by default */
    display: none !important;

    position: absolute;

    /*
       Dropdown starts exactly below More.
       No unwanted gap.
    */
    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    margin: 0 !important;

    width: 430px;
    min-width: 430px;

    padding: 12px;

    /* 2 columns */
    grid-template-columns: 1fr 1fr;

    column-gap: 8px;
    row-gap: 6px;

    /* Background */
    background: #ffffff;

    /* Border */
    border: 1px solid #eeeeee;
    

    border-radius: 0 0 12px 12px;

    /* Shadow */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);

    /*
       Keep dropdown above other content
    */
    z-index: 9999;
}


/* =========================================================
   HOVER OPEN
   ========================================================= */

.more-menu:hover > .more-dropdown {
    display: grid !important;
}


/* =========================================================
   HOVER BRIDGE
   ========================================================= */

.more-menu::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 100%;

    height: 15px;

    background: transparent;

    z-index: 9998;
}


/* =========================================================
   DROPDOWN ITEMS
   ========================================================= */

.more-menu .more-dropdown li {
    list-style: none;
}


.more-menu .more-dropdown .dropdown-item {

    display: flex;
    align-items: center;

    min-height: 42px;

    padding: 9px 12px;

    border-radius: 7px;

    background: #fafafa;

    color: #222222;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   RED DOT
   ========================================================= */

.more-item-dot {

    width: 6px;
    height: 6px;

    margin-right: 9px;

    border-radius: 50%;

    background: #c40000;

    flex-shrink: 0;
}


/* =========================================================
   ITEM HOVER
   ========================================================= */

.more-menu .more-dropdown .dropdown-item:hover {

    background: #c40000;

    color: #ffffff;

    transform: translateX(3px);
}


/* White dot on hover */

.more-menu
.more-dropdown
.dropdown-item:hover
.more-item-dot {

    background: #ffffff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    /*
       Mobile-ல் Bootstrap click/touch
       dropdown behaviour maintain ஆகும்.
    */

    .more-menu .more-dropdown {

        position: static;

        transform: none;

        width: 100%;
        min-width: 100%;

        margin: 0 !important;

        padding: 8px;

        grid-template-columns: 1fr 1fr;

        column-gap: 6px;
        row-gap: 5px;

        border-top: 3px solid #c40000;

        border-radius: 0 0 10px 10px;

        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }


    /* Mobile item */

    .more-menu .more-dropdown .dropdown-item {

        min-height: 38px;

        padding: 7px 8px;

        font-size: 13px;
    }


    /* Mobile dot */

    .more-item-dot {

        width: 5px;
        height: 5px;

        margin-right: 7px;
    }


    /*
       Desktop hover bridge mobile-ல் தேவையில்லை
    */

    .more-menu::after {
        display: none;
    }

}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .header-row {
        padding: 0 25px;
        gap: 18px;
    }

    .logo-box img {
        width: 65px;
        height: 65px;
    }

    .brand-name {
        font-size: 23px;
    }

    .menu-box .nav-link {
        font-size: 13px;
        padding: 9px 6px !important;
    }

    .header-datetime {
        gap: 7px;
        padding-left: 12px;
    }

    .today-date,
    .live-time {
        font-size: 12px;
    }

}


/* =========================================================
   MOBILE / TABLET NAVIGATION
   ========================================================= */

@media (max-width: 991px) {

    .top-header {
        padding: 0;
    }

    .header-row {
        width: 100%;

        min-height: 76px;

        padding: 7px 15px 8px;

        display: flex;
        align-items: center;

        flex-wrap: wrap;

        gap: 0;
    }


    /* -----------------------------------------
       BRAND
       ----------------------------------------- */

    .brand-box {
        order: 1;

        flex: 0 0 auto;
    }

    .brand-link {
        gap: 8px;
    }

    .logo-box img {
        margin-left: 40px;
        width: 55px;
        height: 55px;
    }

    .brand-name {
        font-size: 20px;
        letter-spacing: 0.5px;
    }


    /* -----------------------------------------
       DATE + TIME
       Left side of toggle
       ----------------------------------------- */

    .header-datetime {
        order: 2;

        margin-left: auto;

        padding-left: 0;

        border-left: none;

        display: flex;
        align-items: center;

        gap: 6px;

        white-space: nowrap;
    }

    .today-date {
        font-size: 9px;
        font-weight: 700;
    }

    .datetime-divider {
        width: 1px;
        height: 13px;

        background: #bdbdbd;
    }

    .live-time {
        font-size: 9px;
        font-weight: 700;

        gap: 4px;
    }

    .time-dot {
        width: 5px;
        height: 5px;
    }


    /* -----------------------------------------
       HAMBURGER
       ----------------------------------------- */

    .mobile-toggle {
        order: 3;

        display: block !important;

        margin-left: 10px;

        padding: 5px 6px;
    }


    /* -----------------------------------------
       NAVIGATION
       ----------------------------------------- */

    .menu-box {
        order: 4;

        width: 100%;

        flex: 0 0 100%;

        display: block;

        margin-top: 7px;
    }

    .menu-box .navbar-collapse {
        width: 100%;
    }

    .menu-box .navbar-nav {
        width: 100%;

        margin: 0;
        padding: 5px 0;

        display: flex;
        flex-direction: column;

        align-items: stretch;
    }

    .menu-box .nav-item {
        width: 100%;
    }

    .menu-box .nav-link {
        width: 100%;

        padding: 11px 12px !important;

        font-size: 14px;

        text-align: left;

        border-bottom: 1px solid #eeeeee;
    }

    .menu-box .nav-link::after {
        display: none;
    }

    .menu-box .nav-link:hover {
        background: #fafafa;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .header-row {
        min-height: 70px;

        padding: 6px 10px 7px;
    }


    /* Logo */

    .logo-box img {
        margin-left: 10px;
        width: 50px;
        height: 50px;
    }

    .brand-link {
        gap: 6px;
    }

    .brand-name {
        font-size: 18px;
        letter-spacing: 0.3px;
    }


    /* Date + Time */

    .header-datetime {
        margin-left: auto;
        
        gap: 4px;
    }

    .today-date {
        font-size: 8px;
    }

    .datetime-divider {
        height: 11px;
    }

    .live-time {
        font-size: 8px;

        gap: 3px;
    }

    .time-dot {
        width: 4px;
        height: 4px;
    }


    /* Toggle */

    .mobile-toggle {
        margin-left: 7px;

        padding: 4px 5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .header-row {
        padding-left: 7px;
        padding-right: 7px;
    }

    .logo-box img {
        width: 45px;
        height: 45px;
    }

    .brand-name {
        font-size: 21px;
    }

    .header-datetime {
        gap: 3px;
    }

    .today-date,
    .live-time {
        font-size: 7px;
    }

    .mobile-toggle {
        margin-left: 5px;
    }

}

@media (max-width: 991px) {

    /* Date + Time block */
    .header-datetime {
        order: 2 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;

        flex: 0 0 auto !important;
        width: auto !important;
        min-width: max-content !important;

        margin-left: auto !important;
        margin-right: 12px !important;

        padding: 0 !important;
        gap: 2px !important;

        white-space: nowrap !important;
    }

    /* Date - first line */
    .today-date {
        display: block !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        line-height: 1.2 !important;

        margin: 0 !important;
        white-space: nowrap !important;
    }

    /* Hide vertical line */
    .datetime-divider {
        display: none !important;
    }

    /* Time - second line */
    .live-time {
        display: flex !important;
        align-items: center !important;

        font-size: 13px !important;
        font-weight: 700 !important;

        line-height: 1.2 !important;

        gap: 4px !important;

        margin: 0 !important;
        white-space: nowrap !important;

        color: #b40000 !important;
    }

    /* Toggle - right */
    .mobile-toggle {
        order: 3 !important;

        display: block !important;

        flex: 0 0 auto !important;

        margin: 0 !important;
        padding: 5px 6px !important;
    }
}


/* Small mobile */
@media (max-width: 480px) {

    .header-datetime {
        margin-right: 8px !important;
        gap: 2px !important;
    }

    .today-date,
    .live-time {
        font-size: 10px !important;
    }

}


/* Very small mobile */
@media (max-width: 360px) {

    .header-datetime {
        margin-right: 5px !important;
    }

    .today-date,
    .live-time {
        font-size: 7px !important;
    }

}

/* MAIN CONTAINER */
.container {
    max-width: 1400px !important;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    column-gap: 28px;
    align-items: start;
}

.small-chip-slider {
    width:100%;
    max-width:1400px;   
    margin: 0 auto;      /* center container */
    padding:12px 20px;
    overflow:hidden;
    background: linear-gradient(135deg, #8B0000, #B20808, #D32F2F);
    margin-top: 20px;
    
}

.swiper-slide{
    height: auto;
    padding: 20px;
}

.chip-card{
    display: flex;
    align-items: center;
    width: 100%;
    height: 78px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.chip-card img{
    width:76px;
    height:56px;
    border-radius:8px;
    object-fit:cover;
    margin-right:10px;
}

.chip-card span{
    flex:1;
    text-align:center;
    font-size:18px;
    font-weight:600;
}

.slider-ad {
    max-width: 1200px;
    margin: 10px auto 25px;
    text-align: center;
}

.slider-ad img {
    width: 100%;
    height: 130px;          
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .slider-ad img {
        height: 70px;
    }
}


.ad-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
    text-align: center;
}


/* =========================================================
   NEWS PAGE - MAIN 3 COLUMN LAYOUT
   ========================================================= */

.news-page-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}


/* =========================================================
   COLUMN COMMON
   ========================================================= */

.breaking-news-section,
.main-news-column,
.right-column {
    width: 100%;
    min-width: 0;
}


/* =========================================================
   SECTION TITLES
   ========================================================= */

.breaking-section-title,
.quick-updates .section-title {
    position: relative;

    margin: 0 0 18px;
    padding-bottom: 10px;

    color: #111;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;

    border-bottom: 1px solid #e5e5e5;
}


.breaking-section-title::after,
.quick-updates .section-title::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -1px;

    width: 62px;
    height: 3px;

    background: #c40000;
    border-radius: 3px;
}


/* =========================================================
   ================= BREAKING NEWS =========================
   ========================================================= */

.breaking-news-list {
    width: 100%;
}


.breaking-news-card {
    display: flex;
    align-items: stretch;

    width: 100%;

    min-height: 120px;

    padding: 13px 0;

    gap: 12px;

    border-bottom: 1px solid #e7e7e7;

    box-sizing: border-box;
}


.breaking-news-card:last-child {
    border-bottom: none;
}


/* ---------------- TEXT ---------------- */

.breaking-news-content {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* ---------------- CATEGORY ---------------- */

.breaking-category {
    display: inline-block;
    width: fit-content;

    margin-bottom: 5px;

    color: #c40000;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .3px;
    text-decoration: none;
}


.breaking-category:hover {
    color: #900000;
}


/* ---------------- TITLE ---------------- */

.breaking-title-link {
    display: block;

    color: #111;
    text-decoration: none;
}


.breaking-news-title {
    margin: 0;

    color: #111;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    overflow: hidden;
    text-overflow: ellipsis;
}


.breaking-title-link:hover .breaking-news-title {
    color: #c40000;
}


/* ---------------- META ---------------- */

.breaking-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin-top: auto;
    padding-top: 9px;
}


.breaking-time {
    color: #888;

    font-size: 10px;

    white-space: nowrap;
}


/* ---------------- ACTIONS ---------------- */

.breaking-actions {
    display: flex;
    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}


.breaking-action {
    display: inline-flex;
    align-items: center;

    gap: 3px;

    color: #777;

    font-size: 10px;

    text-decoration: none;
    white-space: nowrap;
}


.breaking-action i {
    font-size: 14px;
}


.breaking-share {
    cursor: pointer;
}


.breaking-share:hover {
    color: #c40000;
}


/* ---------------- IMAGE ---------------- */

.breaking-news-image {
    width: 115px;
    height: 95px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 7px;

    background: #f2f2f2;
}


.breaking-news-image a {
    display: block;

    width: 100%;
    height: 100%;
}


.breaking-news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .25s ease;
}


.breaking-news-image:hover img {
    transform: scale(1.04);
}


/* ---------------- EMPTY ---------------- */

.no-breaking-news {
    margin: 20px 0;

    color: #777;
    font-size: 14px;
}


/* =========================================================
   ================= MAIN NEWS COLUMN ======================
   ========================================================= */

.main-news-column {
    width: 100%;
}


/* =========================================================
   FEATURED / BIG NEWS
   ========================================================= */

.featured-news-card {
    width: 100%;
    margin-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 18px;

    border-bottom: 1px solid #e5e5e5;
}


/* ---------------- FEATURED TITLE ---------------- */

.featured-title-link {
    display: block;

    color: #111;
    text-decoration: none;
}


.featured-news-title {
    margin: 0 0 13px;
    
    color: #111;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -.5px;
}


.featured-title-link:hover .featured-news-title {
    color: #c40000;
}


/* ---------------- FEATURED MEDIA ---------------- */

.featured-media {
    display: block;

    width: 100%;

    overflow: hidden;

    border-radius: 8px;

    background: #f2f2f2;
}


.featured-media img,
.featured-media video {
    display: block;

    width: 100%;
    height: 360px;

    object-fit: cover;

    border: 0;
}


.featured-media img {
    transition: transform .3s ease;
}


.featured-media:hover img {
    transform: scale(1.02);
}


/* ---------------- FEATURED DESCRIPTION ---------------- */

.featured-description {
    display: block;

    margin-top: 12px;

    color: #333;

    text-decoration: none;
}


.featured-description p {
    margin: 0;

    color: #333;

    font-size: 15px;
    line-height: 1.55;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;
}


/* =========================================================
   MAIN NEWS - OTHER ARTICLES
   ========================================================= */

.main-news-list {
    width: 100%;
}


.main-list-card {
    display: flex;
    align-items: stretch;

    width: 100%;

    min-height: 145px;

    padding: 14px 0;

    gap: 14px;

    border-bottom: 1px solid #e5e5e5;

    box-sizing: border-box;
}


.main-list-card:last-child {
    border-bottom: none;
}


/* ---------------- TEXT ---------------- */

.main-list-content {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* ---------------- CATEGORY ---------------- */

.main-list-category {
    display: inline-block;
    width: fit-content;

    margin-bottom: 5px;

    color: #c40000;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .3px;

    text-decoration: none;
}


.main-list-category:hover {
    color: #900000;
}


/* ---------------- TITLE ---------------- */

.main-list-title-link {
    display: block;

    color: #111;
    text-decoration: none;
}


.main-list-title {
    margin: 0;

    color: #111;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.3;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;

    overflow: hidden;
    text-overflow: ellipsis;
}


.main-list-title-link:hover .main-list-title {
    color: #c40000;
}


/* ---------------- META ---------------- */

.main-list-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin-top: auto;
    padding-top: 9px;
}


.main-list-time {
    color: #888;

    font-size: 10px;

    white-space: nowrap;
}


.main-list-actions {
    display: flex;
    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}


.main-list-action {
    display: inline-flex;
    align-items: center;

    gap: 3px;

    color: #777;

    font-size: 10px;

    text-decoration: none;
    white-space: nowrap;
}


.main-list-action i {
    font-size: 14px;
}


.main-list-share {
    cursor: pointer;
}


.main-list-share:hover {
    color: #c40000;
}


/* ---------------- IMAGE ---------------- */

.main-list-image {
    width: 145px;
    height: 115px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 8px;

    background: #f2f2f2;
}


.main-list-image a {
    display: block;

    width: 100%;
    height: 100%;
}


.main-list-image img,
.main-list-image video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border: 0;
}


.main-list-image img {
    transition: transform .25s ease;
}


.main-list-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   ================= RIGHT COLUMN ==========================
   ========================================================= */

.right-column {
    width: 100%;
}


/* =========================================================
   ADVERTISEMENT
   ========================================================= */

.side-ad {
    width: 100%;

    margin: 0 0 24px;
}


.ad-label {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 11px;

    text-align: center;
}


.side-ad a {
    display: block;
}


.side-ad img {
    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 11px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .12);
}


/* =========================================================
   QUICK UPDATES
   ========================================================= */

.quick-updates {
    width: 100%;
    margin-top: 0;
}


.quick-updates .section-title {
    font-size: 20px;

    margin-bottom: 16px;
}


/* =========================================================
   QUICK NEWS CARD
   ========================================================= */

.quick-news-card {
    display: flex;
    align-items: stretch;
    justify-content: space-between;

    width: 100%;

    min-height: 90px;

    padding: 12px 0;

    gap: 10px;

    border-bottom: 1px solid #e7e7e7;
}


.quick-news-card:last-child {
    border-bottom: none;
}


/* ---------------- TEXT ---------------- */

.quick-news-content {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* ---------------- CATEGORY ---------------- */

.quick-category-link {
    display: inline-block;

    width: fit-content;

    text-decoration: none;
}


.quick-category {
    display: block;

    margin-bottom: 4px;

    color: #c40000;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .3px;
}


/* ---------------- TITLE ---------------- */

.quick-news-title {
    margin: 0;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.35;
}


.quick-news-title a {
    display: -webkit-box;

    color: #111;

    text-decoration: none;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    overflow: hidden;
    text-overflow: ellipsis;
}


.quick-news-title a:hover {
    color: #c40000;
}


/* ---------------- META ---------------- */

.quick-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 5px;

    margin-top: auto;
    padding-top: 7px;
}


.quick-news-time {
    color: #888;

    font-size: 9px;

    white-space: nowrap;
}


.quick-news-actions {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #777;

    font-size: 9px;

    white-space: nowrap;
}


.quick-news-actions span {
    display: inline-flex;
    align-items: center;

    gap: 2px;
}


.quick-news-actions i {
    color: #555;

    font-size: 13px;
}


.quick-share {
    cursor: pointer;
}


.quick-share:hover {
    color: #c40000;
}


.quick-share:hover i {
    color: #c40000;
}


/* ---------------- IMAGE ---------------- */

.quick-news-image {
    width: 82px;
    height: 72px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 8px;

    background: #f2f2f2;
}


.quick-news-image a {
    display: block;

    width: 100%;
    height: 100%;
}


.quick-news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 8px;

    transition: transform .25s ease;
}


.quick-news-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   TABLET - 992px TO 1199px
   ========================================================= */

@media (max-width: 1199px) {

    .news-page-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, .9fr);

        gap: 20px;
    }


    .featured-news-title {
        font-size: 27px;
    }


    .featured-media img,
    .featured-media video {
        height: 320px;
    }


    .breaking-news-image {
        width: 105px;
        height: 90px;
    }


    .main-list-image {
        width: 130px;
        height: 105px;
    }


    .main-list-title {
        font-size: 16px;
    }


    .side-ad img {
        height: 430px;
    }

}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {

    /*
       IMPORTANT:
       Mobile/tablet order:

       1. MAIN NEWS
       2. BREAKING NEWS
       3. AD + QUICK UPDATES
    */

    .news-page-container {
        display: flex;
        flex-direction: column;

        gap: 28px;
    }


    .main-news-column {
        order: 1;
    }


    .breaking-news-section {
        order: 2;
    }


    .right-column {
        order: 3;
    }


    /* Featured */

    .featured-news-title {
        font-size: 28px;
    }


    .featured-media img,
    .featured-media video {
        height: 320px;
    }


    /* Breaking */

    .breaking-news-title {
        font-size: 16px;
    }


    /* Main list */

    .main-list-title {
        font-size: 17px;
    }


    /* Ad */

    .side-ad img {
        height: 420px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .news-page-container {
        gap: 24px;
    }


    /* =====================================================
       MAIN NEWS - FIRST
       ===================================================== */

    .main-news-column {
        order: 1;
    }


    .featured-news-card {
        padding-bottom: 16px;
        margin-bottom: 14px;
    }


    .featured-news-title {
        margin-bottom: 10px;

        font-size: 24px;
        font-weight: 800;

        line-height: 1.22;

        letter-spacing: -.2px;
    }


    .featured-media {
        border-radius: 8px;
    }


    .featured-media img,
    .featured-media video {
        height: 235px;
    }


    .featured-description {
        margin-top: 9px;
    }


    .featured-description p {
        font-size: 14px;
        line-height: 1.5;

        -webkit-line-clamp: 2;
    }


    /* =====================================================
       OTHER MAIN NEWS
       ===================================================== */

    .main-list-card {
        min-height: 105px;

        padding: 12px 0;

        gap: 10px;
    }


    .main-list-category {
        margin-bottom: 3px;

        font-size: 10px;
    }


    .main-list-title {
        font-size: 15px;
        line-height: 1.3;

        -webkit-line-clamp: 4;
    }


    .main-list-image {
        width: 105px;
        height: 88px;

        border-radius: 7px;
    }


    .main-list-meta {
        padding-top: 6px;
        gap: 5px;
    }


    .main-list-time {
        font-size: 9px;
    }


    .main-list-actions {
        gap: 7px;
    }


    .main-list-action {
        font-size: 9px;
        gap: 2px;
    }


    .main-list-action i {
        font-size: 13px;
    }


    /* =====================================================
       BREAKING NEWS - SECOND
       ===================================================== */

    .breaking-news-section {
        order: 2;
    }


    .breaking-section-title {
        font-size: 20px;

        margin-bottom: 12px;
    }


    .breaking-news-card {
        min-height: 100px;

        padding: 11px 0;

        gap: 9px;
    }


    .breaking-category {
        margin-bottom: 3px;

        font-size: 10px;
    }


    .breaking-news-title {
        font-size: 15px;
        line-height: 1.3;

        -webkit-line-clamp: 3;
    }


    .breaking-news-image {
        width: 105px;
        height: 88px;

        border-radius: 7px;
    }


    .breaking-news-meta {
        padding-top: 6px;
        gap: 5px;
    }


    .breaking-time {
        font-size: 9px;
    }


    .breaking-actions {
        gap: 7px;
    }


    .breaking-action {
        font-size: 9px;
        gap: 2px;
    }


    .breaking-action i {
        font-size: 13px;
    }


    /* =====================================================
       RIGHT COLUMN - THIRD
       ===================================================== */

    .right-column {
        order: 3;
    }


    /* Advertisement */

    .side-ad {
        margin-bottom: 20px;
    }


    .side-ad img {
        height: 300px;

        border-radius: 9px;
    }


    /* Quick Updates */

    .quick-updates {
        margin-top: 0;
    }


    .quick-updates .section-title {
        font-size: 19px;

        margin-bottom: 13px;
    }


    .quick-news-card {
        min-height: 88px;

        padding: 10px 0;

        gap: 9px;
    }


    .quick-category {
        font-size: 9px;

        margin-bottom: 3px;
    }


    .quick-news-title {
        font-size: 14px;

        line-height: 1.35;
    }


    .quick-news-meta {
        padding-top: 6px;
    }


    .quick-news-time {
        font-size: 8px;
    }


    .quick-news-actions {
        gap: 5px;

        font-size: 8px;
    }


    .quick-news-actions i {
        font-size: 11px;
    }


    .quick-news-image {
        width: 82px;
        height: 70px;

        border-radius: 7px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .featured-news-title {
        font-size: 21px;
    }


    .featured-media img,
    .featured-media video {
        height: 210px;
    }


    .breaking-news-image {
        width: 92px;
        height: 80px;
    }


    .breaking-news-title {
        font-size: 14px;
    }


    .main-list-image {
        width: 92px;
        height: 80px;
    }


    .main-list-title {
        font-size: 14px;
    }


    .quick-news-image {
        width: 75px;
        height: 65px;
    }

}

/* =========================================
   MIDDLE ADVERTISEMENT
   ========================================= */

.bottom-ad {
    width: 100%;
    max-width: 1300px;

    margin: 30px auto;
    padding: 0 10px;

    text-align: center;
    box-sizing: border-box;
}


/* Advertisement label */

.bottom-ad .ad-label {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;
    font-weight: 400;

    color: #999;

    text-align: center;
}


/* Ad link */

.bottom-ad a {
    display: block;

    width: 100%;

    text-decoration: none;
}


/* Ad image */

.bottom-ad img {
    display: block;

    width: 100%;
    max-width: 1300px;

    height: 130px;

    object-fit: cover;

    margin: 0 auto;

    border-radius: 8px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}


/* Hover */

.bottom-ad a:hover img {
    transform: translateY(-1px);

    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .bottom-ad {
        margin: 25px auto;
        padding: 0 10px;
    }

    .bottom-ad img {
        height: 110px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .bottom-ad {
        margin: 20px auto;
        padding: 0 8px;
    }

    .bottom-ad .ad-label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .bottom-ad img {
        width: 100%;
        height: 70px;

        border-radius: 6px;
    }

}

.site-footer{
    background:#B20808;
    color:white;
    margin-top:50px;
    padding-top:40px;
}

/* =========================================================
   GTV NEWS - PROFESSIONAL FOOTER
========================================================= */

.news-footer {
    width: 100%;
    margin-top: 60px;

    background: #11151a;
    color: #ffffff;
}


/* =========================================================
   FOOTER MAIN CONTAINER
========================================================= */

.news-footer-container {

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 55px 30px 45px;

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.35fr;

    column-gap: 55px;

    box-sizing: border-box;
}


/* =========================================================
   BRAND COLUMN
========================================================= */

.news-footer-brand {
    min-width: 0;
}


/* Logo */

.footer-logo-link {
    display: inline-block;

    margin-bottom: 18px;

    text-decoration: none;
}


.footer-logo {
    display: block;

    width: 85px;
    max-width: 100%;
    height: auto;

    object-fit: contain;
}


/* Description */

.footer-description {

    max-width: 390px;

    margin: 0;

    color: white;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;

    text-align: left;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-heading {

    position: relative;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.3;

    text-align: left;
}


/* Small red line */

.footer-heading-line {

    display: block;

    width: 42px;
    height: 3px;

    margin-bottom: 20px;

    background: #c40000;

    border-radius: 3px;
}


/* =========================================================
   FOOTER MENU
========================================================= */

.footer-menu {

    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-menu li {

    margin: 0 0 11px;

    padding: 0;
}


.footer-menu li a {

    position: relative;

    display: inline-block;

    padding-left: 0;

    color: white;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.footer-menu li a::before {

    content: "›";

    position: absolute;

    left: -12px;

    opacity: 0;

    color: #c40000;

    font-size: 17px;

    transition: opacity 0.2s ease;
}


.footer-menu li a:hover {

    padding-left: 12px;

    color: #ffffff;
}


.footer-menu li a:hover::before {

    opacity: 1;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 24px;
}


.footer-social a {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid #353b42;

    border-radius: 50%;

    background: #191e24;

    color: #ffffff;

    font-size: 19px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.footer-social a:hover {

    background: #c40000;

    border-color: #c40000;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 16px;
}


.footer-contact-item > i {

    flex-shrink: 0;

    margin-top: 2px;

    color: #c40000;

    font-size: 19px;
}


/* Contact text */

.footer-contact-item p {

    margin: 0;

    color: white;

    font-size: 13px;

    line-height: 1.7;

    text-align: left;
}


/* Contact links */

.footer-contact-item a {

    color: white;

    font-size: 13px;

    line-height: 1.7;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-contact-item a:hover {

    color: #ffffff;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.news-footer-bottom {

    width: 100%;

    border-top: 1px solid #2b3036;

    background: #11151a;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.news-footer-bottom {
    width: 100%;

    background: #0d1014;

    border-top: 1px solid #2b3036;
}


/* Bottom content */

.footer-bottom-inner {

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 16px 20px 18px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 6px;

    box-sizing: border-box;
}


/* Copyright */

.footer-copyright {

    margin: 0;

    color:white;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;

    text-align: center;
}


/* Designed by */

.footer-designed {

    margin: 0;

    color: white;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;

    text-align: center;
}


/* Company name */

.footer-designed span a{

    color:#c40000;
    text-decoration: none;
    font-weight: 600;

    transition: color 0.2s ease;
}


.footer-designed span a:hover {

    color: white;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-bottom-inner {

        padding: 14px 15px 16px;

        gap: 5px;
    }


    .footer-copyright,
    .footer-designed {

        font-size: 11px;

        text-align: center;
    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .news-footer-container {

        grid-template-columns:
            1.4fr
            1fr
            1fr;

        gap: 40px;
    }


    .news-footer-brand {

        grid-column: 1 / -1;
    }


    .footer-description {

        max-width: 650px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .news-footer-container {

        grid-template-columns: 1fr 1fr;

        column-gap: 35px;
        row-gap: 40px;

        padding: 45px 25px 35px;
    }


    .news-footer-brand {

        grid-column: 1 / -1;
    }


    .footer-description {

        max-width: 600px;
    }


    .footer-bottom-inner {

        padding: 16px 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .news-footer {

        margin-top: 40px;

        border-top-width: 3px;
    }


    .news-footer-container {

        display: grid;

        grid-template-columns: 1fr;

        gap: 32px;

        padding: 38px 20px 30px;
    }


    .news-footer-brand {

        grid-column: auto;

        text-align: left;
    }


    .footer-logo {

        width: 165px;
    }


    .footer-description {

        max-width: 100%;

        font-size: 13px;

        line-height: 1.7;
    }


    .footer-heading {

        font-size: 16px;
    }


    .footer-menu li {

        margin-bottom: 10px;
    }


    .footer-menu li a {

        font-size: 13px;
    }


    .footer-contact-item {

        margin-bottom: 14px;
    }


    .footer-contact-item p,
    .footer-contact-item a {

        font-size: 13px;
    }


    .footer-social {

        margin-top: 20px;
    }


    .footer-social a {

        width: 34px;
        height: 34px;

        font-size: 18px;
    }


    /* Bottom section */

    .footer-bottom-inner {

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 6px;

        padding: 15px 20px;
    }


    .footer-copyright,
    .footer-designed {

        width: 100%;

        font-size: 11px;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .news-footer-container {

        padding-left: 16px;
        padding-right: 16px;
    }


    .footer-logo {

        width: 150px;
    }


    .footer-description {

        font-size: 12px;
    }


    .footer-social a {

        width: 32px;
        height: 32px;

        font-size: 17px;
    }

}

/* =========================================================
   GTV NEWS - PROFESSIONAL NEWS DETAIL
========================================================= */

.news-detail-page {
    width: 100%;
    background: white;
    padding: 35px 20px 70px;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.news-detail-layout {
    max-width: 1350px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);

    gap: 30px;
    align-items: start;
}


/* =========================================================
   ARTICLE
========================================================= */

.news-article {
    background: #ffffff;
    /* border: 1px solid #e5e7eb; */
    border-radius: 6px;
    overflow: hidden;
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.article-header {
    padding: 28px 32px 24px;
}


.article-category-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}


.article-category {
    display: inline-flex;
    align-items: center;

    background: #b40000;
    color: #ffffff;

    padding: 6px 12px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;

    text-decoration: none;
    border-radius: 2px;
}


.article-category:hover {
    color: #ffffff;
    background: #8f0000;
}


.article-date {
    color: #777;
    font-size: 13px;
}


.article-title {
    margin: 0;

    color: #111827;

    font-size: 25px;
    line-height: 1.40;

    font-weight: 800;
    letter-spacing: -0.5px;
}


/* =========================================
   ARTICLE META
========================================= */

.article-meta {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 18px;

    color: #777;
    font-size: 13px;
}


/* =========================================
   LEFT SIDE - TIME
========================================= */

.article-meta-left {
    display: flex;
    align-items: center;
}


.article-meta-left .article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* =========================================
   RIGHT SIDE - LIKE / VIEW / SHARE
========================================= */

.article-meta-right {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* =========================================
   COMMON META ITEM
========================================= */

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #666;

    font-size: 13px;
    white-space: nowrap;
}


.article-meta-item i {
    font-size: 17px;
    color: #b40000;
}


/* =========================================
   LIKE BUTTON
========================================= */

.article-like-btn {
    border: none;
    background: transparent;

    padding: 0;

    cursor: pointer;
}


.article-like-btn:hover {
    color: #b40000;
}


.article-like-btn:hover i {
    transform: scale(1.1);
}


/* LIKE ACTIVE */

.article-like-btn .liked {
    color: #b40000;
}


/* =========================================
   SHARE BUTTON
========================================= */

.article-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    height: 34px;

    padding: 0 14px;

    border: 1px solid #d8d8d8;
    border-radius: 4px;

    background: #ffffff;
    color: #333333;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}


.article-share-btn i {
    font-size: 17px;
    color: #b40000;

    transition: color 0.2s ease;
}


.article-share-btn:hover {
    background: #b40000;
    border-color: #b40000;
    color: #ffffff;
}


.article-share-btn:hover i {
    color: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .article-meta {
        display: flex;
        align-items: center;
        gap: 8px;

        width: 100%;
        margin-top: 14px;

        flex-wrap: nowrap;
        white-space: nowrap;

        overflow-x: auto;
        scrollbar-width: none;
    }

    .article-meta::-webkit-scrollbar {
        display: none;
    }

    .article-meta-item {
        flex: 0 0 auto;

        display: inline-flex;
        align-items: center;
        gap: 3px;

        font-size: 11px;
        color: #777;
        white-space: nowrap;
    }

    .article-meta-item i {
        font-size: 14px;
        color: #b40000;
    }

    .article-like-btn {
        border: 0;
        background: transparent;
        padding: 0;
        margin: 0;
        color: #777;
    }

    .article-share-btn {
        height: 30px;
        padding: 0 9px;

        display: inline-flex;
        align-items: center;
        gap: 4px;

        border: 1px solid #ddd;
        border-radius: 4px;

        background: #fff;
        color: #333;

        font-size: 11px;
        white-space: nowrap;
    }

    .article-share-btn i {
        font-size: 14px;
    }

}
/* =========================================================
   ARTICLE MEDIA
========================================================= */

.article-media {
    width: 100%;
    background: #111;
}


.article-media img,
.article-media video {
    width: 100%;
    display: block;

    max-height: 650px;

    object-fit: cover;
}


.article-media video {
    background: #000;
}


/* =========================================================
   ARTICLE BODY
========================================================= */

.article-body {
    padding: 30px 32px;

    color: #292929;

    font-size: 17px;
    line-height: 1.85;

    font-weight: 400;
}


.article-body p {
    margin: 0 0 18px;
}


.article-body p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
}


.section-heading > span {
    width: 4px;
    height: 25px;

    background: #b40000;

    display: block;
}


.section-heading h2 {
    margin: 0;

    font-size: 21px;
    font-weight: 800;

    color: #151515;
}


/* =========================================================
   RELATED SECTION
========================================================= */

.related-section {
    padding: 30px 32px 35px;
}


.related-card {
    display: grid;
    grid-template-columns: 1fr 190px;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid #eeeeee;
}


.related-card:first-of-type {
    padding-top: 5px;
}


.related-content {
    min-width: 0;
}


.related-category,
.quick-category {
    color: #b40000;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .7px;

    text-decoration: none;
}


.related-content h3 {
    margin: 7px 0 8px;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}


.related-content h3 a {
    color: #161616;
    text-decoration: none;
}


.related-content h3 a:hover {
    color: #b40000;
}


.related-content p {
    margin: 0;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}


.related-meta {
    display: flex;
    gap: 15px;

    margin-top: 12px;

    color: #888;

    font-size: 11px;
}


.related-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}


.related-image {
    width: 190px;
    height: 130px;

    overflow: hidden;

    border-radius: 4px;

    background: #eee;
}


.related-image img,
.related-image video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.related-image img {
    transition: transform .3s ease;
}


.related-card:hover .related-image img {
    transform: scale(1.04);
}

.related-share{
    border: none;
    background:white;
    color:#888 ;
}

/* =========================================================
   SIDEBAR
========================================================= */

.news-sidebar {
    position: sticky;
    top: 110px;
}


/* =========================================================
   SIDEBAR AD
========================================================= */

.sidebar-ad {
    background: #ffffff;

    /* border: 1px solid #e5e7eb; */

    padding: 10px;

    margin-bottom: 25px;
}


.sidebar-ad-label {
    display: block;

    text-align: center;

    font-size: 9px;
    color: #999;

    letter-spacing: 1px;

    margin-bottom: 7px;
}


.sidebar-ad img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   QUICK UPDATES
========================================================= */

.quick-updates {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    padding: 22px;
}


.sidebar-heading {
    border-bottom: 1px solid #eeeeee;

    padding-bottom: 14px;
}


.quick-news {
    display: grid;

    grid-template-columns: 1fr 90px;

    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid #eeeeee;
}


.quick-news:last-child {
    border-bottom: none;
}


.quick-news-content {
    min-width: 0;
}


.quick-news h3 {
    margin: 5px 0;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}


.quick-news h3 a {
    color: #222;
    text-decoration: none;
}


.quick-news h3 a:hover {
    color: #b40000;
}


.quick-meta {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #999;

    font-size: 10px;
}


.quick-image {
    width: 100px;
    height: 100px;

    overflow: hidden;

    border-radius: 3px;
}


.quick-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .3s ease;
}


.quick-news:hover .quick-image img {
    transform: scale(1.05);
}

.quick-share{
    border: none;
    background: white;
    color: #888;
}

/* =========================================================
   EMPTY NEWS
========================================================= */

.no-news {
    color: #999;
    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .news-detail-page {
        padding: 25px 15px 50px;
    }


    .news-detail-layout {
        grid-template-columns: 1fr;
    }


    .news-sidebar {
        position: static;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }


    .sidebar-ad {
        margin-bottom: 0;
    }


    .article-title {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .news-detail-page {
        padding: 12px 8px 40px;
    }


    .news-detail-layout {
        gap: 15px;
    }


    .article-header {
        padding: 20px 18px;
    }


    .article-category-row {
        flex-wrap: wrap;
        gap: 8px;
    }


    .article-title {
        font-size: 22px;
        line-height: 1.25;
    }


    .article-meta {
        gap: 12px;
        flex-wrap: wrap;
    }


    .article-media img,
    .article-media video {
        max-height: 400px;
    }


    .article-body {
        padding: 22px 18px;

        font-size: 16px;
        line-height: 1.75;
    }


    .article-actions {
        margin: 0 18px;

        flex-wrap: wrap;

        gap: 12px;
    }


    .article-share {
        padding: 15px 18px;
    }


    .related-section {
        padding: 25px 18px;
    }


    .related-card {
        grid-template-columns: 1fr 105px;

        gap: 12px;
    }


    .related-image {
        width: 110px;
        height:100px;
    }


    .related-content h3 {
        font-size: 12px;
    }


    .related-content p {
        display: none;
    }


    .news-sidebar {
        display: block;
    }


    .sidebar-ad {
        margin-bottom: 15px;
    }


    .quick-updates {
        padding: 18px;
    }

}



/* =========================
   BOTTOM BANNER
   ========================= */

.middle-ad {
    width: 100%;
    max-width: 1500px;
    margin: 30px auto;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.middle-ad .ad-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.middle-ad a {
    display: block;
    width: 100%;
}

.middle-ad img {
    display: block;
    width: 100%;
    height:auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .middle-ad {
        margin: 20px auto;
        padding: 0 10px;
    }

    .middle-ad img {
        max-height: 180px;
        border-radius: 4px;
    }
}

/* =========================================================
   CATEGORY NEWS PAGE
========================================================= */

.category-news-page {
    width: 100%;
    background: #ffffff;
    padding: 35px 20px 70px;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.category-news-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   CATEGORY HEADER
========================================================= */

.category-page-header {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 16px;
}


.category-header-line {
    width: 5px;
    height: 45px;

    background: #b40000;

    flex-shrink: 0;
}


.category-kicker {
    display: block;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #b40000;

    margin-bottom: 3px;
}


.category-page-title {
    margin: 0;

    font-size: 26px;
    line-height: 1.2;

    font-weight: 800;

    color: #151515;
}


/* =========================================================
   NEWS LIST
========================================================= */

.category-news-list {
    width: 100%;
}


/* =========================================================
   NEWS CARD
========================================================= */

.category-news-card {
    width: 100%;

    display: grid;

    grid-template-columns: 300px minmax(0, 1fr);

    gap: 25px;

    padding: 0 0 24px;
    margin-bottom: 24px;

    border-bottom: 1px solid #e5e5e5;
}


/* =========================================================
   IMAGE
========================================================= */

.category-news-image {
    width: 300px;
    height: 190px;

    overflow: hidden;

    background: #f3f3f3;
}


.category-news-image a {
    display: block;

    width: 100%;
    height: 100%;
}


.category-news-image img,
.category-news-image video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}


.category-news-image:hover img,
.category-news-image:hover video {
    transform: scale(1.03);
}


/* =========================================================
   CONTENT
========================================================= */

.category-news-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   CATEGORY
========================================================= */

.category-news-category {
    width: fit-content;

    color: #b40000;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    text-decoration: none;

    margin-bottom: 8px;
}


.category-news-category:hover {
    color: #850000;
}


/* =========================================================
   TITLE
========================================================= */

.category-news-title {
    margin: 0 0 9px;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 750;
}


.category-news-title a {
    color: #171717;

    text-decoration: none;

    transition: color 0.2s ease;
}


.category-news-title a:hover {
    color: #b40000;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.category-news-description {
    margin: 0;

    max-width: 850px;

    color: #666;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   META ROW
========================================================= */

.category-news-meta {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;
    padding-top: 18px;
}


/* =========================================================
   TIME
========================================================= */

.category-meta-item {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #777;

    font-size: 12px;

    white-space: nowrap;
}


.category-meta-item i {
    font-size: 16px;

    color: #b40000;
}


/* =========================================================
   RIGHT SIDE ACTIONS
========================================================= */

.category-news-actions {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 18px;

    margin-left: auto;
}


/* =========================================================
   ACTION ITEM
========================================================= */

.category-action {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    border: 0;

    background: transparent;

    padding: 0;

    color: #777;

    font-size: 12px;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none;
}


.category-action i {
    font-size: 17px;

    color: #777;

    transition: color 0.2s ease;
}


/* =========================================================
   LIKE BUTTON
========================================================= */

.category-action.like-btn {
    cursor: pointer;
}


.category-action.like-btn:hover,
.category-action.like-btn:hover i {
    color: #b40000;
}


.category-action .liked {
    color: #b40000;
}


/* =========================================================
   SHARE
========================================================= */

.category-share-btn {
    cursor: pointer;
}


.category-share-btn:hover,
.category-share-btn:hover i {
    color: #b40000;
}


/* Remove default button styles */

.category-action button {
    border: 0;
    background: transparent;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.category-empty {
    text-align: center;

    padding: 70px 20px;

    color: #777;
}


.category-empty i {
    font-size: 45px;

    color: #b40000;

    margin-bottom: 10px;
}


.category-empty h3 {
    margin: 0 0 5px;

    font-size: 20px;

    color: #222;
}


.category-empty p {
    margin: 0;

    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .category-news-page {
        padding: 30px 18px 60px;
    }


    .category-news-card {
        grid-template-columns: 250px minmax(0, 1fr);

        gap: 20px;
    }


    .category-news-image {
        width: 250px;
        height: 165px;
    }


    .category-news-title {
        font-size: 19px;
    }


    .category-news-description {
        font-size: 13px;
    }


    .category-news-actions {
        gap: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .category-news-page {
        padding: 25px 12px 50px;
    }


    /* Header */

    .category-page-header {
        margin-bottom: 22px;
    }


    .category-header-line {
        width: 4px;
        height: 38px;
    }


    .category-kicker {
        font-size: 9px;
    }


    .category-page-title {
        font-size: 21px;
    }


    /* Card */

    .category-news-card {

        display: grid;

        grid-template-columns: 125px minmax(0, 1fr);

        gap: 14px;

        padding-bottom: 20px;

        margin-bottom: 20px;

    }


    /* Image */

    .category-news-image {

        width: 125px;
        height: 105px;

    }


    /* Category */

    .category-news-category {

        font-size: 9px;

        letter-spacing: 0.8px;

        margin-bottom: 5px;

    }


    /* Title */

    .category-news-title {

        font-size: 15px;

        line-height: 1.3;

        margin-bottom: 5px;

        display: -webkit-box;

        -webkit-line-clamp: 3;

        -webkit-box-orient: vertical;

        overflow: hidden;

    }


    /* Description */

    .category-news-description {

        font-size: 11px;

        line-height: 1.45;

        display: -webkit-box;

        -webkit-line-clamp: 2;

        -webkit-box-orient: vertical;

        overflow: hidden;

    }


    /* Meta */

    .category-news-meta {

        margin-top: 10px;

        padding-top: 0;

        gap: 5px;

        align-items: center;

    }


    /* Time */

    .category-meta-item {

        font-size: 9px;

        gap: 3px;

    }


    .category-meta-item i {

        font-size: 13px;

    }


    /* Actions */

    .category-news-actions {

        gap: 9px;

    }


    .category-action {

        font-size: 9px;

        gap: 3px;

    }


    .category-action i {

        font-size: 13px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .category-news-card {

        grid-template-columns: 105px minmax(0, 1fr);

        gap: 11px;

    }


    .category-news-image {

        width: 105px;

        height: 90px;

    }


    .category-news-title {

        font-size: 14px;

    }


    .category-news-description {

        display: none;

    }


    .category-news-meta {

        margin-top: 7px;

    }


    .category-news-actions {

        gap: 7px;

    }


    .category-action {

        font-size: 8px;

    }


    .category-action i {

        font-size: 12px;

    }

}


        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            background: #fff;
            color: #111;
            font-family: Arial, Helvetica, sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }


        /* =========================================
           TOPIC PAGE
        ========================================= */

        .topic-page {
            width: 100%;
            background: #fff;
        }

        .topic-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 30px 20px 50px;
        }


        /* =========================================
           BREADCRUMB
        ========================================= */

        .topic-breadcrumb {
            margin-bottom: 18px;
            font-size: 11px;
            font-weight: 600;
            color: #888;
            letter-spacing: .4px;
        }

        .topic-breadcrumb a {
            color: #777;
        }

        .topic-breadcrumb a:hover {
            color: #b40000;
        }


        /* =========================================
           HEADING
        ========================================= */

        .topic-heading {
            display: flex;
            align-items: center;
            gap: 10px;

            margin-bottom: 8px;
            padding-bottom: 12px;

            border-bottom: 1px solid #ddd;
        }

        .topic-heading-line {
            width: 5px;
            height: 28px;
            background: #b40000;
            flex-shrink: 0;
        }

        .topic-heading h1 {
            margin: 0;

            font-size: 28px;
            line-height: 1.2;
            font-weight: 800;
            color: #111;
        }

        .topic-count {
            margin-bottom: 5px;

            font-size: 12px;
            color: #888;
        }


        /* =========================================
           NEWS LIST
        ========================================= */

        .topic-news-list {
            width: 100%;
        }

        .topic-news-card {
            display: grid;
            grid-template-columns: 260px minmax(0, 1fr);
            gap: 22px;

            padding: 22px 0;

            border-bottom: 1px solid #e5e5e5;
        }


        /* =========================================
           IMAGE
        ========================================= */

        .topic-news-image {
            width: 260px;
            height: 160px;

            overflow: hidden;
            background: #f2f2f2;
        }

        .topic-news-image img,
        .topic-news-image video {
            display: block;

            width: 100%;
            height: 100%;

            object-fit: cover;
        }


        /* =========================================
           CONTENT
        ========================================= */

        .topic-news-content {
            min-width: 0;

            display: flex;
            flex-direction: column;
        }

        .topic-category {
            margin-bottom: 7px;

            font-size: 11px;
            font-weight: 800;
            color: #b40000;

            text-transform: uppercase;
            letter-spacing: .6px;
        }

        .topic-news-content h2 {
            margin: 0 0 8px;

            font-size: 21px;
            line-height: 1.3;
            font-weight: 700;
        }

        .topic-news-content h2 a {
            color: #111;
        }

        .topic-news-content h2 a:hover {
            color: #b40000;
        }

        .topic-news-description {
            margin: 0 0 14px;

            color: #666;

            font-size: 14px;
            line-height: 1.55;
        }


        /* =========================================
           META
        ========================================= */

        .topic-news-meta {
            display: flex;
            align-items: center;

            gap: 16px;

            margin-top: auto;

            color: #777;

            font-size: 12px;
        }

        .topic-news-meta span,
        .topic-news-meta button {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .topic-news-meta i {
            font-size: 14px;
        }

        .topic-news-share {
            margin-left: auto;

            border: 0;
            background: transparent;

            padding: 0;

            color: #777;

            font: inherit;

            cursor: pointer;
        }

        .topic-news-share:hover {
            color: #b40000;
        }


        /* =========================================
           NO NEWS
        ========================================= */

        .topic-empty {
            padding: 60px 20px;

            text-align: center;

            color: #888;

            font-size: 14px;
        }


        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 768px) {

            .topic-container {
                padding: 20px 12px 40px;
            }


            .topic-breadcrumb {
                margin-bottom: 14px;
                font-size: 10px;
            }


            .topic-heading {
                margin-bottom: 5px;
                padding-bottom: 10px;
            }

            .topic-heading-line {
                width: 4px;
                height: 24px;
            }

            .topic-heading h1 {
                font-size: 22px;
            }


            .topic-count {
                font-size: 10px;
            }


            .topic-news-card {
                grid-template-columns: 120px minmax(0, 1fr);

                gap: 12px;

                padding: 16px 0;
            }


            .topic-news-image {
                width: 120px;
                height: 90px;
            }


            .topic-category {
                margin-bottom: 4px;

                font-size: 9px;
            }


            .topic-news-content h2 {
                margin-bottom: 5px;

                font-size: 16px;
                line-height: 1.3;
            }


            .topic-news-description {
                margin-bottom: 7px;

                font-size: 12px;
                line-height: 1.4;

                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;

                overflow: hidden;
            }


            .topic-news-meta {
                gap: 8px;

                font-size: 10px;

                white-space: nowrap;
            }

            .topic-news-meta i {
                font-size: 12px;
            }

        }

/* =========================================================
   TOPIC PAGE - MOBILE SAME AS CATEGORY PAGE
   ========================================================= */

@media (max-width: 768px) {

    .topic-container {
        padding: 15px 10px;
        width: 100%;
    }

    .topic-news-list {
        width: 100%;
    }

    .topic-news-card {
        display: grid;
        grid-template-columns: 95px minmax(0, 1fr);
        gap: 10px;
        width: 100%;
        padding: 14px 0;
        margin: 0;
        border-bottom: 1px solid #e5e5e5;
        background: transparent;
        box-shadow: none;
    }

    /* IMAGE */
    .topic-news-image {
        width: 95px;
        height: 75px;
        overflow: hidden;
    }

    .topic-news-image img,
    .topic-news-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* CONTENT */
    .topic-news-content {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }

    /* CATEGORY */
    .topic-news-category {
        font-size: 9px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    /* TITLE */
    .topic-news-content h2 {
        font-size: 16px;
        line-height: 1.18;
        font-weight: 700;
        margin: 0 0 4px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* DESCRIPTION */
    .topic-news-description {
        font-size: 11px;
        line-height: 1.35;
        margin: 0 0 5px;
        color: #666;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* META */
    .topic-news-meta {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 9px;
        color: #777;
        white-space: nowrap;
        overflow: hidden;
    }

    .topic-news-meta i {
        font-size: 10px;
    }

    /* SHARE */
    .topic-news-meta button,
    .topic-news-share {
        border: 0;
        outline: 0;
        background: transparent;
        padding: 0;
        margin: 0;
        font-size: 9px;
        color: #777;
        cursor: pointer;
    }

    /* TOPIC HEADING */
    .topic-heading {
        margin-bottom: 12px;
    }

    .topic-heading h1 {
        font-size: 24px;
        line-height: 1.2;
        margin: 0;
    }

    .topic-count {
        font-size: 10px;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {

    .topic-news-description {
        display: none !important;
    }

}

/* =========================
   LOCAL NEWS
========================= */

.local-news-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* LOCAL NEWS HEADING */

.local-news-header {
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.local-news-title-wrap {
    display: block;
}

.local-news-accent {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 62px;
    height: 3px;
    background: #e31b23;
}

.local-news-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.local-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.local-news-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
}

.local-news-image {
    width: 150px;
    height: 100px;
    overflow: hidden;
    display: block;
    border-radius: 15px;
}

.local-news-image img,
.local-news-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.local-news-category {
    font-size: 10px;
    font-weight: 700;
    color: #d71920;
    text-decoration: none;
}

.local-news-title-link {
    text-decoration: none;
    color: #111;
}

.local-news-title-link h3 {
    margin: 5px 0 7px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.local-news-description {
    margin: 0 0 8px;
    color: #666;
    font-size: 12px;
    line-height: 1.45;
}

.local-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    color: #777;
    white-space: nowrap;
}

.local-news-share {
    border: 0;
    background: none;
    padding: 0;
    color: #777;
    font: inherit;
    cursor: pointer;
}


/* TABLET */

@media (max-width: 992px) {

    .local-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .local-news-section {
        margin: 25px auto;
        padding: 0 10px;
    }

    .local-news-header {
        margin-bottom: 5px;
        padding-bottom: 8px;
    }

    .local-news-header h2 {
        font-size: 20px;
    }

    

    .local-news-grid {
        display: block;
    }

    .local-news-card {
        grid-template-columns: 95px minmax(0, 1fr);
        gap: 10px;
        padding: 13px 0;
    }

    .local-news-image {
        width: 95px;
        height: 95px;
    }

    .local-news-category {
        font-size: 9px;
    }

    .local-news-title-link h3 {
        font-size: 15px;
        line-height: 1.2;
        margin: 3px 0 4px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .local-news-description {
        display: none;
    }

    .local-news-meta {
        gap: 7px;
        font-size: 9px;
        overflow: hidden;
    }

    .local-news-meta i {
        font-size: 10px;
    }

    .local-news-share {
        font-size: 9px;
    }

}

.local-news-title-link h3 {
    margin: 5px 0 7px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.youtube-watch-box {
    margin: 14px 0 20px;
    text-align: center;
}

.youtube-watch-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 20px;
    background: #e31b23;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s ease;
}

.youtube-watch-box a:hover {
    background: #b40000;
    color: #fff;
}

.youtube-watch-box i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .youtube-watch-box {
        margin: 10px 0 16px;
    }

    .youtube-watch-box a {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
}