@import url('https://fonts.googleapis.com/css2?family=Glypha+LT+Pro:wght@700&family=Lato:wght@500;800&family=Proxima+Nova:wght@800&display=swap');

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

.toplist-casinohunter__offers {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.toplist-casinohunter__offer {
    display: grid;
    padding: 18px 31px 35px 42px;
    border: 1px solid #000;
    border-radius: 35px;
    background: linear-gradient(90deg, #00000066 0%, #27262666 100%);
    grid-template-rows: auto;
    grid-template-columns: 180px auto 204px;
    grid-template-areas:
    "logo main cta-btn";
    column-gap: 40px;
}

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

.toplist-casinohunter__offer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100%;
    grid-area: logo;
}

.toplist-casinohunter__offer-logo img {
    max-width: 180px;
    max-height: 100%;
}

.toplist-casinohunter__offer-main {
    margin: auto 0;
    grid-area: main;
}

.toplist-casinohunter__offer-title {
    font-family: "Glypha LT Pro", sans-serif;
    font-size: 19.43px;
    font-weight: 700;
    font-style: normal;
    line-height: 34.8px;
    text-transform: capitalize;
    color: #FFF;
}

.toplist-casinohunter__offer-key-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    list-style-type: none !important;
}

.toplist-casinohunter__offer-key-features li {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    display: flex;
    width: 49%;
    padding-bottom: 0 !important;
    text-transform: capitalize;
    color: #FFF;
}

.toplist-casinohunter__offer-key-features li::before {
    position: relative;
    top: 2px;
    display: inline-block;
    width: 15px;
    min-width: 15px;
    height: 15px;
    margin-right: 12px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'%3E%3Cpath d='M13.5007 8.24352C13.0007 10.7435 11.1157 13.0975 8.47071 13.6235C7.1807 13.8804 5.84252 13.7238 4.64672 13.1759C3.45091 12.628 2.45843 11.7169 1.81061 10.5721C1.16278 9.42736 0.892631 8.1074 1.03862 6.80019C1.18461 5.49297 1.7393 4.26514 2.62371 3.29152C4.43771 1.29352 7.50071 0.743515 10.0007 1.74352' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.00073 7.24353L7.50073 9.74353L13.5007 3.24353' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.toplist-casinohunter__offer-key-features li:nth-child(even) {
    margin-left: 2%;
}

.toplist-casinohunter__offer-key-features li:nth-child(3n) {
    width: 100%;
    margin-top: 20px;
}

.toplist-casinohunter__offer-actions {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 10px;
    grid-area: cta-btn;
}

.toplist-casinohunter__offer-cta-btn {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: normal;
    line-height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 69px;
    margin-bottom: 8px;
    text-transform: capitalize;
    color: #F9F9F9;
    border-radius: 50px;
    background: #FF9D30;
}

.toplist-casinohunter__offer-cta-btn:hover {
    text-decoration: none;
    color: #202020;
    background: #FFFFFF;
}

.toplist-casinohunter__offer-rating-number {
    font-family: "Proxima Nova", sans-serif;
    font-size: 18px;
    font-weight: 800;
    font-style: normal;
    line-height: 39px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #FFF;
}

.toplist-casinohunter__offer-rating-number img {
    height: 18px;
    margin-right: 8px;
}

.toplist-casinohunter__show-more-btn {
    font-family: "Glypha LT Pro", sans-serif;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    line-height: 22px;
    display: flex;
    width: max-content;
    margin: 40px auto 0;
    text-transform: capitalize;
    color: #FF9D30;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.toplist-casinohunter__show-more-btn:hover {
    cursor: pointer;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    .toplist-casinohunter__offers {
        gap: 17px;
    }

    .toplist-casinohunter__offer {
        padding: 30px 35px;
        grid-template-columns: auto;
        grid-template-areas:
        "logo"
        "main"
        "cta-btn";
        column-gap: 0;
        row-gap: 25px;
    }

    .toplist-casinohunter__offer-logo {
        width: 100%;
    }

    .toplist-casinohunter__offer-title {
        line-height: 26.8px;
        text-align: center;
    }

    .toplist-casinohunter__offer-key-features li {
        width: 100%;
    }

    .toplist-casinohunter__offer-key-features li:nth-child(even) {
        margin-top: 8px;
        margin-left: 0;
    }

    .toplist-casinohunter__offer-key-features li:nth-child(3n) {
        margin-top: 8px;
    }

    .toplist-casinohunter__offer-actions {
        padding-top: 0;
    }

    .toplist-casinohunter__offer-cta-btn {
        order: 2;
        margin-bottom: 0;
    }

    .toplist-casinohunter__offer-rating-number {
        order: 1;
        margin-bottom: 8px;
    }

    .toplist-casinohunter__show-more-btn {
        font-size: 14px;
        margin-top: 27px;
    }
}
