/**
 * Responsive CSS - All Media Queries Consolidated
 * Organized by breakpoint (Desktop-first approach with mobile-first styling)
 * 
 * Table of Contents:
 * 1. Extra Large Desktop (1280px+)
 * 2. Large Desktop (1200px - 1279px)
 * 3. Medium Desktop (1024px - 1199px)
 * 4. Small Desktop / Large Tablet (992px - 1023px)
 * 5. Tablet (768px - 991px)
 * 6. Large Mobile (640px - 767px)
 * 7. Medium Mobile (576px - 639px)
 * 8. Small Mobile (480px - 575px)
 * 9. Extra Small Mobile (375px - 479px)
 * 10. Tiny Mobile (< 375px)
 */

/* ============================================================================
   1. EXTRA LARGE DESKTOP (1280px+)
   ============================================================================ */

@media (min-width: 1280px) {
    .highlight-swiper .swiper-slide {
        width: calc((100% - (4 * 1.5rem)) / 4.5);
    }
}

/* ============================================================================
   2. LARGE DESKTOP (1200px - 1279px)
   ============================================================================ */

@media (max-width: 1280px) {
    .sports-swiper-wrapper {
        padding: 0 1rem;
    }

    .sports-nav-prev {
        left: 0.5rem;
    }

    .sports-nav-next {
        right: 0.5rem;
    }
}

@media (min-width: 1200px) {
    .highlight-swiper .swiper-slide {
        width: calc((100% - (4 * 1.5rem)) / 4.5);
    }
}

/* ============================================================================
   3. MEDIUM DESKTOP (1024px - 1199px)
   ============================================================================ */

@media (max-width: 1200px) {

    /* Navigation */
    .highlight-nav-prev {
        left: 0.5rem;
    }

    .highlight-nav-next {
        right: 0.5rem;
    }

    /* Opinion Section */
    .opinion-featured-large-card {
        grid-template-columns: 1fr;
    }

    .opinion-featured-large-image {
        height: 350px;
    }

    /* Province Section */
    .province-featured-new-card {
        grid-template-columns: 1fr;
    }

    .province-featured-new-image {
        height: 400px;
    }
}

@media (max-width: 1199px) {

    /* Hero Section */
    .hero-section .row {
        flex-direction: column;
    }

    .featured-article {
        max-width: 100%;
    }

    .sidebar-articles {
        max-width: 100%;
        margin-top: 2rem;
    }

    /* Province News */
    .province-main-layout .row {
        flex-direction: column;
    }

    .province-featured-main,
    .province-sidebar {
        width: 100%;
        max-width: 100%;
    }

    /* Sports Section */
    .sports-main-layout {
        grid-template-columns: 1fr;
    }

    .sports-featured-main,
    .sports-sidebar {
        max-width: 100%;
    }

    /* Footer */
    .footer-widgets-layout .row {
        gap: 2rem;
    }
}

@media (max-width: 1199.98px) {
    .trending-section .container {
        padding: 0 1.5rem;
    }

    .trending-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .highlight-swiper .swiper-slide {
        width: calc((100% - (3 * 1.5rem)) / 3.5);
    }
}

@media (max-width: 1024px) {

    /* Navigation */
    .main-nav-container {
        padding: 0.75rem 1rem;
    }

    /* Cards */
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .desktop-show {
        display: block;
    }

    .mobile-show {
        display: none;
    }
}

/* ============================================================================
   4. SMALL DESKTOP / LARGE TABLET (992px - 1023px)
   ============================================================================ */

@media (max-width: 992px) {

    /* Province Cards */
    .province-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .highlight-swiper .swiper-slide {
        width: calc((100% - (2 * 1.5rem)) / 2.5);
    }
}

