.fb-games {
    display: grid;
    gap: 0;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.fb-games__title {
    padding: 16px 20px 4px 20px;
    font-size: 1.2em;
    font-weight: 700;
    color: #1f1f1f;
}


.fb-game {
    display: grid;
    grid-template-columns: 110px 1fr 110px;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}

.fb-game:last-child {
    border-bottom: 0;
}

.fb-games__pagination {
    padding: 16px 20px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fb-games__pagination-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fb-games__pagination .page-numbers {
    color: rgb(0, 0, 0);
    user-select: none;
}

.fb-games__pagination .page-numbers:hover {
    color: #0073a4;
}

.fb-games__pagination .page-numbers.current {
    text-decoration: underline;
}

.fb-games__all-link {
    margin-left: auto;
    color: #0073a4;
    text-decoration: none;
    font-weight: 600;
}

.fb-games__all-link:hover {
    text-decoration: underline;
}

.fb-game__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-game__logo img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.fb-game__content {
    text-align: center;
    display: grid;
    gap: 4px;
}

.fb-game__date {
    font-size: 0.9em;
    color: #6c6c6c;
}

.fb-game__time {
    font-size: 1.6em;
    font-weight: 700;
    color: #1f1f1f;
}

.fb-game__league {
    font-size: 0.95em;
    color: #2b2b2b;
}

.fb-game__matchup {
    font-size: 1em;
    font-weight: 600;
    color: #0073a4;
}

.fb-game__link {
    font-size: 0.9em;
}

.fb-game__link a {
    color: #0073a4;
    text-decoration: none;
}

.fb-game__link a:hover {
    text-decoration: underline;
}

.fb-game__score {
    font-size: 1em;
    font-weight: 700;
    color: #1f1f1f;
}


@media (max-width: 720px) {
    .fb-game {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .fb-game__logo {
        margin: 4px 0;
    }
}
