/**
 * Design System Components Styles
 * Extracted from: inc/functions-design-system.php
 * Generated: 2026-04-03
 */

.news-list-container, .game-slider-container {
    margin-bottom: 2rem;
}

.news-list-container__header, .game-slider-container__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.news-list, .game-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.news-list::-webkit-scrollbar,
.game-slider::-webkit-scrollbar {
    display: none;
}

.game-card, .news-list__item {
    flex: 0 0 auto;
    background: var(--bg-elevated);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover, .news-list__item:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .news-list__item, .game-card {
        width: 85%;
        min-width: 85%;
    }
}
