/**
 * Game Card Shortcode Styles
 * Styles for the [game_card] shortcode component
 */

.game-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 2rem 0;
    padding: 1rem 0;
    font-family: Arial, sans-serif;
    color: rgb(76, 82, 83) !important;
}

.single .entry-content .game-row img {
    max-width: 220px;
    height: auto;
    border-radius: 6px;
}

.game-content {
    flex: 1;
    margin-left: 1.5rem;
    color: rgb(76, 82, 83) !important;
}

.game-content h2 {
    font-size: 1.6rem;
    margin: 0 0 0.75rem;
    color: rgb(76, 82, 83) !important;
}

.game-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    color: rgb(76, 82, 83) !important;
}

.game-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.game-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: rgb(76, 82, 83) !important;
}

.game-specs li {
    margin: 0.3rem 0;
    color: rgb(76, 82, 83) !important;
}

.game-link {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--color-primary-alt);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    color: var(--color-white);
    font-weight: bold;
    margin-top: 0.3rem;
    text-transform: uppercase;
    text-align: center;
    font-size: 12px;
    line-height: 12px;
}

:root {
    --hr-svg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid meet' overflow='visible' height='100%' viewBox='0 0 126 26' fill='rgba(0,0,0,0.32)' stroke='none'><path d='M45.8,7.8v11.5L36,18.6V7.8H45.8z M81.4,7.8L83,18.6l-12,0.7L69.4,7.8H81.4z M0,7.8l12,0.9v9.9H1.3L0,7.8z M29,7.8v10.8H18L17,7.8H29z M62.7,7.8L65,18.6H53V9.5L62.7,7.8z M88.8,7l12.2,0.8v10.8H90.2L88.8,7z M107,7.8l12,0.9v8.9l-12,1V7.8z'/></svg>");
}

.fancy-divider {
    height: 26px;
    background-image: var(--hr-svg);
    background-repeat: repeat-x;
    background-position: center;
    background-size: 126px 26px;
    margin: 2rem 0;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 680px) {
    .game-row {
        flex-direction: column;
        padding: 0 30px;
    }

    .game-content {
        margin-left: 0;
        margin-top: 20px;
    }

    .game-content p {
        line-height: 25px;
        text-align: justify;
        font-size: 14px;
    }

    .game-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-link {
        margin-top: 20px;
        width: 100%;
        font-size: 11px;
        line-height: 11px;
    }

    .game-image {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .game-row img {
        max-width: 100%;
        height: auto;
    }

    .game-specs {
        font-size: 14px;
    }

    .single .entry-content .game-row img {
    max-width: 100%;
    }
}