@media (max-width: 991px) {



    .big-post-side-image {
        height: 100px;
    }


    /* Grids */
    .opinion-grid-card,
    .health-grid-card {
        grid-template-columns: 1fr;
    }

    /* Interview Section */
    .interview-grid-circular {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Province & Entertainment */
    .province-grid-new,
    .entertainment-grid,
    .sports-grid-modern {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-nav-column {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 991.98px) {

    /* Hero Section */
    .featured-article-card {
        height: 450px;
    }

    .featured-title {
        font-size: 2rem;
    }

    .sidebar-article-card {
        margin-bottom: 1.5rem;
    }

    /* Most Commented Widget */
    .most-commented-list {
        gap: 1rem;
    }

    /* Opinion Section */
    .opinion-grid-item {
        padding: 1rem;
    }

    /* Interview Section */
    .interview-featured-card {
        grid-template-columns: 1fr;
    }

    .interview-featured-image {
        height: 300px;
    }

    /* Province Section */
    .province-featured-card {
        min-height: 400px;
    }

    .province-sidebar-article {
        margin-bottom: 1rem;
    }

    .province-featured-new-image {
        height: 350px;
    }

    .province-small-card-new {
        margin-bottom: 1.5rem;
    }

    /* Sports Section */
    .sports-featured-card {
        min-height: 400px;
    }

    .sports-sidebar-card {
        margin-bottom: 1rem;
    }

    /* Entertainment */
    .entertainment-large-card {
        grid-row: auto;
        grid-column: span 1;
    }

    .entertainment-medium-card {
        grid-column: span 1;
    }

    /* Trending */
    .trending-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    /* Footer */
    .footer-widgets-layout .row>div {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-copyright-section .row {
        text-align: center;
    }

    .footer-copyright-left,
    .footer-copyright-right {
        text-align: center !important;
    }
}

/* ============================================================================
   5. TABLET (768px - 991px)
   ============================================================================ */

@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Spacing */
    .section {
        padding: 2rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .featured-article-card {
        height: 350px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .featured-excerpt {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    /* Sidebar Articles */
    .sidebar-article-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .sidebar-article-image {
        width: 100px;
        height: 120px;
        border-radius: 12px 0 0 12px;
    }

    .sidebar-article-content {
        flex: 1;
        padding: 1rem;
        border-radius: 0 12px 12px 0;
    }

    .sidebar-article-title,
    .sidebar-article-content h3.sidebar-article-title {
        font-size: 0.95rem;
    }

    /* Most Commented Widget */
    .most-commented-bubble {
        width: 40px;
        height: 40px;
    }

    .most-commented-count {
        font-size: 1rem;
    }

    .most-commented-title {
        font-size: 0.85rem;
    }

    /* Opinion Section */
    .opinion-featured-large-card {
        border-radius: 12px;
    }

    .opinion-featured-large-image {
        height: 250px;
        border-radius: 12px 12px 0 0;
    }

    .opinion-featured-large-content {
        padding: 1.25rem;
        border-radius: 0 0 12px 12px;
    }

    .opinion-featured-large-title {
        font-size: 1.25rem;
    }

    .opinion-grid-item {
        grid-template-columns: 120px 1fr;
        gap: 0.75rem;
        border-radius: 12px;
    }

    .opinion-grid-image {
        width: 120px;
        height: 120px;
        border-radius: 12px 0 0 12px;
    }

    .opinion-grid-content {
        padding: 1rem;
        border-radius: 0 12px 12px 0;
    }

    .opinion-grid-title {
        font-size: 0.95rem;
    }

    /* Interview Section */
    .interview-featured-image {
        height: 250px;
    }

    .interview-featured-title {
        font-size: 1.5rem;
    }

    .interview-list-card {
        grid-template-columns: 120px 1fr;
        gap: 1rem;
    }

    .interview-list-image {
        width: 120px;
        height: 120px;
    }

    .interview-list-title {
        font-size: 1rem;
    }

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

    /* Health Section */
    .health-featured-large-image {
        height: 250px;
    }

    .health-featured-large-title {
        font-size: 1.8rem;
        letter-spacing: 0;
    }

    .health-featured-large-excerpt {
        display: none;
    }

    .health-grid-item {
        grid-template-columns: 120px 1fr;
    }

    .health-grid-image {
        width: 120px;
        height: 120px;
    }

    /* Highlight Section */
    .highlight-section {
        padding: 2rem 0;
    }

    .highlight-title {
        font-size: 1.5rem;
    }

    .highlight-card-title {
        font-size: 1rem;
    }

    /* Province Section */
    .province-featured-card {
        min-height: 350px;
    }

    .province-featured-image {
        height: 250px;
    }

    .province-featured-title {
        font-size: 1.25rem;
    }

    .province-sidebar-article {
        display: flex;
        flex-direction: row;
    }

    .province-sidebar-image {
        width: 100px;
        height: 100px;
        border-radius: 12px 0 0 12px;
    }

    .province-sidebar-content {
        flex: 1;
        padding: 1rem;
        border-radius: 0 12px 12px 0;
    }

    /* Province New Section */
    .province-featured-new-image {
        height: 280px;
    }

    .province-small-card-new {
        grid-template-columns: 140px 1fr;
        gap: 1rem;
    }

    .province-small-image-wrapper {
        width: 140px;
        height: 140px;
    }

    /* Sports Section */
    .sports-featured-card {
        min-height: 350px;
    }

    .sports-featured-image {
        height: 250px;
    }

    .sports-featured-title {
        font-size: 1.25rem;
    }

    .sports-sidebar-card {
        display: flex;
        flex-direction: row;
    }

    .sports-sidebar-image {
        width: 100px;
        height: 100px;
    }

    /* Entertainment & Trending */
    .entertainment-card-title,
    .trending-card-title {
        font-size: 1rem;
    }

    /* Footer */
    .footer-widgets-layout .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-nav-link {
        font-size: 0.9rem;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .highlight-swiper .swiper-slide {
        width: calc(100vw - 3rem);
        margin-right: 1rem;
    }
}

@media (max-width: 767.98px) {

    /* Section Spacing */
    .section {
        padding: 2rem 0;
    }

    /* Opinion Section */
    .opinion-featured-large-image {
        height: 250px;
    }

    .opinion-grid-item {
        grid-template-columns: 120px 1fr;
        gap: 0.75rem;
    }

    .opinion-grid-image {
        width: 120px;
        height: 120px;
    }

    /* Interview Section */
    .interview-list-card {
        grid-template-columns: 120px 1fr;
    }

    .interview-list-image {
        width: 120px;
        height: 120px;
    }

    /* Province Section */
    .province-featured-new-image {
        height: 300px;
    }

    .province-small-card-new {
        grid-template-columns: 150px 1fr;
    }

    /* Trending */
    .trending-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   6. LARGE MOBILE (640px - 767px)
   ============================================================================ */

@media (min-width: 640px) {
    .mobile-only {
        display: none;
    }
}

/* ============================================================================
   7. MEDIUM MOBILE (576px - 639px)
   ============================================================================ */

@media (max-width: 576px) {

    /* Hero Section */
    .hero-inner {
        padding: 2rem 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Opinion Section */
    .opinion-featured-large-content {
        padding: 1rem;
    }

    .opinion-featured-large-title {
        font-size: 1.1rem;
    }

    /* Sports Section */
    .sports-featured-content {
        padding: 1rem;
    }

    .sports-featured-title {
        font-size: 1.1rem;
    }

    /* Trending Section */
    .trending-header {
        padding: 0 1rem;
    }

    .trending-title {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-brand-name {
        font-size: 1.5rem;
    }

    .footer-nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {

    /* Interview Circular Grid */
    .interview-grid-circular {
        grid-template-columns: 1fr;
    }

    /* Province Cards */
    .province-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {

    /* Opinion Section */
    .opinion-grid-item {
        grid-template-columns: 100px 1fr;
    }

    .opinion-grid-image {
        width: 100px;
        height: 100px;
    }

    /* Interview Section */
    .interview-list-card {
        grid-template-columns: 100px 1fr;
    }

    .interview-list-image {
        width: 100px;
        height: 100px;
    }

    /* Health Section */
    .health-grid-item {
        grid-template-columns: 100px 1fr;
    }

    .health-grid-image {
        width: 100px;
        height: 100px;
    }

    /* Trending */
    .trending-card {
        padding: 1rem;
    }
}

/* ============================================================================
   8. SMALL MOBILE (480px - 575px)
   ============================================================================ */

@media (max-width: 480px) {

    /* ===== BASE STYLES ===== */
    body {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .news-grid-section {
        padding: 3rem 0;
    }

    section.news-grid-section {}

    h1 {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    h4 {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    small,
    .small-text {
        font-size: 0.9rem;
    }

    /* ===== SPACING ===== */
    .tek-mb-1 {
        margin-bottom: 0.5rem;
    }

    .tek-mb-2 {
        margin-bottom: 0.75rem;
    }

    .tek-mb-3 {
        margin-bottom: 1rem;
    }

    .tek-mb-4 {
        margin-bottom: 1.25rem;
    }

    .tek-mb-5 {
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .section {
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .section-header {
        margin-bottom: 1rem;
    }

    /* ===== BUTTONS ===== */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .view-all-btn {
        gap: 0.5rem;
    }

    .view-all-btn svg {
        width: 14px;
        height: 14px;
    }

    /* ===== HEADER ===== */
    .date-time-weather-bar {
        padding: 0.4rem 0;
        display: block !important;
        visibility: visible !important;
    }

    .date-time-weather-content {
        gap: 0.5rem;
        padding: 0 0.3rem;
    }

    .dtw-item {
        font-size: 0.75rem;
        gap: 0.3rem;
    }

    .dtw-item svg,
    .dtw-item i {
        width: 11px;
        height: 11px;
    }

    .dtw-item.weather-item {
        display: none;
    }

    .weather-icon {
        font-size: 0.9rem;
    }

    .modern-topbar {
        padding: 0.5rem 0;
    }

    .modern-topbar .container {
        padding: 0 0.5rem;
    }

    .topbar-content {
        gap: 0.5rem;
    }

    .topbar-right {
        gap: 0.5rem;
    }

    .topbar-item {
        font-size: 1rem;
    }

    .topbar-item svg,
    .topbar-item i {
        width: 14px;
        height: 14px;
    }

    nav.main-nav {
        padding: 0.75rem 0;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .logo-section {
        max-width: 120px;
    }

    .logo-section img {
        width: 100%;
        height: auto;
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
        padding: 1rem 0;
        min-height: 200px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .featured-carousel {
        height: 200px;
    }

    .featured-carousel-image {
        height: 100%;
    }

    /* ===== FEATURED CARDS ===== */
    .featured-article-card {
        height: 300px;
    }

    .featured-title {
        font-size: 2.2rem;
    }

    /* ===== SIDEBAR CARDS ===== */
    .sidebar-article-card {
        margin-bottom: 1rem;
    }

    .sidebar-article-image {
        height: 100px;
        width: 100px;
        border-radius: 0;
    }

    .sidebar-article-content {
        padding: 0.75rem;
    }

    .sidebar-article-title {
        font-size: 0.85rem;
    }

    .sidebar-article-title,
    .sidebar-article-content h3.sidebar-article-title {
        font-size: 1.4rem;
    }

    /* ===== ARTICLE CARDS ===== */
    .article-card {
        margin-bottom: 1rem;
    }

    .article-card-image {
        height: 180px;
    }

    .article-card-content {
        padding: 1rem;
    }

    .article-card-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .article-card-meta {
        font-size: 0.75rem;
    }

    /* ===== HIDE EXCERPTS ===== */
    .sidebar-article-excerpt,
    .opinion-grid-excerpt,
    .hero-main-excerpt,
    .card-content-slider .card-excerpt,
    .province-featured-excerpt,
    .province-sidebar-excerpt,
    .province-featured-excerpt-new,
    .health-grid-excerpt,
    .interview-grid-excerpt,
    .interview-list-excerpt,
    .opinion-grid-card .opinion-grid-excerpt,
    .health-grid-card .health-grid-excerpt,
    .interview-list-card .interview-list-excerpt {
        display: none !important;
    }

    /* ===== HIDE META DATES ===== */
    .opinion-grid-date,
    .health-grid-date,
    .health-grid-meta,
    .interview-list-date,
    .interview-list-meta,
    .interview-card-date,
    .horizontal-grid-date,
    .featured-post-meta,
    .sidebar-article-meta,
    .province-featured-meta,
    .province-sidebar-meta,
    .opinion-grid-card .opinion-grid-date,
    .health-grid-card .health-grid-date,
    .interview-list-card .interview-list-date {
        display: none !important;
    }

    .news-layout-featured {
        margin-bottom: 2rem;
    }

    .news-layout-featured-image {
        height: 180px;
    }

    .news-layout-featured-excerpt {
        display: none;
    }

    .news-layout-image {
        height: 100px;
        width: 100px;
        border-radius: 0;
    }

    .news-layout-title {
        font-size: 1.4rem;
    }

    .top-featured-title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .big-post-title {
        font-size: 2rem;
    }

    .big-post-excerpt {
        display: none;
    }

    /* ===== HIGHLIGHT SECTION ===== */
    .highlight-section {
        padding: 4.5rem 0;
    }

    .section-header-center .section-title {}

    .section-header-center .section-title {
        font-size: 2rem;
    }

    .highlight-header {
        padding: 0 0.75rem 1rem;
    }

    .highlight-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .highlight-divider {
        width: 40px;
    }

    .highlight-swiper {
        padding-bottom: 0;
    }

    .highlight-swiper .swiper-slide {
        width: calc(100vw - 1.5rem);
        margin-right: 0.75rem;
    }

    .highlight-card-swiper {
        padding: 0.3rem;
    }

    .highlight-image-swiper {
        height: 180px;
    }

    .highlight-card-title {
        font-size: 0.9rem;
    }

    .highlight-swiper-pagination {
        margin-top: 0.75rem;
    }

    .highlight-swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }

    .highlight-swiper-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }

    .highlight-date-swiper {
        display: none;
    }

    /* province section */
    .province-featured-card-new {
        height: 350px;
    }

    /* ===== OPINION SECTION ===== */
    .opinion-featured-large-card {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .opinion-featured-large-image {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }

    .opinion-featured-large-content {
        padding: 0.875rem;
        border-radius: 0 0 12px 12px;
    }

    .opinion-featured-large-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .opinion-grid-item {
        grid-template-columns: 100px 1fr;
        /* gap: 0; */
        margin: 0;
        border-radius: 12px;
        display: grid;
        padding: 0;
    }

    .opinion-grid-image {
        width: 100px;
        height: 100px;
        min-height: 100px;
        border-radius: 12px 0 0 12px;
        overflow: hidden;
    }

    .opinion-grid-content {
        padding: 0.75rem;
        border-radius: 0 12px 12px 0;
    }

    .opinion-grid-title {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    /* ===== INTERVIEW SECTION ===== */
    .interview-redesigned-section {
        padding: 1.5rem 0.5rem;
    }

    .interview-featured-card {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 12px;
    }

    .interview-featured-image {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }

    .interview-featured-content {
        padding: 1.25rem;
        border-radius: 0 0 12px 12px;
    }

    .interview-featured-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
        line-height: 1.3;
    }

    .interview-quote-icon {
        font-size: 1.5rem;
        margin-top: 0;
    }

    .interview-featured-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .interview-featured-read-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .interview-list-card {
        grid-template-columns: 100px 1fr;
        min-height: 100px;
        gap: 0.75rem;
        align-items: stretch;
        border-radius: 12px;
        margin-bottom: 1rem;
        padding: 0;
    }

    .interview-list-image {
        width: 100px;
        height: 100px;
        border-radius: 12px 0 0 12px;
    }

    .interview-list-content {
        padding: 0.75rem 1rem;
        border-radius: 0 12px 12px 0;
    }

    .interview-list-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        gap: 0.4rem;
        line-height: 1.3;
    }

    .interview-grid-circular {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .interview-card-circular {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .interview-circular-image {
        width: 100px;
        height: 100px;
        margin: 0 auto 0.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .interview-card-overlay svg {
        width: 24px;
        height: 24px;
    }

    .interview-card-title {
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1.2;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .horizontal-grid-title {
        font-size: 1.4rem;
    }

    .society-card-overlay {
        height: 300px;
    }

    .economics-featured-card {
        display: block;
    }

    .economics-featured-excerpt {
        display: none;
    }

    .economics-card-modern {
        flex-direction: row;
        margin-bottom: 1rem;
    }

    .economics-card-image {
        height: 100px;
        width: 133px;
    }

    .interview-card-date {
        font-size: 0.7rem;
        gap: 0.2rem;
    }

    /* ===== HEALTH SECTION ===== */
    .health-redesigned-section {
        padding: 1.5rem 0;
    }

    .health-featured-large {
        margin-bottom: 1.5rem;
    }

    .health-featured-large-card {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .health-featured-large-image {
        height: 220px;
        border-radius: 12px 12px 0 0;
    }

    .health-featured-large-image img {
        border-radius: 12px 12px 0 0;
    }

    .health-featured-large-content {
        padding: 0 1rem 1rem;
        border-radius: 0 0 12px 12px;
    }

    .health-featured-large-meta {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .health-featured-large-date {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.6rem;
    }

    .health-featured-large-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .health-featured-large-title a {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .health-featured-large-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 0.75rem;
    }

    .health-grid-card {
        margin-bottom: 1rem;
    }

    .health-grid-item {
        grid-template-columns: 100px 1fr;
        gap: 0;
        margin: 0;
        border-radius: 12px;
    }

    .health-grid-image {
        width: 100px;
        height: 100px;
        min-height: 100px;
        border-radius: 12px 0 0 12px;
    }

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

    .health-grid-content {
        padding: 0.75rem;
        border-radius: 0 12px 12px 0;
    }

    .health-grid-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .health-grid-excerpt {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }

    .health-grid-meta {
        gap: 0.5rem;
    }

    .health-grid-date {
        font-size: 0.75rem;
    }

    .health-grid-btn {
        width: 28px;
        height: 28px;
    }

    .health-grid-btn svg {
        width: 12px;
        height: 12px;
    }

    .health-no-posts {
        padding: 2rem 1rem;
    }

    .health-no-posts-text {
        font-size: 0.9rem;
    }

    /* Trending */
    .trending-post-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .trending-post-date {
        font-size: 1rem;
        font-weight: 600;
    }

    /* ===== PROVINCE SECTION ===== */
    .province-sidebar-new {
        margin-top: 1.5rem;
    }

    .province-section {
        padding: 1.5rem 0;
    }

    .province-featured-title-new {
        letter-spacing: 0;
    }

    .province-grid {
        grid-template-columns: 1fr;
    }

    .province-card {
        min-height: auto;
    }

    .province-featured-image {
        height: 200px;
    }

    .province-featured-content {
        padding: 1rem;
    }

    .province-featured-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .province-sidebar-item {
        grid-template-columns: 80px 1fr;
        gap: 0.75rem;
    }

    .province-sidebar-image {
        width: 80px;
        height: 80px;
    }

    .province-sidebar-content {
        padding: 0.5rem;
    }

    .province-sidebar-title {
        font-size: 0.8rem;
    }

    .province-small-card-new {
        margin: 0 0 1rem 0;
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .province-small-card-link {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .province-small-image-wrapper {
        width: 120px;
        height: 90px;
        flex-shrink: 0;
        border-radius: 12px 0 0 12px;
    }

    .province-small-image {
        width: 100%;
        height: 100%;
        border-radius: 12px 0 0 12px;
    }

    .province-small-content-wrapper {
        flex: 1;
        justify-content: center;
        padding: 0.75rem;
    }

    .province-small-title-new {
        font-size: 1.4rem;

    }

    .province-small-meta-new {
        display: none;
    }

    .province-small-date-new {
        font-size: 0.75rem;
    }

    .province-small-arrow-icon {
        display: none;
    }

    .trending-post-card {
        height: 100%;
    }

    /*
    ===== SPORTS SECTION ===== */
    .sports-section {
        padding: 1.5rem 0;
    }

    .sports-featured-image-big {
        height: 200px;
    }

    .sports-grid-card-modern {
        flex-direction: row;
        margin-bottom: 1rem;
    }

    .sports-grid-card-image {
        width: 120px;
        height: 80px;
        flex-shrink: 0;
        border-radius: 12px 0 0 12px;
    }

    .sports-featured-excerpt-big {
        display: none;
    }

    .sports-grid-card-title {
        font-size: 1.4rem;
    }

    /* ===== EDUCATION SECTION ===== */
    .education-simple-card {
        display: flex;
        flex-direction: row;
    }

    .education-simple-link {
        display: flex;
        flex-direction: row;
    }

    .education-simple-content {
        display: block;
    }

    .education-simple-image {
        width: 120px;
        height: 100%;
        flex-shrink: 0;
        order: 2;
    }

    .education-simple-image img {
        height: 120px;
    }

    .education-simple-title {
        font-size: 1.4rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        margin-bottom: 1rem;
    }

    .category-column-big-title {
        font-size: 1.7rem;
    }

    .category-column-small-title {
        font-size: 1.3rem;
    }

    /* ===== ENTERTAINMENT SECTION ===== */
    .entertainment-slider-section {
        padding: 2rem 0;
    }

    .entertainment-unique-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .entertainment-card-large,
    .entertainment-card-medium,
    .entertainment-card-small {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 280px;
    }

    .entertainment-card-large {
        min-height: 320px;
    }

    .entertainment-card-content {
        padding: 1.5rem !important;
    }

    .entertainment-card-large .entertainment-card-content {
        padding: 1.5rem !important;
    }

    .entertainment-card-title {
        font-size: 1.5rem !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
    }

    .entertainment-card-category {
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .entertainment-card-meta {
        gap: 0.5rem;
    }

    .entertainment-card-date {
        font-size: 0.8rem;
    }
}

/* ============================================================================
   9. EXTRA SMALL MOBILE (375px - 479px)
   ============================================================================ */

@media (max-width: 375px) {
    body {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.65rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 0.5rem;
    }
}

/* ============================================================================
   10. TINY MOBILE (< 375px)
   ============================================================================ */

@media (max-width: 360px) {
    .container {
        padding: 0 0.4rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 0.3rem;
    }

    h1 {
        font-size: 1.35rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}