.offer-cardplayer__wrapper {
    position: relative;
    display: grid;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 4px;
    background: #fff;
    box-shadow:
        0 1px 2px 0 #0000000a,
        0 4px 16px 0 #0000000f;
    gap: 12px 16px;
    grid-template-areas:
        'logo rating cta-btn'
        'logo key-features key-features';
    grid-template-columns: 154px auto;
    grid-template-rows: 1fr;
}

.offer-cardplayer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f2f2f2;
    grid-area: logo;
}

.offer-cardplayer__logo img {
    width: 100px;
    height: 61px;
    object-fit: contain;
}

.offer-cardplayer__rating-wrapper {
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    display: flex;
    align-items: baseline;
    color: #080000;
    grid-area: rating;
}

.offer-cardplayer__rating-wrapper:after {
    position: relative;
    top: 2px;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 2px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M16.5 7.57495C16.575 7.19995 16.275 6.74995 15.9 6.74995L11.625 6.14995L9.675 2.24995C9.6 2.09995 9.525 2.02495 9.375 1.94995C9 1.72495 8.55 1.87495 8.325 2.24995L6.45 6.14995L2.175 6.74995C1.95 6.74995 1.8 6.82495 1.725 6.97495C1.425 7.27495 1.425 7.72495 1.725 8.02495L4.8 11.025L4.05 15.3C4.05 15.45 4.05 15.6 4.125 15.75C4.35 16.125 4.8 16.275 5.175 16.05L9 14.025L12.825 16.05C12.9 16.125 13.05 16.125 13.2 16.125C13.275 16.125 13.275 16.125 13.35 16.125C13.725 16.05 14.025 15.675 13.95 15.225L13.2 10.95L16.275 7.94995C16.425 7.87495 16.5 7.72495 16.5 7.57495Z' fill='black'/%3E%3C/svg%3E");
}

.offer-cardplayer__offer-key-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-area: key-features;
}

.offer-cardplayer__offer-key-features-item {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    position: relative;
    display: flex;
    padding-left: 28px;
    color: #000;
}

.offer-cardplayer__offer-key-features-item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.4' y='0.4' width='19.2' height='19.2' rx='9.6' stroke='%23D0CCCC' stroke-width='0.8'/%3E%3Cpath d='M14.2273 7L8.22727 13L5.5 10.2727' stroke='black' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.offer-cardplayer__cta-btn {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: max-content;
    min-width: 132px;
    height: 36px;
    margin-left: auto;
    padding: 6px 16px;
    text-align: center;
    text-decoration: unset;
    text-transform: uppercase;
    color: #fff;
    border-radius: 4px;
    background: #900;
    box-shadow:
        0 1px 3px 0 #e0090c5b,
        0 4px 16px 0 #ff615da8;
    grid-area: cta-btn;
}

.offer-cardplayer__cta-btn:after {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.33325 2L12.6666 8L3.33325 14V2Z' fill='white'/%3E%3C/svg%3E");
}

.offer-cardplayer__cta-btn:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: 0 5px 15px 0 #e3194e93;
}

@media (max-width: 1024px) {
    .offer-cardplayer__wrapper {
        gap: 12px;
        grid-template-areas:
            'rating'
            'logo'
            'key-features'
            'cta-btn';
        grid-template-columns: auto;
        grid-template-rows: 1fr;
    }

    .offer-cardplayer__logo {
        height: 100px;
    }

    .offer-cardplayer__cta-btn {
        width: 100%;
        min-width: unset;
        height: 48px;
        margin-left: unset;
        padding: 12px 16px;
    }
}
