@charset "UTF-8";

/* =========================================
   SYLHET MEDIA PRO - PREMIUM THEME
   Inspired by Vogue, NYT & Apple News
   ========================================= */

:root {
    /* Brand Colors */
    --brand-primary: #042A2B;
    /* Deep Premium Teal/Black */
    --brand-secondary: #0A5F59;
    /* Emerald Green Accent */
    --brand-accent: #E63946;
    /* Hot Red Accent */
    --brand-light: #F7F9F9;
    /* Ultra Soft Gray Background */
    --brand-pure: #FFFFFF;
    /* Pure White */

    /* Typography */
    --text-main: #1D1D1F;
    /* Apple Gray-Black */
    --text-muted: #86868B;
    /* Apple Muted Gray */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Hind Siliguri', 'Inter', sans-serif;

    /* Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --spacing-1: 8px;
    --spacing-2: 16px;
    --spacing-3: 24px;
    --spacing-4: 32px;
    --spacing-5: 48px;
    --spacing-6: 64px;

    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Resets --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--brand-light);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

/* --- Utils --- */
.container {
    width: 100%;
    max-width: 1280px;
    /* Wider for premium feel */
    margin: 0 auto;
    padding: 0 24px;
}

.d-flex {
    display: flex;
}

.d-flex-col {
    display: flex;
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.text-accent {
    color: var(--brand-accent);
}

.text-light {
    color: rgba(255, 255, 255, 0.85);
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* --- Top Bar (Micro Info) --- */
.top-bar {
    background-color: var(--brand-primary);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.date-time {
    display: flex;
    align-items: center;
    gap: 15px;
}

.divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
}

.pulse-text {
    position: relative;
    padding-left: 12px;
}

.pulse-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--brand-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 18px;
    font-size: 14px;
}

.social-link:hover {
    color: #fff;
}

.btn-subscribe {
    background-color: var(--brand-accent);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-subscribe:hover {
    background-color: #D32F2F;
}

/* --- Glassmorphism Nav --- */
.glass-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--glass-border);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.glass-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--brand-primary);
    margin: 0;
}

.logo span {
    color: var(--brand-secondary);
    font-style: italic;
    font-weight: 600;
}

.logo h1::after {
    content: '.';
    color: var(--brand-accent);
}

.nav-links {
    gap: 32px;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-secondary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hot-badge {
    background: var(--brand-accent);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -10px;
    right: -25px;
    text-transform: uppercase;
}

.nav-actions {
    gap: 20px;
    font-size: 20px;
    color: var(--brand-primary);
}

.search-icon,
.user-action {
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-icon:hover,
.user-action:hover {
    color: var(--brand-secondary);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--brand-primary);
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-wrapper {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.search-wrapper input {
    width: 100%;
    border: none;
    border-bottom: 3px solid var(--brand-primary);
    background: transparent;
    font-size: 3rem;
    font-family: var(--font-heading);
    padding: 20px 0;
    color: var(--brand-primary);
    outline: none;
}

.search-wrapper input::placeholder {
    color: rgba(4, 42, 43, 0.2);
}

.close-search {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 40px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-search:hover {
    color: var(--brand-accent);
}

/* --- Minimalist Ticker --- */
.modern-ticker {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 14px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--brand-primary);
    white-space: nowrap;
    margin-right: 24px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.ticker-label .dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-secondary);
    border-radius: 50%;
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
}

.ticker-content marquee {
    display: flex;
    align-items: center;
}

.ticker-content a {
    color: var(--text-muted);
}

.ticker-content a strong {
    color: var(--brand-primary);
    font-weight: 600;
}

.ticker-content a:hover {
    color: var(--brand-secondary);
}

.ticker-separator {
    margin: 0 20px;
    color: var(--border-color);
}

/* --- Hero Section & Glass Cards --- */
.hero-section {
    margin-top: var(--spacing-4);
    margin-bottom: var(--spacing-5);
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3);
    height: 500px;
    /* Fixed height for premium tight grid */
}

.hero-side {
    gap: var(--spacing-3);
    height: 100%;
}

.glass-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.hero-main .img-wrapper,
.hero-sub .img-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover .img-wrapper img {
    transform: scale(1.05);
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(4, 42, 43, 0.95) 100%);
}

.overlay-gradient-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(4, 42, 43, 0.85) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-4);
    z-index: 10;
}

.hero-sub .hero-content {
    padding: var(--spacing-3);
}

.cat-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cat-pill.secondary {
    background: var(--brand-secondary);
    border-color: transparent;
}

.cat-pill.accent {
    background: var(--brand-accent);
    border-color: transparent;
}

.hero-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.hero-title-sm {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.hero-content a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
}

