.crypto-pos-coins {
    width: 100%;
    padding: 48px 20px;
    background: #000;
    color: #fff;
}

.crypto-pos-coins,
.crypto-pos-coins * {
    box-sizing: border-box;
}

.crypto-pos-coins__inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.crypto-pos-coins__heading {
    margin: 0 0 38px;
    padding: 0;
    color: #fff;
    font-size: clamp(28px, 2.7vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.crypto-pos-coins__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 28px;
    align-items: start;
}

.crypto-pos-coins__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    text-align: center;
    transition: transform .24s ease, opacity .24s ease, box-shadow .24s ease;
}

.crypto-pos-coins-hover-yes .crypto-pos-coins__item:hover,
.crypto-pos-coins-hover-yes .crypto-pos-coins__item:focus {
    transform: translateY(-5px);
}

.crypto-pos-coins__visual {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.crypto-pos-coins__image,
.crypto-pos-coins__icon {
    display: block;
    width: 78px;
    height: 78px;
    object-fit: contain;
    flex: 0 0 auto;
}

.crypto-pos-coins__icon {
    color: #f2991d;
    font-size: 44px;
}

.crypto-pos-coins__icon svg,
.crypto-pos-coins__icon i {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.crypto-pos-coins__name {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    white-space: normal;
}

@media (max-width: 1024px) {
    .crypto-pos-coins__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .crypto-pos-coins {
        padding-left: 14px;
        padding-right: 14px;
    }

    .crypto-pos-coins__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 24px;
    }

    .crypto-pos-coins__image,
    .crypto-pos-coins__icon {
        width: 64px;
        height: 64px;
    }

    .crypto-pos-coins__name {
        font-size: 16px;
    }
}
