.sport-articles {
    background: #0a111d;
    padding: 120px 0;
}

.sport-articles__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Контент — слева (flex: 1) */
.sport-articles__featured {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 35px;
    min-width: 0;
}

/* Меню — справа (фиксированная ширина) */
.sport-articles__list {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 10px;
    width: 280px;
}

.sport-articles__tab {
    display: flex;
    align-items: center;
    min-height: 40px;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.sport-articles__tab:hover {
    border-color: #f15454;
}

.sport-articles__tab.is-active {
    border-color: #f15454;
    font-weight: 500;
    color: #f15454;
}

.sport-articles__tab:focus-visible {
    outline: 2px solid #f15454;
    outline-offset: 2px;
}

.sport-articles__title {
    margin: 0;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 50px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #ffffff;
}

.sport-articles__banner {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background: #151b27;
}

.sport-articles__banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sport-articles__banner.is-hidden {
    display: none;
}

.sport-articles__text {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: rgba(255, 255, 255, 0.7);
}

.sport-articles__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    text-decoration: none;
}

.sport-articles__more svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.sport-articles__more:hover svg {
    transform: translateX(3px);
}

@media (max-width: 1023px) {
    .sport-articles {
        padding: 80px 0;
    }
    .sport-articles__inner {
        gap: 40px;
    }
    .sport-articles__list {
        width: 220px;
    }
    .sport-articles__title {
        font-size: 42px;
        line-height: 42px;
    }
}

@media (max-width: 767px) {
    .sport-articles {
        padding: 60px 0;
    }
    .sport-articles__inner {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .sport-articles__list {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sport-articles__tab {
        width: auto;
        flex-shrink: 0;
    }
    .sport-articles__title {
        font-size: 32px;
        line-height: 36px;
    }
    .sport-articles__banner {
        height: 200px;
    }
}
