.toplist-newsbtc__wrapper {
    margin: 24px 0;
}

.toplist-newsbtc__offers {
    display: flex;
    flex-direction: column;
    counter-reset: bm-toplist-newsbtc-counter;
    gap: 9px;
}

.toplist-newsbtc__show-more-btn {
    font-family: var(--bm-alt-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 24px auto 0;
    padding: 13px 16px;
    color: #101214;
    border: 2px solid #101214;
    border-radius: 7px;
    gap: 8px;
}

.toplist-newsbtc__show-more-btn:hover {
    cursor: pointer;
    color: #FFFFFF;
    background: #101214;
}

.toplist-newsbtc__show-more-btn:hover svg path {
    stroke: #FFFFFF;
}

.toplist-newsbtc__offer {
    position: relative;
    display: grid;
    align-items: center;
    padding: 16px 24px;
    border: 2px solid #D2EBEE;
    border-radius: 4px;
    background: linear-gradient(90deg, #FFFFFF 0%, #D2EBEE 100%);
    grid-template-rows: auto;
    grid-template-columns: 130px auto 150px;
    gap: 20px;
    grid-template-areas:
    "logo title cta-btn";
}

.toplist-newsbtc__offer.hidden {
    display: none;
}

.toplist-newsbtc__offer-logo-wrapper {
    grid-area: logo;
}

.toplist-newsbtc__offer-logo img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.toplist-newsbtc__offer-title {
    padding: 0 0 0 22px;
    border-left: 2px solid #D2EBEE;
    grid-area: title;
}

.toplist-newsbtc__offer-title,
.toplist-newsbtc__offer-title p {
    font-family: var(--bm-font-family);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #000000;
}

.toplist-newsbtc__offer-title p {
    margin: 0;
    padding: 0;
}

.toplist-newsbtc__offer-cta-btn {
    font-family: var(--bm-font-family);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    padding: 0 8px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    border-radius: 4px;
    background: #4A97FF;
    grid-area: cta-btn;
    gap: 8px;
}

.toplist-newsbtc__offer-cta-btn:after {
    position: relative;
    width: 12px;
    height: 16px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='16' viewBox='0 0 12 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.478149 0.400024L7.72188 8.00003L0.478149 15.6001H4.48595L11.5219 8.00003L4.48595 0.400024H0.478149Z' fill='white'/%3E%3C/svg%3E%0A");
}

.toplist-newsbtc__offer-cta-btn:hover {
    text-decoration: none;
    color: #FFFFFF;
    background: #2971D3;
}

.toplist-newsbtc__offer:before {
    font-family: var(--bm-font-family);
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 24px;
    padding: 0 3px 0 6px;
    content: counter(bm-toplist-newsbtc-counter);
    counter-increment: bm-toplist-newsbtc-counter;
    color: #FFFFFF;
    border-top-left-radius: 2px;
    background: #333333;
}

.toplist-newsbtc__offer:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 13px;
    width: 5px;
    height: 24px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='5' height='24' viewBox='0 0 5 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 0L0 24V0H5Z' fill='%23333333'/%3E%3C/svg%3E%0A");
}

@media screen and (max-width: 991px) {
    .toplist-newsbtc__wrapper {
        margin: 27px 0;
    }

    .toplist-newsbtc__offers {
        gap: 16px;
    }

    .toplist-newsbtc__offer {
        padding: 16px;
        grid-template-columns: 130px auto;
        gap: 16px;
        grid-template-areas:
        "logo title"
        "cta-btn cta-btn";
    }

    .toplist-newsbtc__offer-title,
    .toplist-newsbtc__offer-title p {
        font-size: 16px;
    }
}
