/** Shopify CDN: Minification failed

Line 29:10 Expected ":"

**/
.at-feeds_section {
    position: relative;
    overflow: hidden;
}
.at-feeds_section .section--title {
    color: #d97725;
}
.at-feeds_section .image,
.at-feeds_section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.at-feeds_section .at-feeds_grid video {
    aspect-ratio: 1 / 1.6;
}
.at-feeds_section .at-feeds_grid video::-webkit-media-controls-enclosure {
    display: none;
}
.at-feeds_section .at-feeds_grid {
    list-style: none;
    padding: 0;
    margin 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.at-feeds_section .at-feeds_grid .item-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .at-feeds_section .at-feeds_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .at-feeds_section .at-feeds_grid .block-5 {
        display: none;
    }
}