/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
    /* Brand Colors */
    --primary-red: #b10202;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #999999;
    --dark-gray: #333333;
    --text-gray: #666666;
    
    /* Menu Colors */
    --menu-bg: #000000;
    --menu-hover: #C41E3A;
    
    /* Category Colors */
    --color-release: #C41E3A;
    --color-video: #9C27B0;
    --color-announcement: #2196F3;
    --color-press: #FF9800;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--primary-white);
    color: var(--dark-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   HAMBURGER MENU BUTTON
   ============================================ */
.menu-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
}

.menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary-white);
    transition: all 0.3s ease;
    display: block;
}

.menu-btn:hover span {
    background: var(--primary-red);
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Scroll state */
body.scrolled .menu-btn span {
    background: var(--primary-black);
}

body.scrolled .menu-btn:hover span {
    background: var(--primary-red);
}

/* ============================================
   SIDE MENU
   ============================================ */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--menu-bg);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 30px 40px;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
}

.close-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--primary-white);
    top: 50%;
    left: 50%;
}

.close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-btn:hover::before,
.close-btn:hover::after {
    background: var(--primary-red);
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin-bottom: 25px;
}

.menu-items li a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.menu-items li a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.menu-items li a.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* ============================================
   NEWS BUTTON
   ============================================ */
.news-btn {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    padding: 30px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 900;
    transition: all 0.3s ease;
}

.news-btn:hover {
    background: var(--primary-red);
    padding-left: 50px;
}

.news-btn.active {
    background: var(--primary-red);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.1) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.logo-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: 10;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.logo-link:hover {
    transform: translate(-50%, -80%) scale(1.05);
}

.hero-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
}

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 10;
    font-size: 10px;
    color: var(--primary-white);
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
    margin-top: 10px;
}

.hero-title {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--primary-white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

/* ============================================
   FILTER SECTION
   ============================================ */
.filter-section {
    background: var(--primary-white);
    padding: 30px 0;
    border-bottom: 1px solid var(--light-gray);
    position: static;
    z-index: auto;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--dark-gray);
    color: var(--dark-gray);
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: "Montserrat", sans-serif;
}

.filter-btn:hover {
    background: var(--dark-gray);
    color: var(--primary-white);
}

.filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--primary-white);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    background: var(--primary-white);
    padding: 60px 0;
}

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

/* ============================================
   FEATURED ARTICLE
   ============================================ */
.featured-article {
    position: relative;
    margin-bottom: 80px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.1) brightness(0.8);
    transition: all 0.5s ease;
}

.featured-article:hover .featured-image {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1) brightness(1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-release);
    color: var(--primary-white);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.category-badge.video {
    background: var(--color-video);
}

.category-badge.announcement {
    background: var(--color-announcement);
}

.category-badge.press {
    background: var(--color-press);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 10;
    color: var(--primary-white);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    opacity: 0.9;
}

.article-meta .separator {
    color: rgba(255, 255, 255, 0.5);
}

.featured-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.read-more-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--primary-white);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-white);
    color: var(--primary-red);
}

/* ============================================
   NEWS GRID
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    background: var(--primary-white);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--light-gray);
}

.news-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: all 0.5s ease;
}

.news-card:hover .card-image {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.1) brightness(1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.news-card:hover .card-overlay {
    background: rgba(196, 30, 58, 0.3);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    z-index: 5;
    transition: all 0.3s ease;
}

.news-card:hover .play-icon {
    background: var(--primary-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--dark-gray);
}

/* ============================================
   LOAD MORE
   ============================================ */
