.crypto-gift-card-benefits {
    width: 100%;
    padding: 58px 20px 68px;
    overflow: hidden;
    background: #000;
    color: #fff;
    box-sizing: border-box;
}

.crypto-gift-card-benefits__inner {
    display: grid;
    grid-template-columns: repeat(var(--gc-benefit-columns, 3), minmax(0, 1fr));
    gap: 44px;
    align-items: start;
}

.crypto-gift-card-benefits__item {
    min-width: 0;
    padding: 0;
    text-align: center;
    color: inherit;
    text-decoration: none;
    box-sizing: border-box;
}

.crypto-gift-card-benefits__media {
    min-height: 205px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-gift-card-benefits__image {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 195px;
    object-fit: contain;
}

.crypto-gift-card-benefits__fallback {
    font-size: 104px;
    line-height: 1;
}

.crypto-gift-card-benefits__title {
    margin: 18px auto 25px;
    color: #ffb900;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.18;
}

.crypto-gift-card-benefits__description {
    max-width: 390px;
    margin: 0 auto;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .crypto-gift-card-benefits__inner {
        grid-template-columns: repeat(var(--gc-benefit-columns-tablet, 2), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .crypto-gift-card-benefits {
        padding: 42px 18px 50px;
    }

    .crypto-gift-card-benefits__inner {
        grid-template-columns: repeat(var(--gc-benefit-columns-mobile, 1), minmax(0, 1fr));
        gap: 50px;
    }

    .crypto-gift-card-benefits__media {
        min-height: 160px;
    }

    .crypto-gift-card-benefits__image {
        max-width: min(190px, 70vw);
        max-height: 165px;
    }

    .crypto-gift-card-benefits__title {
        margin-top: 14px;
        font-size: 25px;
    }

    .crypto-gift-card-benefits__description {
        font-size: 18px;
    }
}
