.rewards__text {
    margin-bottom: 32px;
    text-align: center;
    font-size: 16px;
}

.rewards__text h2 {
    display: grid;
    margin-bottom: 24px;
}

.rewards__list {
    display: grid;
    grid-row-gap: 20px;
    margin-bottom: 32px;
}

.rewards__list-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-gap: 24px 20px;
    padding: 30px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 15%);
}

.rewards__list-info-wrapper {
    grid-column: span 2;
    color: #4B5563;
    font-family: "Open Sans", sans-serif;
}

.rewards__list-info-item:not(:last-of-type) {
    margin-bottom: 8px;
}

.rewards__list-item h3 {
    margin-bottom: 4px;
    font-size: 28px;
}

.rewards__list-item p {
    font-size: 18px;
    color: #6B7280;
}

.rewards__list-item.bronze h3 {
    color: #F9A351;
}

.rewards__list-item.silver h3 {
    color: #8B8E99;
}

.rewards__list-item.gold h3 {
    color: #FC0;
}

.rewards__list-item.platinum h3 {
    color: #6EAFD0;
}

.rewards__list-info-item {
    position: relative;
    padding-left: 24px;
    background-repeat: no-repeat;
    background-position: left top 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' fill='none' viewBox='0 0 17 17'%3E%3Cpath stroke='%237B9E87' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.333' d='M8.183 1.958a.353.353 0 0 1 .634 0l1.54 3.12a1.415 1.415 0 0 0 1.063.773l3.444.504a.353.353 0 0 1 .196.603l-2.49 2.425a1.416 1.416 0 0 0-.408 1.252l.588 3.427a.354.354 0 0 1-.514.373l-3.079-1.619a1.415 1.415 0 0 0-1.315 0l-3.078 1.619a.355.355 0 0 1-.513-.373l.587-3.426a1.414 1.414 0 0 0-.407-1.253L1.94 6.958a.353.353 0 0 1 .196-.604l3.443-.503a1.415 1.415 0 0 0 1.065-.773l1.54-3.12Z'/%3E%3C/svg%3E");
}

.rewards__list-annotation {
    margin-bottom: 32px;
    text-align: center;
}

.rewards__info-list {
    display: grid;
    grid-row-gap: 24px;
    margin-bottom: 32px;
}

.rewards__info-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #8B8E99;
}

.rewards__info-list-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(255 255 255 / 50%);
}

.rewards__info-list-title {
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 20px;
    color: #221F1F;
    text-transform: capitalize;
}

.rewards__btn-wrapper {
    display: flex;
    justify-content: center;
}

.rewards__list-item-text.desktop {
    display: none;
}

@media (min-width: 768px) {
    .rewards__info-list {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 20px;
    }

    .rewards__text h2 {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .rewards__list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .rewards__list-info-wrapper {
        grid-template-columns: 200px 1fr;
        grid-template-rows: auto 1fr;
    }

    .rewards__list-item img {
        grid-row: span 2;
    }

    .rewards__list-info {
        grid-column: span 1;
    }

    .rewards__list-annotation {
        max-width: 616px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1024px) {
    .rewards__list {
        grid-template-columns: repeat(4, 1fr);
        grid-column-gap: 8px;
    }

    .rewards__list-item {
        position: relative;
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .rewards__list-info-wrapper {
        position: absolute;
        inset: 0;
        display: flex;
        padding: 16px;
        flex-direction: column;
        justify-content: center;
        grid-column: span 1;
        background-color: #fff;
        opacity: 0;
        text-align: left;
        transition-duration: .25s;
    }

    .rewards__list-item-text.desktop {
        display: block;
        margin-bottom: 24px;
        text-align: left;
    }

    .rewards__list-item-text {
        text-align: center;
    }

    .rewards__list-item h3 {
        font-size: 26px;
    }

    .rewards__list-item:hover .rewards__list-info-wrapper {
        opacity: 1;
    }
}

@media (min-width: 1280px) {
    .rewards__list {
        margin-bottom: 42px;
        grid-column-gap: 20px;
    }

    .rewards__list-item {
        justify-items: center;
    }

    .rewards__list-item img {
        width: 164px;
    }

    .rewards__info-list {
        max-width: 840px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 42px;
    }

    .rewards__list-annotation {
        margin-bottom: 42px;
        line-height: 1.65;
    }
}