/* =====================================================
   SPORTS SECTION - Grid 3x2 Modern Design
   ===================================================== */

.glamzn-sports-section {
    padding: 10px 0 30px 0;
    background: #fff;
}

.dark .glamzn-sports-section {
    background: #0f172a;
}

/* Header */
.glamzn-sports-header {
    padding: 0 16px;
    margin-bottom: 20px;
}

.glamzn-sports-title-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 3px solid #10b981;
}

.glamzn-sports-title-bar i {
    font-size: 20px;
    color: #10b981;
}

.glamzn-sports-title-bar h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.glamzn-sports-title-bar a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
}

.glamzn-sports-title-bar a:hover {
    color: #10b981;
}

.dark .glamzn-sports-title-bar a {
    color: #fff;
}

/* Subcategories */
.glamzn-sports-subcats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.glamzn-sports-subcat {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 20px;
    background: #f1f5f9;
    transition: all 0.3s;
    cursor: pointer;
}

.glamzn-sports-subcat:hover {
    background: #10b981;
    color: #fff;
}

.glamzn-sports-subcat.active {
    background: #10b981;
    color: #fff;
    font-weight: 600;
}

.dark .glamzn-sports-subcat {
    background: #1e293b;
    color: #94a3b8;
}

.dark .glamzn-sports-subcat:hover {
    background: #10b981;
    color: #fff;
}

.dark .glamzn-sports-subcat.active {
    background: #10b981;
    color: #fff;
    font-weight: 600;
}

.glamzn-sports-subcat-more {
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 20px;
    background: #d1fae5;
    transition: all 0.3s;
}

.glamzn-sports-subcat-more:hover {
    background: #10b981;
    color: #fff;
}

.dark .glamzn-sports-subcat-more {
    background: #064e3b;
    color: #6ee7b7;
}

/* Grid 3x2 Layout */
.glamzn-sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 16px;
}

/* Card Style */
.glamzn-sports-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.glamzn-sports-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2);
}

.dark .glamzn-sports-card {
    background: #1e293b;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.dark .glamzn-sports-card:hover {
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.3);
}

.glamzn-sports-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card Image */
.glamzn-sports-card-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.glamzn-sports-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.glamzn-sports-card:hover .glamzn-sports-card-img img {
    transform: scale(1.1);
}

/* Badge */
.glamzn-sports-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Card Content */
.glamzn-sports-card-content {
    padding: 16px;
}

.glamzn-sports-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.glamzn-sports-card:hover h3 {
    color: #10b981;
}

.dark .glamzn-sports-card-content h3 {
    color: #fff;
}

.glamzn-sports-card-content p {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .glamzn-sports-card-content p {
    color: #94a3b8;
}

/* Meta */
.glamzn-sports-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.dark .glamzn-sports-meta {
    color: #94a3b8;
}

.glamzn-sports-meta i {
    font-size: 11px;
    margin-right: 3px;
}

.glamzn-sports-date,
.glamzn-sports-time {
    display: flex;
    align-items: center;
}

.glamzn-sports-time {
    color: #10b981 !important;
    font-weight: 600;
}

.dark .glamzn-sports-time {
    color: #6ee7b7 !important;
}

/* =====================================================
   RESPONSIVE - Tablet
   ===================================================== */

@media (max-width: 1024px) {
    .glamzn-sports-grid {
        gap: 16px;
    }

    .glamzn-sports-card-img {
        height: 180px;
    }
}

/* =====================================================
   RESPONSIVE - Mobile
   ===================================================== */

@media (max-width: 768px) {
    .glamzn-sports-section {
        padding: 16px 0 24px 0;
    }

    .glamzn-sports-header {
        padding: 0 12px;
        margin-bottom: 16px;
    }

    .glamzn-sports-title-bar h2 {
        font-size: 18px;
    }

    .glamzn-sports-title-bar i {
        font-size: 18px;
    }

    .glamzn-sports-subcats {
        gap: 6px;
    }

    .glamzn-sports-subcat,
    .glamzn-sports-subcat-more {
        font-size: 11px;
        padding: 3px 10px;
    }

    .glamzn-sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
    }

    .glamzn-sports-card-img {
        height: 160px;
    }

    .glamzn-sports-card-content {
        padding: 12px;
    }

    .glamzn-sports-card-content h3 {
        font-size: 14px;
    }

    .glamzn-sports-card-content p {
        font-size: 12px;
    }

    .glamzn-sports-meta {
        font-size: 10px;
        gap: 10px;
    }
}

/* =====================================================
   RESPONSIVE - Small Mobile
   ===================================================== */

@media (max-width: 480px) {
    .glamzn-sports-section {
        padding: 14px 0 20px 0;
    }

    .glamzn-sports-header {
        padding: 0 10px;
        margin-bottom: 14px;
    }

    .glamzn-sports-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 10px;
    }

    .glamzn-sports-card-img {
        height: 180px;
    }

    .glamzn-sports-card-content h3 {
        font-size: 15px;
    }

    .glamzn-sports-subcats {
        gap: 4px;
    }

    .glamzn-sports-subcat {
        font-size: 10px;
        padding: 3px 8px;
    }
}
