/**
 * SlotsLaunch AI Description Styles
 */

/* Single slot page - hide elements that don't apply to games (theme-agnostic) */
.single-slotsl .entry-meta,
.single-slotsl .post-navigation {
    display: none !important;
}

/* Try More Free Games widget - 5 per line, 10 games, no container styling */
.slotsl-more-games-wrapper {
    margin-top: 30px;
    min-width: 0;
}
.slotsl-more-games-wrapper .sl-featured-widget,
.slotsl-more-games-wrapper .sl-featured-widget-container {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.slotsl-more-games-wrapper .sl-featured-widget {
    width: 100%;
}
.slotsl-more-games-wrapper .sl-featured-title {
    color: inherit;
    padding: 0 0 15px 0;
}
.slotsl-more-games-wrapper .sl-widget-games {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
}
.slotsl-more-games-wrapper .slotsl-game {
    border-radius: 6px;
    padding: 0;
    min-width: 0;
    width: 100% !important;
}
.slotsl-more-games-wrapper .slotsl-game img,
.slotsl-more-games-wrapper .slotsl-game a img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}
.slotsl-more-games-wrapper .slotsl-game .slotsl-ai-game-title {
    margin: 8px 0 0 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}
.slotsl-more-games-wrapper .slotsl-game .slotsl-ai-game-title a {
    color: inherit;
    text-decoration: none;
    font-size: 14px !important;
}
.slotsl-more-games-wrapper .slotsl-game .slotsl-ai-game-title a:hover {
    text-decoration: underline;
}
@media (max-width: 1200px) {
    .slotsl-more-games-wrapper .sl-widget-games {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .slotsl-more-games-wrapper .sl-widget-games {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}
