.bettingOddWrap {
    margin: 24px 0;
}

.bettingOdd {
    background: #f3f3f3;
    border-radius: 8px;
    padding: 18px 20px 20px;
}

.bettingOdd__header {
    display: grid;
    grid-template-columns: minmax(80px, 100px) 1fr minmax(80px, 100px);
    grid-template-areas:
        'team1 start team2'
        'name1 question name2';
    align-items: center;
    gap: 12px 24px;
}

.bettingOdd__team {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
}

.bettingOdd__team--1 {
    grid-area: team1;
}

.bettingOdd__team--2 {
    grid-area: team2;
}

.bettingOdd__team img {
    display: block;
    max-width: 72px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bettingOdd__teamName {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
}

.bettingOdd__teamName--1 {
    grid-area: name1;
}

.bettingOdd__teamName--2 {
    grid-area: name2;
}

.bettingOdd__start {
    grid-area: start;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bettingOdd__startDate {
    color: #111;
    font-size: 18px;
    line-height: 1.2;
}

.bettingOdd__startTime {
    color: #111;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.bettingOdd__question {
    grid-area: question;
    text-align: center;
    color: #111;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    max-width: 420px;
    justify-self: center;
}

.bettingOdd__bets {
    margin-top: 16px;
}

.bettingOdd__bet {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    background: #000;
    color: #fff;
    border: 3px solid #f2c100;
    border-radius: 6px;
    min-height: 54px;
    overflow: hidden;
}

.bettingOdd__betLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 48px;
    padding: 4px 8px;
    background: #ff5a12;
}

.bettingOdd__betLogo img {
    display: block;
    max-width: 56px;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bettingOdd__betRatio {
    justify-self: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.bettingOdd__betArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #f2c100;
}

.bettingOdd__betArrow svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.partnerBanner {
    margin-top: 12px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-color, #ff5a12);
    color: var(--font-color, #ffffff);
}

.partnerBanner__link {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    min-height: 54px;
    padding: 10px 18px;
    color: inherit;
    text-decoration: none;
}

.partnerBanner__logo {
    display: flex;
    align-items: center;
    min-width: 86px;
}

.partnerBanner__logo img {
    display: block;
    max-width: 96px;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partnerBanner__text {
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.04em;
}

@media (max-width: 767px) {
    .bettingOdd {
        padding: 16px;
    }

    .bettingOdd__header {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'team1 team2'
            'name1 name2'
            'start start'
            'question question';
        gap: 10px 16px;
    }

    .bettingOdd__question {
        font-size: 16px;
        max-width: none;
    }

    .bettingOdd__teamName {
        font-size: 17px;
    }

    .bettingOdd__startDate {
        font-size: 17px;
    }

    .bettingOdd__startTime {
        font-size: 21px;
    }

    .bettingOdd__bet {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .bettingOdd__betLogo {
        min-width: 64px;
    }

    .bettingOdd__betRatio {
        font-size: 20px;
    }

    .partnerBanner__link {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
        text-align: center;
    }
}
