.toplist-tech__wrapper {
    margin: 32px 0;
}

.toplist-tech__offers {
    display: flex;
    flex-direction: column;
    counter-reset: bm-toplist-tech-counter;
    gap: 8px;
}

.toplist-tech__offer {
    box-sizing: border-box;
}

.toplist-tech__offer-inner {
    display: grid;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    gap: 0 16px;
    grid-auto-flow: row;
    grid-template-areas:
        'logo title deal cta-btn'
        'logo pricing deal cta-btn';
    grid-template-columns: 134px 1fr 116px auto;
    grid-template-rows: auto 1fr;
}

.toplist-tech__offer-logo {
    position: relative;
    grid-area: logo;
}

.toplist-tech__offer-logo img {
    width: 130px;
    height: 60px;
    object-fit: contain;
}

.toplist-tech__offer-logo:before {
    font-family: var(--bm-font-family);
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    position: absolute;
    z-index: 1;
    top: -4px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    content: counter(bm-toplist-tech-counter);
    counter-increment: bm-toplist-tech-counter;
    color: #1c2642;
    border: 2px solid #fff;
    border-radius: 100%;
    background: #f1f5ff;
}

.toplist-tech__offer-title {
    grid-area: title;
}

.toplist-tech__offer-title,
.toplist-tech__offer-title p {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    line-height: 135%;
    margin-bottom: 0;
    color: #1c2642;
}

.toplist-tech__offer-pricing {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%;
    color: #2e364e;
    grid-area: pricing;
}

.toplist-tech__offer-deal {
    grid-area: deal;
}

.toplist-tech__offer-deal-title {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%;
    margin-bottom: 4px;
    color: #1c2642;
}

.toplist-tech__offer-deal-details {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 135%;
    color: #07c;
}

.toplist-tech__offer-cta-btn {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 135%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    padding: 8px 16px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    background: #1a9c4e;
    gap: 8px;
    grid-area: cta-btn;
}

.toplist-tech__offer-cta-btn:hover {
    text-decoration: none;
    color: #fff;
    background: #07c;
}

.toplist-tech__offer-cta-btn-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7.5 15L12.5 10L7.5 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.toplist-tech__offer-cta-btn:hover .toplist-tech__offer-cta-btn-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 11L6.5 6L1.5 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.toplist-tech__offer-details-btn-wrapper {
    margin-top: 52px;
    grid-area: cta-btn;
}

.toplist-tech__offer-details-btn {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%;
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #2e364e;
    text-decoration-line: underline;
    text-underline-position: from-font;
}

.toplist-tech__offer-details-btn:hover {
    color: #07c;
}

.toplist-tech__offer-deal-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 1px 1px;
    border-radius: 4px;
    background: #ffd449;
}

.toplist-tech__offer-deal-wrapper .toplist-tech__offer-inner {
    border: 0;
}

.bm-black-friday-deal__wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 23px;
    padding: 4px 16px;
    border-radius: 4px;
    background: #ffd449 url('../images/toplist-tech-deal-sales.svg') no-repeat 320px top;
    background-size: auto;
}

.bm-black-friday-deal__inner {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    line-height: 125%;
    user-select: none;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000;
}

@media (min-width: 992px) {
    .toplist-tech__offer-deal {
        padding-left: 16px;
        border-left: 1px dashed #e0e0e0;
    }
}

@media (max-width: 991px) {
    .toplist-tech__offer-inner {
        padding: 16px;
        gap: 4px 16px;
        grid-template-areas:
            'logo title'
            'details-btn pricing'
            'border border'
            'deal cta-btn';
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto;
    }

    .toplist-tech__offer-logo img {
        width: 120px;
        height: 58px;
    }

    .toplist-tech__offer-logo:before {
        top: -6px;
    }

    .toplist-tech__offer-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .toplist-tech__offer-pricing {
        font-weight: 400;
    }

    .toplist-tech__offer-details-btn-wrapper {
        margin-top: 0;
        grid-area: details-btn;
    }

    .toplist-tech__offer-deal-title {
        font-weight: 400;
        line-height: 100%;
    }

    .toplist-tech__offer-cta-btn {
        line-height: 27px;
        height: 44px;
    }

    .toplist-tech__offer-details-btn {
        font-weight: 400;
        margin: 0;
    }

    .toplist-tech__offer-mobile-border {
        margin-top: 4px;
        margin-bottom: 12px;
        border-top: 1px dashed #e0e0e0;
        grid-area: border;
    }

    .bm-black-friday-deal__wrapper {
        background-position: 159px top;
    }
}

@media (max-width: 375px) {
    .toplist-tech__offer-cta-btn {
        padding: 8px;
    }
}