.load-more-container {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--dark-gray);
    color: var(--dark-gray);
    padding: 15px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.load-more-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--primary-white);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: var(--dark-gray);
    padding: 80px 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    background: var(--primary-red);
    color: var(--primary-white);
    padding: 18px 40px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.newsletter-btn:hover {
    background: var(--primary-white);
    color: var(--primary-red);
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--primary-white);
    font-size: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--primary-black);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 50px 40px 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-content .copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

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

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 6px;
        bottom: 60px;
    }
    
    .hero-logo {
        width: 180px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .featured-title {
        font-size: 30px;
    }
    
    .featured-image-wrapper {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-btn {
        top: 20px;
        right: 20px;
    }
    
    .news-btn {
        padding: 20px 25px;
        font-size: 12px;
    }
    
    .side-menu {
        width: 250px;
        right: -250px;
        padding: 60px 20px 30px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 4px;
        bottom: 40px;
    }
    
    .filter-container {
        padding: 0 20px;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .featured-article {
        margin-bottom: 50px;
    }
    
   .featured-image-wrapper {
        height: 350px;
    }
    
    .featured-content {
        padding: 20px;
        bottom: 0;
    }
    
    .article-meta {
        margin-bottom: 12px;
        font-size: 11px;
    }
    
    .featured-title {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .featured-excerpt {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .read-more-btn {
        padding: 12px 28px;
        font-size: 12px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-container {
        padding: 0 20px;
    }
    
    .newsletter-title {
        font-size: 26px;
    }
    
    .newsletter-subtitle {
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links span {
        display: none;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-close {
        top: -45px;
        font-size: 35px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-logo {
        width: 130px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .featured-image-wrapper {
        height: 380px;
    }
    
    .featured-content {
        padding: 18px;
    }
    
    .category-badge {
        top: 12px;
        left: 12px;
        padding: 5px 14px;
        font-size: 9px;
    }
    
    .featured-title {
        font-size: 19px;
        line-height: 1.2;
    }
    
    .featured-excerpt {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .read-more-btn {
        padding: 10px 24px;
        font-size: 11px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .newsletter-title {
        font-size: 22px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-content {
    animation: fadeIn 0.8s ease-in;
}

.news-card {
    animation: slideUp 0.6s ease-out both;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }
.news-card:nth-child(5) { animation-delay: 0.5s; }
.news-card:nth-child(6) { animation-delay: 0.6s; }
.news-card:nth-child(7) { animation-delay: 0.7s; }
.news-card:nth-child(8) { animation-delay: 0.8s; }
.news-card:nth-child(9) { animation-delay: 0.9s; }



/* ============================================
   SECTION HEADER (Add after FILTER SECTION)
   ============================================ */
.section-header {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 40px;
}

.header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.results-count {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.per-page-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.per-page-selector label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.items-per-page-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--primary-white);
    color: var(--dark-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23333333' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.items-per-page-select:hover {
    border-color: var(--primary-red);
}

.items-per-page-select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(177, 2, 2, 0.1);
}

/* ============================================
   PAGINATION STYLES (Replace LOAD MORE section)
   ============================================ */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #ddd;
    color: var(--dark-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pagination-btn:hover:not(.disabled) {
    background: var(--light-gray);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.pagination-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    font-weight: 600;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-number {
    min-width: 40px;
}

.pagination-prev,
.pagination-next {
    padding: 0 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pagination-prev svg,
.pagination-next svg {
    width: 8px;
    height: 12px;
}

.pagination-ellipsis {
    padding: 0 8px;
    color: var(--medium-gray);
    font-weight: 500;
    user-select: none;
}

.pagination-info {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Hide the old load more button */
.load-more-container {
    display: none;
}

/* ============================================
   RESPONSIVE - PAGINATION
   ============================================ */
@media (max-width: 768px) {
    .section-header {
        padding: 0 20px;
        margin: 20px auto;
    }

    .header-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .per-page-selector {
        width: 100%;
        justify-content: space-between;
    }

    .items-per-page-select {
        flex: 1;
        max-width: 120px;
    }

    .pagination-container {
        padding: 40px 15px;
    }
    
    .pagination {
        gap: 6px;
    }
    
    .pagination-btn {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .pagination-number {
        min-width: 36px;
    }
    
    .pagination-text {
        display: none;
    }
    
    .pagination-prev,
    .pagination-next {
        padding: 0 12px;
    }
    
    .pagination-info {
        font-size: 13px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 4px;
    }
    
    .pagination-btn {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .pagination-number {
        min-width: 32px;
    }
}
.category-badge.releases {
    background: #b10202;
}
.category-badge.videos {
    background: #7c3aed;
}
.category-badge.announcements {
    background: #059669;
}
.category-badge.press {
    background: var(--color-press);
}
