@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@600&display=swap');

.toplist-esportsnews-sidebar__wrapper {
    margin: 8px 0 32px;
}

.toplist-esportsnews-sidebar__offers {
    position: relative;
    display: flex;
    flex-direction: column;
}

.toplist-esportsnews-sidebar__offers:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: '';
    background: linear-gradient(90deg, #0c6755 0%, #151a1e 100%);
    clip-path: polygon(1% 0%, 100% 0, 100% 100%, 0% 100%);
}

.toplist-esportsnews-sidebar__offer {
    display: grid;
    margin-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2c333a;
    gap: 12px;
    grid-template-areas: 'logo main rating';
    grid-template-columns: 54px auto 40px;
}

.toplist-esportsnews-sidebar__offer:not(:first-child) {
    margin-top: 0;
    padding: 16px 0;
}

.toplist-esportsnews-sidebar__offer:last-child {
    padding-bottom: 0;
    border-bottom: unset;
}

.toplist-esportsnews-sidebar__offer-logo {
    width: 54px;
    height: 54px;
    border-radius: 1000px;
    grid-area: logo;
}

.toplist-esportsnews-sidebar__offer-logo img {
    width: 54px;
    height: 54px;
    border-radius: inherit;
    object-fit: contain;
}

.toplist-esportsnews-sidebar__offer-main {
    display: grid;
    gap: 8px;
    grid-area: main;
    grid-template-areas:
        'title'
        'actions';
}

.toplist-esportsnews-sidebar__offer-title {
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    line-height: 24px;
    letter-spacing: -0.3px;
    text-transform: capitalize;
    color: #fff;
    grid-area: title;
}

.toplist-esportsnews-sidebar__offer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.toplist-esportsnews-sidebar__offer-review-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 4px);
    height: 32px;
    padding: 0 4px;
    cursor: pointer;
    color: #d9dce0;
    border: 0.5px solid #19c1a13f;
}

.toplist-esportsnews-sidebar__offer-review-link:before,
.toplist-esportsnews-sidebar__offer-review-link:after {
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 0.5px;
    content: '';
    background: linear-gradient(90deg, #1ecaab00 0%, #1ecaabbf 50.48%, #1ecaab00 100%);
}

.toplist-esportsnews-sidebar__offer-review-link:after {
    top: 100%;
}

.toplist-esportsnews-sidebar__offer-review-link:hover {
    text-decoration: unset;
    color: #a0afbf;
    border: 0.5px solid #15ae90;
}

.toplist-esportsnews-sidebar__offer-cta-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    line-height: 20px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    width: calc(50% - 4px);
    height: 32px;
    padding: 0 4px;
    color: #0e1319;
    background: #20f4cb;
}

.toplist-esportsnews-sidebar__offer-cta-btn:hover {
    text-decoration: unset;
    color: #0e1319;
    background: #15ae90;
}

.toplist-esportsnews-sidebar__offer-rating {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 4.114px;
    border-radius: 102.857px;
    background: #20f48a;
    grid-area: rating;
}

.toplist-esportsnews-sidebar__offer-rating.good {
    background: #98f420;
}

.toplist-esportsnews-sidebar__offer-rating-value {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    line-height: 27px;
    text-align: center;
    color: #0e1319;
}

.toplist-esportsnews-sidebar__offer-rating-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    line-height: 15px;
    position: relative;
    bottom: 6px;
    color: #0e1319;
}

@media (max-width: 991px) {
    .toplist-esportsnews-sidebar__offer {
        padding-bottom: 12px;
    }

    .toplist-esportsnews-sidebar__offer:not(:first-child) {
        padding: 12px 0;
    }

    .toplist-esportsnews-sidebar__offer-title {
        line-height: 20px;
    }

    .toplist-esportsnews-sidebar__offer-cta-btn {
        font-size: 11px;
        line-height: 17px;
    }

    .toplist-esportsnews-sidebar__offer-rating-value {
        font-size: 16px;
        line-height: 24px;
    }

    .toplist-esportsnews-sidebar__offer-rating-title {
        font-size: 9px;
        line-height: 13px;
    }
}
