/* ===============================================
   FILTER CONTAINER (Responsive Safe)
=============================================== */
.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}


/* ===============================================
   FILTER BUTTONS (Desktop Layout)
=============================================== */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}


/* ===============================================
   FILTER BUTTON STYLE
=============================================== */
.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    min-width: 100px;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}


/* ===============================================
   MOBILE RESPONSIVE BEHAVIOR
=============================================== */

/* Tablet (wrap, smaller size) */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 8px;
        margin-bottom: 25px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 90px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .filter-buttons {
        gap: 6px;
        margin-bottom: 20px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 70px;
        letter-spacing: 0.5px;
    }
}


/* ======================================================
   EPISODE GRID
====================================================== */
.wwe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Tablet (2 columns) */
@media(max-width: 900px) {
    .wwe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 column) */
@media(max-width: 600px) {
    .wwe-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   EPISODE CARD
====================================================== */
.wwe-card {
    background: #121212;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: .25s ease;
}

.wwe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(229,9,20,0.35);
}

/* Thumbnail */
.wwe-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Body */
.wwe-card-body {
    padding: 15px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.wwe-title {
    font-size: 1.05rem;
    font-weight: 700;
    height: 45px;
    overflow: hidden;
}

/* ======================================================
   META BADGES
====================================================== */
.wwe-meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 30px;
}

/* Base badge */
.badge {
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .75rem;
    white-space: nowrap;
}

/* Badge Colors */
.badge-raw { background: #E50914; }
.badge-smackdown { background: #005DFF; }
.badge-nxt { background: #F6C410; color: #000; }
.badge-ppv { background: #7C00FF; }
.badge-status { background: #333; }
.badge-date { background: #1a1a1a; }

/* ======================================================
   LOAD MORE BUTTON
====================================================== */
.load-more-wrapper {
    text-align: center;
    margin: 35px 0;
}

.load-more-btn {
    padding: 12px 22px;
    background: #E50914;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: none;
}

