.today-game-section {
    padding-top: 18px;
}

.today-game-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 4px;
}

.today-game-section__head p {
    margin: 0 0 7px;
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.today-game-section__head h2 {
    margin: 0;
    color: #07111f;
    font-size: 28px;
    font-weight: 950;
}

.today-game-section__head span,
.today-game-section__head time {
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.today-game-section__head span {
    display: block;
    margin-top: 7px;
}

.today-game-section__head time {
    flex: 0 0 auto;
    padding-bottom: 3px;
}

.today-game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(198px, 1fr));
    gap: 10px;
}

.today-game-card,
.today-game-empty {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(207, 221, 240, 0.96);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.today-game-card {
    min-width: 0;
    padding: 15px 14px 16px;
}

.today-game-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 13px;
    border-bottom: 1px solid #edf2f8;
}

.today-game-card__top strong {
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 950;
}

.today-game-card__top span {
    overflow: hidden;
    color: #7a8698;
    font-size: 11px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.today-game-matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding-top: 15px;
}

.today-game-matchup b {
    color: #a1adbd;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 900;
}

.today-game-team {
    min-width: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.today-game-team img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.today-game-team span {
    overflow: hidden;
    width: 100%;
    color: #172033;
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.today-game-team small {
    color: #9aa5b5;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 900;
}

.today-game-empty {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
    padding: 26px 20px;
    text-align: center;
}

.today-game-empty strong {
    color: #263044;
    font-size: 15px;
    font-weight: 900;
}

.today-game-empty span {
    color: #768296;
    font-size: 12px;
    font-weight: 700;
}
