/*
Theme Name: Ronin Telegraph Theme
Description: Professional news theme for Ronin Network ecosystem featuring Kitsu
Version: 1.0.0
Author: Ronin Telegraph Team
*/

/* SECTION: CSS Reset and Root Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --ronin-blue: #14213D;
    --ronin-red: #E63946;
    --ronin-cian: #00CFC1;
    --ronin-white: #FFFFFF;
    --ronin-gray: #333333;
    
    /* Project Colors */
    --axie-color: #ff6b35;
    --ronin-color: #0066cc;
    --pixels-color: #00ff00;
    
    /* Additional Colors */
    --ronin-light: #f8fafc;
    --ronin-dark: #0f1419;
    --border-color: rgba(255,255,255,0.1);
}

/* SECTION: Base Styles */
body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--ronin-gray);
    background-color: var(--ronin-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION: Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Press Start 2P', cursive;
    color: var(--ronin-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: 0.9rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: var(--ronin-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ronin-cian);
}

/* SECTION: Header Styles */
.header {
    background: linear-gradient(135deg, var(--ronin-blue) 0%, var(--ronin-dark) 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--ronin-cian);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--ronin-white);
    text-shadow: 0 0 10px var(--ronin-cian);
}

/* SECTION: Search Bar */
.search-bar form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 3px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.search-bar input {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: transparent;
    color: white;
    width: 300px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-bar input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-bar button {
    padding: 12px 16px;
    background: var(--ronin-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover {
    background: var(--ronin-cian);
    transform: scale(1.1);
}

/* SECTION: Navigation */
.main-nav {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--ronin-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

/* SECTION: Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    min-width: 280px;
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--ronin-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: var(--ronin-light);
    color: var(--ronin-red);
    transform: translateX(8px);
}

/* SECTION: Project Icons and Colors */
.project-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.axie-link {
    border-left: 4px solid var(--axie-color) !important;
}

.axie-link .project-icon {
    background: var(--axie-color);
}

.ronin-link {
    border-left: 4px solid var(--ronin-color) !important;
}

.ronin-link .project-icon {
    background: var(--ronin-color);
}

.pixels-link {
    border-left: 4px solid var(--pixels-color) !important;
}

.pixels-link .project-icon {
    background: var(--pixels-color);
}

.all-items {
    font-weight: 700;
    color: var(--ronin-blue) !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
    background: rgba(20, 33, 61, 0.02);
}

/* SECTION: Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--ronin-blue) 0%, var(--ronin-dark) 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,207,193,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: var(--ronin-cian);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.hero-cta {
    background: var(--ronin-red);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: var(--ronin-cian);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,207,193,0.4);
}

/* SECTION: Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* SECTION: Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.article-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(45deg, var(--ronin-blue), var(--ronin-cian));
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-image::after {
    content: '🦊';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.5rem;
}

.article-content {
    padding: 25px;
}

.article-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Press Start 2P', cursive;
    letter-spacing: 1px;
}

.article-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--ronin-blue);
    font-family: 'Inter', sans-serif;
}

.article-title:hover {
    color: var(--ronin-red);
}

.article-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
    font-family: 'Inter', sans-serif;
}

/* SECTION: Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.widget-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: var(--ronin-blue);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--ronin-red);
    padding-bottom: 10px;
}

.widget-post {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.widget-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--ronin-blue), var(--ronin-cian));
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.widget-content {
    flex: 1;
}

.widget-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--ronin-gray);
}

.widget-post-title:hover {
    color: var(--ronin-red);
}

.widget-post-date {
    font-size: 0.75rem;
    color: #999;
}

/* SECTION: Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--ronin-cian);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--ronin-red);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: var(--ronin-cian);
    transform: translateY(-2px);
}

/* SECTION: Footer */
.footer {
    background: var(--ronin-blue);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--ronin-cian);
    margin-bottom: 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--ronin-cian);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* SECTION: Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .search-bar input {
        width: 250px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--ronin-dark);
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        margin-top: 10px;
        margin-left: 20px;
    }

    .dropdown-link {
        color: white;
        padding: 12px 15px;
    }

    .dropdown-link:hover {
        background: rgba(255,255,255,0.1);
        color: var(--ronin-cian);
    }

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

    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1rem;
    }

    .search-bar input {
        width: 200px;
        padding: 10px 15px;
    }

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

    .hero-section {
        padding: 40px 0;
    }
}

/* SECTION: Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* SECTION: Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--ronin-cian);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====================================
   HERO SECTION & NEWS GRID STYLES
   ==================================== */

/* SECTION: Hero Article (Full Width) */
.hero-section {
    margin: 40px 0;
    background: transparent;
}

.hero-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-image {
    height: 400px;
    background: linear-gradient(135deg, #6a4c93 0%, #9a4993 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--ronin-blue) 0%, var(--ronin-cian) 100%);
}

.hero-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
}

.hero-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--ronin-red);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Press Start 2P', cursive;
}

.hero-content {
    padding: 30px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--ronin-blue);
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.hero-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-title a:hover {
    color: var(--ronin-red);
}

.hero-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
    font-family: 'Inter', sans-serif;
}

.hero-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, var(--ronin-cian), var(--ronin-blue));
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION: News Grid (2 rows x 3 columns) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-image {
    height: 180px;
    background: linear-gradient(45deg, var(--ronin-cian), var(--ronin-blue));
    position: relative;
    overflow: hidden;
}

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

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(45deg, var(--ronin-cian), var(--ronin-blue));
}

.news-emoji {
    font-size: 2rem;
    margin-bottom: 8px;
}

.news-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.news-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Press Start 2P', cursive;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--ronin-blue);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--ronin-red);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
    font-family: 'Inter', sans-serif;
}

.news-author {
    font-weight: 600;
    color: #666;
}

.news-time {
    color: #999;
}

/* SECTION: Media Section (Podcasts & Videos) */
.media-section {
    margin: 60px 0;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--ronin-blue);
    margin-bottom: 40px;
    font-family: 'Press Start 2P', cursive;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media-item {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.media-thumbnail {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

.media-thumbnail.podcast {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
}

.media-thumbnail.video {
    background: linear-gradient(45deg, var(--ronin-red), #ff6b6b);
}

.media-thumbnail.game {
    background: linear-gradient(45deg, var(--pixels-color), #10b981);
}

.media-icon {
    font-size: 3rem;
    z-index: 2;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.media-content {
    padding: 20px;
}

.media-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--ronin-blue);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.media-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.media-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
}

.media-duration {
    background: var(--ronin-red);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.media-date {
    color: #999;
}

/* SECTION: Load More Button */
.load-more-section {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: linear-gradient(135deg, var(--ronin-red), #ff6b35);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, var(--ronin-cian), #00b4a6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,207,193,0.4);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

.load-more-btn:hover .btn-icon {
    transform: translateY(2px);
}

/* SECTION: Responsive Design */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .media-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .media-thumbnail {
        height: 150px;
        font-size: 2rem;
    }
    
    .media-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-emoji {
        font-size: 2rem;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .media-content {
        padding: 15px;
    }
}