.author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.author-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* --- Main Layout Grid --- */
.main-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: var(--spacing-5);
    margin-bottom: var(--spacing-6);
}

/* --- Section Headers --- */
.modern-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-4);
    padding-bottom: var(--spacing-2);
    border-bottom: 2px solid var(--border-color);
}

.modern-section-header h2 {
    font-size: 32px;
    position: relative;
    padding-bottom: 0;
}

.modern-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    /* matching padding-bottom + border of parent */
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--brand-secondary);
    border-radius: 2px;
}

.view-all-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    color: var(--brand-primary);
}

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

/* --- News Grid Style --- */
.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-3);
}

.news-card {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid var(--border-color);
}

.hover-lift-subtle {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift-subtle:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.news-img {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 4/3;
}

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

.hover-lift-subtle:hover .news-img img {
    transform: scale(1.05);
}

.premium-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #F5B041;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.news-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.news-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-title a:hover {
    color: var(--brand-secondary);
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    font-size: 12px;
    color: #A0A0A0;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

/* Trendy Banner */
.trendy-banner {
    position: relative;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #154360 100%);
    border-radius: var(--radius-md);
    padding: var(--spacing-4);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.banner-content h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 10px;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-primary {
    background: #fff;
    color: var(--brand-primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
}

.banner-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Sidebar Widgets --- */
.premium-widget {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--spacing-3);
    margin-bottom: var(--spacing-4);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-size: 20px;
    margin-bottom: var(--spacing-3);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.trending-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.trending-item:first-child {
    padding-top: 0;
}

.t-rank {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #E0E0E0;
    line-height: 1;
    min-width: 45px;
    transition: color 0.3s ease;
}

.trending-item:hover .t-rank {
    color: var(--brand-secondary);
}

.trending-item:hover .t-info h4 {
    color: var(--brand-secondary);
}

.t-info h4 {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.4;
    color: var(--text-main);
    font-weight: 600;
}

.t-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Newsletter */
.newsletter-widget {
    background: var(--brand-light);
    text-align: center;
    padding: var(--spacing-4) var(--spacing-3);
    border: none;
}

.nl-icon {
    font-size: 40px;
    color: var(--brand-secondary);
    margin-bottom: 16px;
}

.newsletter-widget h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.newsletter-widget p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.nl-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-family: var(--font-body);
    outline: none;
}

.nl-form input:focus {
    border-color: var(--brand-secondary);
}

.nl-form button {
    width: 100%;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nl-form button:hover {
    background: var(--brand-secondary);
}

/* --- Multimedia Block --- */
.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3);
    height: 400px;
}

.media-large {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.media-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.media-large:hover .play-btn-large {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--brand-accent);
    border-color: transparent;
}

.media-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-4);
    z-index: 10;
    color: #fff;
}

.media-info h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
}

.media-info span {
    font-size: 13px;
    opacity: 0.8;
}

.media-small-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: space-between;
}

.media-item {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 12px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
    flex: 1;
}

.media-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-hover);
}

.m-img-wrap {
    position: relative;
    width: 120px;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.m-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.play-btn-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.m-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.m-content span {
    font-size: 12px;
    color: var(--text-muted);
}


/* --- Ultra Modern Footer --- */
.modern-footer {
    background-color: var(--brand-primary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--spacing-6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-5);
}

.f-brand h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 16px;
}

.f-brand span {
    color: var(--brand-secondary);
    font-style: italic;
}

.f-brand p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-right: 40px;
}

.f-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 12px;
}

.f-socials a:hover {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    transform: translateY(-3px);
}

.f-links h4,
.f-apps h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.f-links ul li {
    margin-bottom: 12px;
}

.f-links ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.f-links ul a:hover {
    color: #fff;
    transform: translateX(5px);
    display: inline-block;
}

.f-apps p {
    font-size: 14px;
    margin-bottom: 20px;
}

.app-buttons a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.app-buttons a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.app-buttons i {
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    font-size: 14px;
}

.dev-credit strong {
    color: var(--brand-secondary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
}

/* BTT */
.premium-btt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 99;
    transition: var(--transition-smooth);
}

.premium-btt:hover {
    background: var(--brand-secondary);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        height: auto;
        grid-template-columns: 1fr;
    }

    .hero-main {
        height: 400px;
    }

    .hero-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .hero-sub {
        height: 250px;
    }

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

    .media-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .media-large {
        height: 400px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .top-links {
        display: none;
    }

    .hero-side {
        grid-template-columns: 1fr;
    }

    .news-grid-3 {
        grid-template-columns: 1fr;
    }

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

    .trendy-banner {
        flex-direction: column;
        text-align: center;
    }

    .trendy-banner .banner-content {
        margin-bottom: 20px;
    }

    .mobile-flex-col {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}