/* ============================================
   MANGO BUNCH - HOMEPAGE STYLES
   Entertainment News - Premium Redesign v2
   ============================================ */

/* Homepage Container */
.home-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Hide author names on homepage */
.home-container .article-meta .author,
.home-container .article-meta .author + span,
.home-container .card-meta .author,
.home-container .card-meta .author + span {
    display: none;
}

/* ============================================
   SECTION STYLES - Common with Sub-categories
   ============================================ */

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-orange);
    gap: 20px;
    flex-wrap: nowrap;
}

.section-header .section-title {
    font-family: var(--font-headings);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    border: none;
    flex-shrink: 0;
}

/* Sub-categories Navigation */
.section-header .sub-categories {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-wrap: nowrap;
    padding-left: 15px;
    border-left: 1px solid var(--border-light);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    max-width: calc(100% - 200px); /* Leave space for title and view all */
}

.section-header .sub-categories::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.section-header .sub-cat-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 4px 10px;
    border-radius: 15px;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-header .sub-cat-link:hover {
    background: var(--primary-orange);
    color: var(--dark-bg);
}

.section-header .view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.section-header .view-all:hover {
    color: var(--primary-orange-hover);
    gap: 8px;
}

/* Category Tag */
.category-tag {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--dark-bg);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    border-radius: 3px;
}

/* ============================================
   HERO SECTION - Premium Layout
   1 Large with side text panel + 5 cards below
   ============================================ */

.hero-section {
    margin-bottom: 40px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 420px;
}

.hero-main .hero-image {
    position: relative;
    overflow: hidden;
}

.hero-main .hero-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-main:hover .hero-image img {
    transform: scale(1.03);
}

.hero-main .hero-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-main .category-tag {
    align-self: flex-start;
    margin-bottom: 15px;
}

