/** Shopify CDN: Minification failed

Line 138:0 Unexpected "}"

**/
.mm-social-feed {
  background: #fff;
  margin: 1rem 0;
}
.social_nav {
    display: none;
}
.mm-social-feed__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.mm-social-feed__brand {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #202020;
  color: #fff;
  padding: 2rem;
  text-align: center;
}
.mm-social-feed__logo {
  max-width: 120px;
  object-fit: contain;
}
.mm-social-feed__cta {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}
.mm-social-feeds__icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.mm-social-feed__icons a svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: white;
}
.mm-social-feed__icons a:hover svg {
  transform: scale(1.2);
}
.mm-social-feed__post {
  position: relative;
  overflow: hidden;
  display: block;
}
.mm-social-feed__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top center;
}
.mm-social-feed__post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}
.mm-social-feed__post:hover::after {
  background: rgba(0, 0, 0, 0.3);
}
.mm-social-feed__post:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.mm-social-feed__post {
  aspect-ratio: 1/1;
}
/* Media */
/* @media (max-width: 768px) {
 
     .mm-social-feed__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .mm-social-feed__post--large {
    flex: 1 1 100%;
    aspect-ratio: 1/1.2;
  }
  .mm-social-feed__post--small {
    flex: 1 1 calc(50% - 0.5rem);
    aspect-ratio: 1/1;
  }
} */

 @media screen and (max-width: 767px) {
.mm-social-feed__brand {
    max-width: 250px;
    padding: 1rem;
}
.mm-social-feeds__icons {
    gap: 7px;
}
.mm-social-feed__post {
    min-width: 183px;
}
}

/* arrow buttons */
.social_nav .btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 6px rgba(0,0,0,.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.social_nav .btn:hover {
  background: rgba(255,255,255,1);
}

.social_nav .arrow {
  font-size: 20px;
  color: #000;
  line-height: 1;
}
} */

    .mm-social-feed .mm-social-feed__grid {
        display: flex !important;
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto !important;
    }
      .mm-social-feed {
          position: relative;
      }
    .mm-social-feed__post {
        scroll-snap-align: start;
        min-width: 253px;
    }

      .social_nav {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        align-items: center;
        position: absolute;
        top: 50%;
        width: 100%;
        max-width: 1760px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

/* arrow buttons */
.social_nav .btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 6px rgba(0,0,0,.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.social_nav .btn:hover {
  background: rgba(255,255,255,1);
}

.social_nav .arrow {
  font-size: 20px;
  color: #000;
  line-height: 1;
}