.sports-game-hero-image {
    flex: 1;
    max-width: 50%;
    padding: 1px;
    position: relative;
    min-height: 175px;
}

.sports-game-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 4px;
}

.sports-game-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sports-game-hero-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15%;
    min-height: 120px;
}

.team-container {
    position: relative;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5%;
    padding: 0.5rem;
}

.team-container img {
    width: 100%;
    height: auto;
    background-color: #fff;
    object-fit: contain;
    border-radius: 3px;
    max-height: 100px;
    border: 2px solid #000;
}

.team1, .team2 {
    top: auto;
    left: auto;
    right: auto;
}

.game-result-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .sports-game-hero-image {
        max-width: 100%;
    }

    .sports-game-hero-image {
        max-width: 100%;
        min-height: 150px;
        height: auto;
        position: relative;
        aspect-ratio: 16/9;
        padding: 0.5rem;
    }

    .sports-game-hero-container {
        padding: 0 5%;
        min-height: 80px;
    }

    .team-container {
        padding: 0.25rem;
        margin: 0 2%;
    }

    .team-container img {
        max-height: 60px;
    }
}