.hero-main .hero-title {
    font-family: var(--font-headings);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.hero-main .hero-title a {
    color: var(--text-dark);
}

.hero-main .hero-title a:hover {
    color: var(--primary-orange);
}

.hero-main .hero-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.hero-main .hero-meta {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Grid - 5 Cards Below */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.hero-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hero-card .card-image {
    position: relative;
    overflow: hidden;
}

.hero-card .card-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.hero-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.hero-card .card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-card .card-title a {
    color: var(--white);
}

.hero-card .card-title a:hover {
    color: var(--primary-orange);
}

/* ============================================
   SHOWBIZ SECTION - Entertainment Layout
   3 Large + 4 Medium + Sidebar List (No BG)
   ============================================ */

.showbiz-section {
    margin-bottom: 40px;
}

.showbiz-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 25px;
}

.showbiz-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Top Row - 3 Large Cards */
.showbiz-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.showbiz-card-large {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.showbiz-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.showbiz-card-large .card-image {
    position: relative;
    overflow: hidden;
}

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

.showbiz-card-large:hover .card-image img {
    transform: scale(1.05);
}

.showbiz-card-large .category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.showbiz-card-large .card-content {
    padding: 16px;
}

.showbiz-card-large .card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showbiz-card-large .card-title a:hover {
    color: var(--primary-orange);
}

.showbiz-card-large .card-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* Bottom Row - 4 Medium Cards */
.showbiz-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.showbiz-card-medium {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.showbiz-card-medium:hover {
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.showbiz-card-medium .card-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showbiz-card-medium:hover .card-image img {
    transform: scale(1.05);
}

.showbiz-card-medium .category-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 8px;
    padding: 3px 6px;
}

.showbiz-card-medium .card-content {
    padding: 12px;
}

.showbiz-card-medium .card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showbiz-card-medium .card-title a:hover {
    color: var(--primary-orange);
}

.showbiz-card-medium .card-meta {
    font-size: 11px;
    color: var(--text-light);
}

/* Showbiz Sidebar - No Background */
.showbiz-sidebar {
    padding: 0;
}

.showbiz-sidebar .sidebar-title {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

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

.sidebar-item .item-image {
    flex-shrink: 0;
    width: 75px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
}

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

.sidebar-item:hover .item-image img {
    transform: scale(1.05);
}

.sidebar-item .item-content {
    flex: 1;
}

.sidebar-item .category-tag {
    font-size: 8px;
    padding: 2px 5px;
    margin-bottom: 5px;
}

.sidebar-item .item-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-item .item-title a:hover {
    color: var(--primary-orange);
}

.sidebar-item .item-meta {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============================================
   WORLD CINEMA SECTION - Dark Cards
   Title above, Image below with dark background
   ============================================ */

.world-cinema-section {
    margin-bottom: 40px;
}

.cinema-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cinema-card-flip {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cinema-card-flip:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.cinema-card-flip .card-content {
    padding: 18px 16px 14px;
    order: 1;
}

.cinema-card-flip .category-tag {
    margin-bottom: 10px;
    background: var(--primary-orange);
}

.cinema-card-flip .card-title {
    font-family: var(--font-headings);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 69px;
}

.cinema-card-flip .card-title a {
    color: var(--white);
}

.cinema-card-flip .card-title a:hover {
    color: var(--primary-orange);
}

.cinema-card-flip .card-image {
    order: 2;
    overflow: hidden;
}

.cinema-card-flip .card-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cinema-card-flip:hover .card-image img {
    transform: scale(1.05);
}

/* ============================================
   LIFESTYLE + TECH SECTION
   1 Featured + 8 Mini Grid (2 columns)
   ============================================ */

.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.col-section .section-header {
    margin-bottom: 18px;
}

.col-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Featured Left */
.col-featured {
    position: relative;
}

.col-featured .card-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

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

.col-featured:hover .card-image img {
    transform: scale(1.03);
}

.col-featured .category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
}

.col-featured .card-title {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.col-featured .card-title a:hover {
    color: var(--primary-orange);
}

.col-featured .card-excerpt {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.col-featured .card-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* Mini Grid Right - 2 columns x 4 rows = 8 items */
.col-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mini-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-item .item-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.mini-item .item-image img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-item:hover .item-image img {
    transform: scale(1.05);
}

.mini-item .category-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 7px;
    padding: 2px 5px;
}

.mini-item .item-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-item .item-title a:hover {
    color: var(--primary-orange);
}

.mini-item .item-meta {
    font-size: 10px;
    color: var(--text-light);
}

/* ============================================
   SPORTS SECTION - Redesigned Premium
   Featured banner + 4 cards row + 4 horizontal items
   ============================================ */

.sports-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.sports-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(252,176,64,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sports-section .section-header {
    border-bottom-color: var(--primary-orange);
    margin-bottom: 25px;
}

.sports-section .section-title {
    color: var(--text-dark);
}

.sports-section .sub-categories {
    border-left-color: var(--border-light);
}

.sports-section .sub-cat-link {
    color: var(--text-gray);
}

.sports-section .sub-cat-link:hover {
    background: var(--primary-orange);
    color: var(--dark-bg);
}

.sports-section .view-all {
    color: var(--primary-orange);
}

/* Sports Top - Featured Banner + Side Card */
.sports-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.sports-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.sports-banner .card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sports-banner:hover .card-image img {
    transform: scale(1.03);
}

.sports-banner .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: #e74c3c;
}

.sports-banner .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

.sports-banner .card-title {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 10px;
}

.sports-banner .card-title a {
    color: var(--white);
}

.sports-banner .card-title a:hover {
    color: var(--primary-orange);
}

.sports-banner .card-excerpt {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sports Side Stack */
.sports-side-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sports-side-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sports-side-item:hover {
    background: rgba(0,0,0,0.06);
}

.sports-side-item .item-image {
    flex-shrink: 0;
    width: 90px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
}

.sports-side-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sports-side-item:hover .item-image img {
    transform: scale(1.05);
}

.sports-side-item .item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sports-side-item .item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sports-side-item .item-title a {
    color: var(--text-dark);
}

.sports-side-item .item-title a:hover {
    color: var(--primary-orange);
}

.sports-side-item .item-meta {
    font-size: 11px;
    color: var(--text-light);
}

/* Sports Cards Grid - 4 cards */
.sports-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sports-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sports-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.sports-card .card-image img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.sports-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 80%, transparent 100%);
}

.sports-card .card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sports-card .card-title a {
    color: var(--white);
}

.sports-card .card-title a:hover {
    color: var(--primary-orange);
}

/* ============================================
   MONEY & BUSINESS - Complex Layout
   Like Indian Express style
   ============================================ */

.money-business-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.mb-section .section-header {
    margin-bottom: 18px;
}

.mb-complex {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

/* MB Featured + Small Cards */
.mb-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mb-featured {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.mb-featured:hover .card-image img {
    transform: scale(1.03);
}

.mb-featured .card-content {
    padding: 15px 0;
}

.mb-featured .card-title {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mb-featured .card-title a:hover {
    color: var(--primary-orange);
}

.mb-small-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mb-small-card .card-image {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.mb-small-card .card-image img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mb-small-card:hover .card-image img {
    transform: scale(1.05);
}

.mb-small-card .card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mb-small-card .card-title a:hover {
    color: var(--primary-orange);
}

/* MB List Right */
.mb-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mb-list-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-light);
}

.mb-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mb-list-item .item-content {
    flex: 1;
}

.mb-list-item .item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mb-list-item .item-title a:hover {
    color: var(--primary-orange);
}

.mb-list-item .item-meta {
    font-size: 11px;
    color: var(--text-light);
}

.mb-list-item .item-image {
    flex-shrink: 0;
    width: 90px;
    height: 65px;
    border-radius: 4px;
    overflow: hidden;
}

.mb-list-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mb-list-item:hover .item-image img {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .showbiz-wrapper {
        grid-template-columns: 1fr;
    }
    
    .showbiz-sidebar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .showbiz-sidebar .sidebar-title {
        grid-column: 1 / -1;
    }
    
    .sidebar-item {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .cinema-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sports-cards-row {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Sub-categories responsive */
    .section-header .sub-categories {
        max-width: 50%;
    }
}

@media (max-width: 992px) {
    .hero-main {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-main .hero-image img {
        min-height: 280px;
        height: 280px;
    }
    
    .hero-main .hero-content {
        padding: 25px;
    }
    
    .hero-main .hero-title {
        font-size: 26px;
    }
    
    .hero-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .showbiz-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showbiz-bottom {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .showbiz-sidebar {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .two-col-section {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .cinema-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sports-top {
        grid-template-columns: 1fr;
    }
    
    .sports-side-stack {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sports-side-item {
        flex: 1 1 calc(50% - 5px);
    }
    
    .sports-cards-row {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .money-business-section {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* Sub-categories - hide on tablet */
    .section-header .sub-categories {
        display: none;
    }
    
    .section-header {
        flex-wrap: nowrap;
    }
}

@media (max-width: 768px) {
    .home-container {
        padding: 15px;
    }
    
    .hero-main .hero-image img {
        min-height: 220px;
        height: 220px;
    }
    
    .hero-main .hero-title {
        font-size: 22px;
    }
    
    .hero-main .hero-excerpt {
        font-size: 14px;
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showbiz-top {
        grid-template-columns: 1fr;
    }
    
    .showbiz-card-large .card-image img {
        height: 180px;
    }
    
    .showbiz-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showbiz-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .col-wrapper {
        grid-template-columns: 1fr;
    }
    
    .col-featured .card-image img {
        height: 220px;
    }
    
    .col-mini-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mini-item .item-image img {
        height: 70px;
    }
    
    .cinema-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cinema-card-flip .card-title {
        font-size: 15px;
        min-height: auto;
    }
    
    .sports-section {
        padding: 20px;
    }
    
    .sports-banner .card-image img {
        height: 220px;
    }
    
    .sports-banner .card-title {
        font-size: 20px;
    }
    
    .sports-side-item {
        flex: 1 1 100%;
    }
    
    .sports-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mb-complex {
        grid-template-columns: 1fr;
    }
    
    .mb-small-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-header .section-title {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .hero-main .hero-content {
        padding: 20px;
    }
    
    .hero-main .hero-title {
        font-size: 20px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-card .card-image img {
        height: 160px;
    }
    
    .showbiz-bottom {
        grid-template-columns: 1fr;
    }
    
    .showbiz-card-medium .card-image img {
        height: 150px;
    }
    
    .showbiz-sidebar {
        grid-template-columns: 1fr;
    }
    
    .col-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mini-item .item-image img {
        height: 80px;
    }
    
    .cinema-grid {
        grid-template-columns: 1fr;
    }
    
    .cinema-card-flip .card-image img {
        height: 180px;
    }
    
    .sports-cards-row {
        grid-template-columns: 1fr;
    }
    
    .sports-card .card-image img {
        height: 160px;
    }
    
    .mb-small-cards {
        grid-template-columns: 1fr 1fr;
    }
}