/* Smooth sticky effect JS */
/*
Theme Name: GoNews
Theme URI: https://zohothemes.com/gonews/
Description: GoNews is a modern, responsive WordPress news and magazine theme designed for news websites, blogs, and online magazines. Built with clean code and optimized for performance, it features Playfair Display typography, multiple layout options, and news-specific functionality including breaking news ticker, featured posts, and category-based displays.
Author: ZohoThemes
Author URI: https://zohothemes.com/
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gonews
Domain Path: /languages
Tags: news, magazine, blog, responsive, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, flexible-header, full-width-template, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    line-height: 1.6;
    height: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500;1,600;1,700;1,900&family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* Heading Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

/* Body Text */
p {
    margin-bottom: 1rem;
    font-family: 'IBM Plex Serif', serif;
    font-weight: 400;
    font-size: 18px;
    color: #555555;
}

/* Links */
a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: none !important;
}

.sticky-nav {
    transition: box-shadow 0.3s ease, background 0.3s ease, min-height 0.3s, padding 0.3s;
}

.sticky-logo {
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(-10px);
}

.sticky-nav.fixed-top .sticky-logo {
    opacity: 1;
    transform: translateY(0);
}
/* Sticky Navigation Bar */

.sticky-nav {
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.sticky-nav.fixed-top {
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
    background: #f8f9fa;
}

/* ==========================================================================
   LATEST NEWS PAGE STYLES
   ========================================================================== */

/* View More Button on Front Page */
.btn-lg {
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

.btn-lg i {
    transition: transform 0.3s ease;
}

.btn-lg:hover i {
    transform: translateX(5px);
}

/* Page Header Section */
.page-header-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.page-header-section .page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-header-section .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.page-header-section .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header-section .breadcrumb-item a:hover {
    color: #dc3545;
}

.page-header-section .breadcrumb-item.active {
    color: #495057;
}

/* Latest News Content */
.latest-news-page {
    background-color: transparent;
    min-height: 100vh;
}

/* Latest News Article Card */
.latest-news-article-card, .archive-news-article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.latest-news-article-card:hover, .archive-news-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.latest-news-article-card .article-image-wrapper, .archive-news-article-card .article-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.latest-news-article-card .article-image-wrapper img, .archive-news-article-card .article-image-wrapper img {
    transition: transform 0.3s ease;
    object-fit: cover;
}

.latest-news-article-card:hover .article-image-wrapper img, .archive-news-article-card:hover .article-image-wrapper img {
    transform: scale(1.05);
}

.latest-news-article-card .article-content, .archive-news-article-card .article-content {
    padding: 1.5rem;
}

.latest-news-article-card .article-title, .archive-news-article-card .article-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.latest-news-article-card .article-title a, .archive-news-article-card .article-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-news-article-card .article-title a:hover, .archive-news-article-card .article-title a:hover {
    color: #dc3545;
}

.latest-news-article-card .article-excerpt, .archive-news-article-card .article-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

.latest-news-article-card .article-meta, .archive-news-article-card .article-meta {
    font-size: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.latest-news-article-card .article-stats i, .archive-news-article-card .article-stats i {
    margin-right: 0.25rem;
}

/* Sidebar Widgets */
.latest-news-sidebar-widget,
.featured-news-sidebar-widget {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.latest-news-sidebar-widget .widget-title,
.featured-news-sidebar-widget .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #dc3545;
}

/* Sidebar News Item */
.sidebar-news-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-news-item .sidebar-news-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.sidebar-news-item .sidebar-news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-news-item:hover .sidebar-news-thumbnail img {
    transform: scale(1.1);
}

.sidebar-news-item .sidebar-news-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.sidebar-news-item .sidebar-news-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-news-item .sidebar-news-title a:hover {
    color: #dc3545;
}

/* Featured News Item */
.featured-news-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.featured-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.featured-news-item img {
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.featured-news-item:hover img {
    transform: scale(1.02);
}

.featured-news-item .featured-news-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.featured-news-item .featured-news-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-news-item .featured-news-title a:hover {
    color: #dc3545;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 8px;
    color: #fff;
}

.newsletter-widget .widget-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.newsletter-widget .form-control {
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.newsletter-widget .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter-widget .btn {
    padding: 0.75rem;
    font-weight: 600;
    border: none;
    background-color: #fff;
    color: #dc3545;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.newsletter-widget .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Pagination */
.latest-news-pagination {
    margin-top: 3rem;
}

.latest-news-pagination .pagination {
    gap: 0.5rem;
}

.latest-news-pagination .page-item .page-link {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    padding: 0.3rem 0.75rem;
    transition: all 0.3s ease;
    font-size: .8275rem;
    font-weight: 500;

}

.latest-news-pagination .page-item .page-link:hover {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
    transform: translateY(-2px);
}

.latest-news-pagination .page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
    font-weight: 600;
}

.latest-news-pagination .page-item.disabled .page-link {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
}

/* No Posts Found */
.no-posts-found {
    background: #fff;
    padding: 4rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.no-posts-found h2 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Object Fit Utility */
.object-fit-cover {
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header-section .page-title {
        font-size: 2rem;
    }
    
    .latest-news-article-card .article-title {
        font-size: 1.25rem;
    }
    
    .latest-news-article-card .article-content {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .page-header-section .page-title {
        font-size: 1.75rem;
    }
    
    .latest-news-article-card {
        margin-bottom: 1.5rem;
    }
    
    .latest-news-article-card .article-image-wrapper {
        min-height: 200px;
    }
    
    .latest-news-article-card .article-title {
        font-size: 1.125rem;
    }
    
    .latest-news-article-card .article-content {
        padding: 1rem;
    }
    
    .sidebar-news-item .sidebar-news-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .latest-news-pagination .page-item .page-link {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Stack sidebar below content on mobile */
    .col-lg-3.order-lg-1 {
        order: 2;
    }
    
    .col-lg-9.order-lg-2 {
        order: 1;
    }
}

@media (max-width: 575px) {
    .latest-news-article-card .article-meta {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    
    .article-stats {
        width: 100%;
        justify-content: flex-start !important;
    }
}

/* Lists */
ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    /* position: block;
    top: 0; 
    z-index: 1000;*/
}

.site-main {
    min-height: 50vh;
    padding: 2rem 0;
}

.site-footer {
    display: block;
    background-color: #1f2937;
    color: #f9fafb;
    padding: 0rem 0;
    margin-top: 3rem;
    font-size: 0.875rem;
}

.site-footer .top {
    background-color: #171717;
    padding: 48px 18px;
    display: grid;
}

.site-footer .bottom {
    display: flex;
    background-color: #000;
    padding:.5rem 0;
    color:#707070;
}

.top-header {
    background: #eee;
    color: #555;
    padding: 1.1rem 0;
    text-align: center;
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.875rem;
    height: 26px;
    line-height: 26px;
    display: flex;
}

.top-header .top-header-right {
    float: right;
}

.navbar-brand .brand-logo {
    width: 180px;
    transition: height 0.3s ease;
}

/* Content Layout */
.content-area {
    display: flex;
    gap: 2rem;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0rem;
}

.site-content {
    flex: 1;
}

.widget-area {
    width: 300px;
    flex-shrink: 0;
}

/* Layout Variations */
.no-sidebar .content-area {
    max-width: 800px;
}

.no-sidebar .site-content {
    width: 100%;
}

.left-sidebar .content-area {
    flex-direction: row-reverse;
}



/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

.site-branding {
    text-align: center;
    padding: 1rem 0;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.site-description {
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.advertise-banner {
    display: none !important;
}

.top-header {
    height: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
}
.top-header-right-flex {
    height: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.top-header .top-header-links a {
    color: #555;
    margin-left: 0rem;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7125rem;
    font-weight: 600;
}

.top-header .top-header-links a:hover {
    color: #dc3545;
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    background-color: #eeeeee;
}

.main-navigation .container > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-nav-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.nav-menu {
    display: flex;
    justify-content: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: .5rem 1rem;
    color: rgba(34, 34, 34, 1);
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    text-transform: capitalize;
    font-size: 17px;
    line-height: 26px;
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: #dc3545;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: rgba(34, 34, 34, .7);
    background-color: transparent;
    text-decoration: none;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    transform: scaleX(1);
}

/* Press Release Menu */
.press-release-menu {
    margin-left: auto;
    padding-left: 2rem;
}

.press-release-link {
    display: block;
    padding: 0.5rem 1.5rem;
    background-color: #dc3545;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.press-release-link:hover {
    background-color: #c82333;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: #1f2937;
    color: #f9fafb;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: #374151;
}

.menu-toggle .menu-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

.menu-toggle .menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hide mobile brand on desktop */
.mobile-brand {
    display: none;
}

/* Desktop - Show site branding */
@media (min-width: 992px) {
    .site-branding {
        display: block !important;
    }
    
    .mobile-brand {
        display: none !important;
    }
}

/* ==========================================================================
   POST STYLES
   ========================================================================== */

.post, .page {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.entry-title a:hover {
    color: #2563eb;
}

.entry-meta {
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.entry-meta a {
    color: #6b7280;
    text-decoration: none;
}

.entry-meta a:hover {
    color: #2563eb;
}

.entry-content {
    font-family: 'IBM Plex Serif', serif;
    line-height: 1.7;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.more-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.more-link:hover {
    background-color: #1d4ed8;
    text-decoration: none;
}

/* ==========================================================================
   SIDEBAR & WIDGETS
   ========================================================================== */

.widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dc3545;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    padding: 0.5rem 0;
    /* border-bottom: 1px solid #e5e7eb; */
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #374151;
    text-decoration: none;
}

.widget a:hover {
    color: #2563eb;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.site-footer {
    text-align: center;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: none;
}

.footer-content {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-info {
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.875rem;
    color: #9ca3af;
}

.site-info a {
    color: #f9fafb;
}


.footer-widgets .widget-title {
    color: #f9fafb;
}

.footer-widgets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widgets li {
    padding: 0.2rem 0 0.3rem;
    text-align: left;
    font-size: 0.8325rem;
}

.site-footer a {
    color:#707070;
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet and Mobile - General */
@media (max-width: 991px) {
    /* Hide top header on tablet and mobile */
    .top-header {
        display: none !important;
    }
    
    /* Hide advertise banner on tablet and mobile */
    .advertise-banner {
        display: none !important;
    }
    
    /* Hide site branding section on mobile - logo shows in nav */
    .site-branding {
        display: none !important;
    }
    
    /* Mobile Header with Logo Left, Menu Right */
    .main-navigation {
        background-color: #eeeeee;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .main-navigation .container > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row !important;
        padding: 0;
    }
    
    .main-navigation .main-nav-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    
    /* Logo and site name container for mobile nav */
    .mobile-brand {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    
    .mobile-brand a {
        display: flex;
        align-items: center;
    }
    
    .mobile-brand img {
        max-height: 45px;
        width: auto;
    }
    
    .mobile-brand .site-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .content-area {
        flex-direction: column;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .widget-area {
        width: 100%;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Mobile Navigation */
    .main-navigation {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1f2937;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    .main-navigation.toggled .nav-menu {
        display: flex;
        max-height: 500px;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        color: #fff;
        padding: 1rem 1.5rem;
        width: 100%;
    }
    
    .nav-menu a::after {
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .nav-menu a:hover,
    .nav-menu .current-menu-item > a,
    .nav-menu .current_page_item > a {
        color: #fff;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: auto;
        background: transparent;
        color: #1a1a1a;
        border: 1px solid #ddd;
        padding: 0.5rem 1rem;
        font-family: 'Playfair Display', serif;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 4px;
        margin-left: auto;
    }
    
    .menu-toggle:hover {
        background-color: #f5f5f5;
        border-color: #999;
    }
    
    .menu-toggle .menu-icon {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .menu-toggle .menu-icon span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #1a1a1a;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
    
    /* Press Release Button Mobile */
    .press-release-menu {
        width: 100%;
        padding-left: 0;
        padding-top: 0.5rem;
    }
    
    .press-release-link {
        width: 100%;
        text-align: center;
    }
    
    .main-navigation .container > div {
        flex-direction: column;
    }
    
    /* Site Logo Mobile */
    .site-logo img {
        max-width: 150px;
    }
    
    /* Remove press release full width on mobile if exists */
    .press-release-menu {
        width: auto;
        padding-left: 0;
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.75rem;
    }
    
    .site-main {
        padding: 1rem 0;
    }
    
    .post, .page {
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignwide {
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    clear: both;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.alignleft {
    float: left;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    clear: left;
}

.alignright {
    float: right;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    clear: right;
}

/* Clear floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ==========================================================================
   NEWS-SPECIFIC FEATURES
   ========================================================================== */

/* Breaking News Ticker */
.breaking-news {
    background-color: #dc2626;
    color: #fff;
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.breaking-news-label {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background-color: #991b1b;
    display: inline-block;
    margin-right: 1rem;
}

.breaking-news-content {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 500;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Featured Posts Section */
.featured-posts {
    margin-bottom: 3rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

.featured-posts-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.featured-posts-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2563eb;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.featured-post-image {
    position: relative;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 1.5rem;
}

.featured-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.featured-post-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.featured-post-title a:hover {
    color: #2563eb;
}

.featured-post-meta {
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.featured-post-excerpt {
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Post Grid Layouts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-grid-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-grid-item:hover {
    transform: translateY(-3px);
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.category-badge:hover {
    background-color: #1d4ed8;
    text-decoration: none;
}

/* Popular Posts Widget */
.popular-posts-list {
    list-style: none;
    padding: 0;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content {
    flex: 1;
}

.popular-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.popular-post-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.popular-post-title a:hover {
    color: #2563eb;
}

.popular-post-date {
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Comments Styling */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.comments-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.comment-author {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.comment-content {
    font-family: 'IBM Plex Serif', serif;
    line-height: 1.6;
}

/* Social Sharing */
.social-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.social-share-title {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-share-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.social-share-button:hover {
    opacity: 0.8;
    text-decoration: none;
}

.social-share-facebook { background-color: #1877f2; }
.social-share-twitter { background-color: #1da1f2; }
.social-share-linkedin { background-color: #0077b5; }
.social-share-whatsapp { background-color: #25d366; }

/* Related Posts */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.related-posts-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content {
    padding: 1rem;
}

.related-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.related-post-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.related-post-title a:hover {
    color: #2563eb;
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */

/* Hero Carousel */
.hero-carousel {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-slide {
    position: relative;
    min-height: 650px;
}

.hero-image {
    position: relative;
    height: 650px;
    overflow: hidden;
}

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

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    z-index: 2;
}

.hero-content {
    max-width: 90%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-title a:hover {
    opacity: 0.9;
}

.hero-meta {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-meta img {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Category Badge */
.category-badge {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 3px;
    text-transform: uppercase !important;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #54c265;
    border-radius: 50%;
    opacity: 0.9;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: #48a957;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
    z-index: 5;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 1;
    cursor: pointer;
}

.carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.carousel-indicators .active {
    background-color: #54c265;
    border-color: #fff;
    width: 14px;
    height: 14px;
}

/* Hero Sidebar */
.hero-sidebar {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.sidebar-article {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-article:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.sidebar-article-title {
    font-family: 'Playfair Display', serif;
    font-size: .975rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar-article-title a:hover {
    color: #54c265 !important;
}

/* ==========================================================================
   ADVERTISEMENT SECTION
   ========================================================================== */

/* Front page specific content area override */
.frontpage-content {
    width: 100%;
    max-width: 100%;
}

.frontpage-content .container {
    max-width: 1360px;
}

.advertisement-section {
    background-color: #f8f9fa;
}

.advertisement-banner {
    background-color: #e9ecef;
    padding: 3rem 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

.advertisement-banner p {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.25rem;
    color: #6c757d;
    font-weight: 500;
}

/* ==========================================================================
   FEATURED NEWS WIDGET
   ========================================================================== */

.featured-news-widget .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.featured-news-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #dc3545;
}

.carousel-arrows {
    display: flex;
    gap: 0.5rem;
}

.carousel-arrow-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #dee2e6;
    background-color: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    color: #6c757d;
}

.carousel-arrow-btn:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.featured-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-card img {
    height: 250px;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}

.featured-content .featured-title {
    font-family: 'Playfair Display', serif;
    font-size:.8375rem;
    font-weight: 600;
    line-height: 1.4;
}

.featured-content .featured-title a:hover {
    opacity: 0.9;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-icon:hover {
    background-color: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon i {
    margin-left: 3px;
}

/* ==========================================================================
   MORE NEWS WIDGET
   ========================================================================== */

.more-news-widget .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.more-news-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #dc3545;
}

.more-news-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.more-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0 !important;
}

.more-news-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.more-news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-news-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.8375rem;
    font-weight: 600;
    line-height: 1.4;
}

.more-news-title a:hover {
    color: #dc3545 !important;
}

/* ==========================================================================
   MAIN ARTICLE CARDS
   ========================================================================== */

.main-article-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-article-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.article-image-wrapper img {
    height: 400px;
    object-fit: cover;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.article-title a:hover {
    color: #dc3545 !important;
}

.article-excerpt {
    font-family: 'IBM Plex Serif', serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

.article-meta {
    font-family: 'IBM Plex Serif', serif;
    padding-top: .25rem;
    /* border-top: 1px solid #e9ecef; */
}

.article-stats i {
    margin-right: 0.25rem;
}

/* ==========================================================================
   LATEST NEWS WIDGET (Right Sidebar)
   ========================================================================== */

.latest-news-widget .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.latest-news-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #dc3545;
}

.latest-news-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.latest-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0 !important;
}

.latest-news-item img {
    border-radius: 4px;
    height: 180px;
    object-fit: cover;
}

.latest-news-item.video-item {
    position: relative;
}

.latest-news-list, .more-news-list {
    padding:.5rem;
    border: solid 1px #eee;
}

.latest-news-content .post-date, .more-news-content .post-date, .article-date {
    font-size: .75rem;
}

.video-play-icon-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-icon-small:hover {
    background-color: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon-small i {
    margin-left: 2px;
}

.latest-news-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.latest-news-title a:hover {
    color: #dc3545 !important;
}

/* ==========================================================================
   NEWSLETTER WIDGET
   ========================================================================== */

.newsletter-widget {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.newsletter-widget .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.newsletter-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #dc3545;
}

.newsletter-form .form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-family: 'IBM Plex Serif', serif;
}

.newsletter-form .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.newsletter-form .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-badge {
    background-color: #54c265 !important;
    color: #fff !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .hero-sidebar {
        margin-top: 1.5rem;
    }
    
    .article-image-wrapper img {
        height: 300px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .featured-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 300px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

/* ==========================================================================
   SINGLE POST STYLES
   ========================================================================== */

.single-post-container {
    max-width: 800px;
    margin: 0 auto;
}

.single .post-thumbnail {
    margin-bottom: 2rem;
}

.single .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.single .entry-header {
    margin-bottom: 2rem;
}

.single .entry-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.single .entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.single .entry-content {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
}

.single .entry-content p {
    margin-bottom: 1.5rem;
}

.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ==================== SINGLE POST PAGE STYLES ==================== */

/* Single Post Header */
.single-post-page .single-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 0;
}

.single-post-page .category-badge {
    display: inline-block;
    /* font-size: 0.75rem;
    font-weight: 600; */
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.625rem;
    font-weight: 500;
    background-color: rgb(253 210 210) !important;
    color: #000 !important;
}

.single-post-page .single-post-meta {
    font-size: 0.875rem;
    color: #666;
}

.single-post-meta .author-name a,
.single-post-meta .post-date,
.single-post-meta .post-views,
.single-post-meta .post-comments {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
}

.single-post-meta .author-name a:hover {
    color: #dc3545;
}

.single-post-meta i {
    margin-right: 5px;
    color: #999;
}

/* Post Content Wrapper with Social Share */
.post-content-wrapper {
    position: relative;
}

/* Social Share Horizontal Bar */
.social-share-bar {
    border-radius: 0;
    padding: 0;
}

.social-share-bar .social-share-icon {
    color: #999;
    font-size: 1.25rem;
    padding-top: 8px;
}

.social-share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    grid-template-rows: repeat(2, 40px);
    gap: 8px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    border-radius: 0;
}

.social-icon-btn.facebook {
    background: #3b5998;
}

.social-icon-btn.twitter {
    background: #1da1f2;
}

.social-icon-btn.linkedin {
    background: #0077b5;
}

.social-icon-btn.pinterest {
    background: #bd081c;
}

.social-icon-btn.google-plus {
    background: #dd4b39;
}

.social-icon-btn.reddit {
    background: #ff4500;
}

.social-icon-btn.stumbleupon {
    background: #eb4924;
}

.social-icon-btn.tumblr {
    background: #35465c;
}

.social-icon-btn:hover {
    opacity: 0.85;
}

.share-view-stats {
    min-width: 80px;
}

.share-view-stats .stat-item {
    text-align: center;
}

.share-view-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.share-view-stats .stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Social Share Vertical Sidebar */
.social-share-sidebar {
    flex-shrink: 0;
    width: 60px;
}

.social-share-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    top: 20px;
}

.social-share-vertical .social-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #f8f9fa;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border-radius: 3px;
}

.social-share-vertical .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-share-vertical .social-like:hover {
    background: #ff6b6b;
    color: white;
}

.social-share-vertical .social-facebook:hover {
    background: #3b5998;
    color: white;
}

.social-share-vertical .social-twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-share-vertical .social-linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-share-vertical .social-pinterest:hover {
    background: #bd081c;
    color: white;
}

.social-share-vertical .social-whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-share-vertical .social-email:hover {
    background: #666;
    color: white;
}

.social-share-vertical .social-print:hover {
    background: #333;
    color: white;
}

.social-share-vertical .social-btn .count {
    font-size: 0.7rem;
    margin-top: 2px;
}

.social-share-vertical .share-count {
    text-align: center;
    padding: 15px 5px;
    background: #f8f9fa;
    border-radius: 3px;
}

.social-share-vertical .share-count .count {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.social-share-vertical .share-count small {
    display: block;
    font-size: 0.65rem;
    color: #999;
    margin-top: 2px;
}

/* Post Content */
.single-post-page .entry-content {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.single-post-page .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post-page .entry-content h2,
.single-post-page .entry-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Post Navigation */
.post-navigation-wrapper {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 2rem 0;
}

.post-nav-item .nav-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.post-nav-item .nav-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.post-nav-item .nav-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-nav-item .nav-title a:hover {
    color: #dc3545;
}

/* More Posts Section */
.more-posts-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.more-post-card {
    transition: transform 0.3s ease;
}

.more-post-card:hover {
    transform: translateY(-5px);
}

.more-post-card .more-post-image {
    overflow: hidden;
    border-radius: 4px;
}

.more-post-card .more-post-image img {
    transition: transform 0.3s ease;
}

.more-post-card:hover .more-post-image img {
    transform: scale(1.05);
}

.more-post-card .category-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.more-post-card .more-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.more-post-card .more-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.more-post-card .more-post-title a:hover {
    color: #dc3545;
}

/* About Author Section */
.about-author-section {
    border-radius: 8px;
    background: #fdfdfd !important;
    border: solid 1px #f3f0f0;
}

.about-author-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.about-author-section .author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.about-author-section .author-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-author-section .author-name a:hover {
    color: #dc3545;
}

.about-author-section .author-bio {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Adjustments for Single Post */
@media (max-width: 991px) {
    .single-post-page .single-post-title {
        font-size: 2rem;
    }
    
    .post-content-wrapper {
        flex-direction: column;
    }
    
    .social-share-sidebar {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .social-share-vertical {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }
    
    .social-share-vertical .social-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .single-post-page .single-post-title {
        font-size: 1.75rem;
    }
    
    .more-posts-section .row {
        row-gap: 2rem;
    }
    
    .about-author-section .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .social-share-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-stats-and-buttons {
        flex-direction: column;
    }
    
    .share-view-stats {
        flex-direction: row !important;
        gap: 2rem;
        width: 100%;
    }
}

/* Responsive News Features */
@media (max-width: 768px) {
    .featured-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .social-share-buttons {
        justify-content: center;
    }
    
    .breaking-news-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
        margin-right: 0.5rem;
    }
}

/* ==================== SINGLE POST SIDEBAR STYLES ==================== */

/* Widget General Styles */
.single-post-sidebar .widget {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.single-post-sidebar .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #dc3545;
}

/* Latest News Widget */
.latest-news-item {
    border-bottom: 1px solid #e5e7eb;
}

.latest-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.latest-news-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.latest-news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-news-item:hover .latest-news-thumbnail img {
    transform: scale(1.1);
}

.latest-news-content .category-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
}

.latest-news-title {
    font-size: 0.8375rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.latest-news-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-news-title a:hover {
    color: #dc3545;
}

.latest-news-date, .tab-post-date {
    font-size: 0.7125rem !important;
}

/* Follow Us Widget */
.social-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-follow-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-follow-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-follow-btn .count {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.social-follow-btn .label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.social-follow-btn.facebook {
    background: #3b5998;
}

.social-follow-btn.twitter {
    background: #1da1f2;
}

.social-follow-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-follow-btn.youtube {
    background: #ff0000;
}

.social-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Tabs Widget */
.widget-tabs {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 0;
}

.widget-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-weight: 600;
    padding: 0.75rem 1rem;
    margin-bottom: -3px;
    transition: all 0.3s ease;
}

.widget-tabs .nav-link:hover {
    border-bottom-color: #dc3545;
    color: #dc3545;
}

.widget-tabs .nav-link.active {
    border-bottom-color: #dc3545;
    color: #dc3545;
    background: transparent;
}

.widget-tab-content {
    padding: 1.5rem 0;
}

.tab-post-item {
    border-bottom: 1px solid #e5e7eb;
}

.tab-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.tab-post-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.tab-post-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.tab-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tab-post-title a:hover {
    color: #dc3545;
}

.tab-comment-item {
    border-bottom: 1px solid #e5e7eb;
}

.tab-comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.comment-author {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.comment-text {
    color: #666;
    line-height: 1.5;
}

.comment-link {
    color: #dc3545;
    text-decoration: none;
}

.comment-link:hover {
    text-decoration: underline;
}

/* Most Popular Widget */
.popular-post-item {
    border-bottom: 1px solid #e5e7eb;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.popular-post-item .post-number {
    width: 35px;
    height: 35px;
    background: #dc3545;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.popular-post-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.popular-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-title a:hover {
    color: #dc3545;
}

.popular-post-meta {
    font-size: 0.8125rem;
}

/* Sidebar Responsive */
@media (max-width: 991px) {
    .single-post-sidebar {
        margin-top: 3rem;
    }
}

.pad-5 {
    padding:.5rem !important
}

.no-border {
    border:none !important
}

/* ==========================================================================
   POST LIKES/WISH BUTTON STYLES
   ========================================================================== */

/* Like Button Container */
.post-likes-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Like Button */
.like-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #6c757d;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

.like-button:hover {
    color: #28a745;
    transform: scale(1.1);
    text-decoration: none;
}

.like-button:focus {
    outline: none;
}

.like-button:active {
    transform: scale(0.95);
}

/* Liked State */
.like-button.liked {
    color: #28a745;
}

.like-button.liked i {
    animation: pulse 0.3s ease;
}

/* Processing State */
.like-button.processing {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: none;
}

/* Like Animation - Removed (using JavaScript blink instead) */

/* Like Count */
.like-count {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.like-count.updated {
    animation: countUpdate 0.3s ease;
}

@keyframes countUpdate {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        color: #28a745;
    }
}

/* Heart Icon Styles */
.like-button i.far.fa-heart {
    color: #6c757d;
}

.like-button i.fas.fa-heart {
    color: #28a745;
}

.like-button:hover i.far.fa-heart {
    color: #28a745;
}

/* Remove transition during blink animation */
.like-button.blinking i {
    transition: none !important;
}

/* Single Post Meta Likes */
.single-post-meta .post-likes-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Archive/Card Likes */
.post-card .post-likes-wrapper,
.more-post-card .post-likes-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .like-button {
        font-size: 0.9375rem;
    }
    
    .like-count {
        font-size: 0.8125rem;
    }
}

/* Loading State - Disabled (using opacity only) */
.like-button.processing {
    opacity: 0.7;
}

/* Tooltip for Like Button (Optional) */
.like-button[title]:hover::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.5rem;
    background: #333;
    color: #fff;
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 4px;
    margin-bottom: 0.25rem;
    z-index: 1000;
}

/* Accessibility */
.like-button:focus-visible {
    outline: 2px solid #28a745;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==========================================================================
   MOST LIKED POSTS WIDGET STYLES
   ========================================================================== */

.gonews-most-liked-widget .widget-title {
    margin-bottom: 1.25rem;
}

.gonews-most-liked-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gonews-liked-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.gonews-liked-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gonews-liked-post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.gonews-liked-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gonews-liked-post-thumbnail:hover img {
    transform: scale(1.1);
}

.gonews-liked-post-content {
    flex: 1;
    min-width: 0;
}

.gonews-liked-post-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}

.gonews-liked-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gonews-liked-post-title a:hover {
    color: #dc3545;
}

.gonews-liked-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: #6c757d;
}

.gonews-liked-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.gonews-liked-post-meta i {
    font-size: 0.75rem;
}

.gonews-liked-post-meta .post-likes {
    color: #dc3545;
    font-weight: 600;
}

/* Widget without thumbnails */
.gonews-most-liked-list .gonews-liked-post-item:not(:has(.gonews-liked-post-thumbnail)) {
    display: block;
}

/* Responsive */
@media (max-width: 576px) {
    .gonews-liked-post-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .gonews-liked-post-title {
        font-size: 0.875rem;
    }
    
    .gonews-liked-post-meta {
        font-size: 0.75rem;
    }
}