#futures .snail {
    width: 100%;
}

#futures .snail-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

#futures .snail-pot {
    flex: 0 0 calc((100% - 12px) / 2);
    max-height: none;
    min-height: 0;
    aspect-ratio: 220 / 96;
    border-radius: 10px;
    padding: 14px 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

#futures .snail-pot img {
    width: 56%;
    max-width: 150px;
    max-height: 56px;
    object-fit: contain;
}

@media (min-width: 768px) {
    #futures .snail-pot {
        flex-basis: calc((100% - 36px) / 4);
    }
}

@media (min-width: 1280px) {
    #futures .snail-pot {
        flex-basis: calc((100% - 84px) / 8);
    }
}
