.download_grid {
    column-count: 2;
    column-gap: 20px;
}

.the_product_downloads {
    padding: var(--padding-s);
    border-radius: 5px;
    background: #fff;
    break-inside: avoid;
    margin-bottom: 20px;
}

.download:hover {
    opacity: 1;
}

.download {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: clamp(15px, 2vw, 20px) clamp(15px, 2vw, 30px);
    border-radius: 6px;
    gap: 15px;
}

.download > div {
    display: flex;
    gap: clamp(20px, 2vw,30px);
}

.download .icon {
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.5 20.5a6 6 0 0 0-6 5.9 6 6 0 0 0 6 5.9 6 6 0 0 0 6-6 6 6 0 0 0-6-5.8Zm3.4 7.6L28 30.5h-.1v.1l-.4.1h-.3v-.1H27l-.1-.1-2.8-2.4A.8.8 0 0 1 24 27c.3-.3.8-.4 1.1 0l1.5 1.1V23c0-.5.4-.8.8-.8.5 0 .8.3.8.8V28l1.5-1.2c.3-.3.9-.2 1.2 0 .3.4.2 1-.1 1.2Z' fill='%2358585A'/%3E%3Cpath d='M0 8.4V37h26.7v-3.2a7.6 7.6 0 0 1-6.9-7.4c0-3.9 3-7 6.9-7.5V0H8.6L0 8.4Zm13.3 25.5H4a.8.8 0 0 1-.8-.8c0-.5.3-.8.8-.8h9.3c.5 0 .9.3.9.8 0 .4-.4.8-.9.8Zm2.3-4.9H4a.8.8 0 0 1-.8-.8c0-.4.3-.8.8-.8h11.6c.5 0 .8.4.8.8 0 .5-.3.8-.8.8ZM3.2 23.4c0-.5.3-.8.8-.8h8.4c.5 0 .8.3.8.8 0 .4-.3.8-.8.8H4a.8.8 0 0 1-.8-.8Zm15.5-4.9c0 .4-.4.8-.8.8h-14a.8.8 0 0 1-.7-.8c0-.4.3-.8.8-.8h13.9c.4 0 .8.4.8.8ZM9.3 3.6c0-.4.4-.8.9-.8.4 0 .8.4.8.8v6c0 .5-.4.9-.8.9H4a.8.8 0 0 1-.8-.8c0-.5.3-.9.8-.9h5.3V3.6Z' fill='%2358585A'/%3E%3C/svg%3E");
    min-width: 34px;
    height: 37px;
}





.the_downloads {
    display: grid;
    grid-gap: 20px;
}

.fc_download_grid .the_downloads {
    grid-template-columns: repeat(2, 1fr);
}

.bg_light_grey.the_downloads a ,
.bg_light_grey.the_product_downloads .the_downloads a {
    background: #fff;
}