/** Shopify CDN: Minification failed

Line 10:19 Expected identifier but found whitespace
Line 10:21 Unexpected "{"
Line 10:30 Expected ":"

**/
.media-grid-section {
  /* padding: 50px 0px; */
  background-color: {{ section.settings.bg_color | default: 'transparent' }};
}

.media-grid-header {
  margin-bottom: 40px;
}

.media-grid-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.media-grid-description {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--grid-gap, 15px);
}

.media-grid.scrollable {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  gap: var(--grid-gap, 15px);
}

.media-grid.scrollable .media-grid-item {
  flex: 0 0 auto;
  max-width: 310px;
  scroll-snap-align: start;
}

.media-grid-item {
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: default;
}

.media-grid-item img,
.media-grid-item video,
.media-grid-item iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-grid-item:hover {
  transform: scale(1.02);
}

.range-bar {
  appearance: none;
  width: 100%;
  height: 3px;
  padding: 1px;
  background: #D9D9D9;
  border-color: #D9D9D9;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
  display: flex;
  margin-top: 30px !important;
  padding: 0;
  margin-inline: 0px;
}

.range-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 50%;
  height: 3px;
  background: #24572A;
  border-radius: 0%;
  border: none;
}

.media-grid.scrollable {
  -ms-overflow-style: none; 
  scrollbar-width: none;
}

.media-grid.scrollable::-webkit-scrollbar {
  display: none;
}

a.media-grid-button {
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  color: #24572A;
  border:1px solid #24572A;
  text-transform: uppercase;
  transition: all .25s ease-in-out;
}

@media (max-width: 768px) {
  .media-grid-title {
    font-size: 28px;
  }
  .media-grid-description {
    font-size: 14px;
  }
  .media-grid {
    column-gap: 10px !important;
  }
}

@media (max-width: 551px) {
  .media-grid-description {
    font-size: 12px;
  }
  a.media-grid-button {
    padding: 5px 10px;
    font-size: 14px;
  }
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px !important;
    row-gap: 12px !important;
  }
}

/* pause & play UI */

.media-grid-item {
  position: relative;
  display: inline-block;
  width: 100%;
}

.pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .2s;

  /* Responsive sizing */
  width: clamp(40px, 8vw, 70px);
  height: clamp(40px, 8vw, 70px);
}

.media-grid-item:hover .pause-btn {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .media-grid-item:hover .pause-btn:has(.pauseIcon){
     opacity: 0;
  }
}

/* pause & play UI */

/* Insta Feed Section */
.Instagram-section .media-grid {
  display: flex;
  gap: 0;
  overflow-y: hidden;
  max-width: 100%;
  scrollbar-width: none;
  margin-bottom: 50px;
}

@media (min-width: 991px) {
  .Instagram-section .page-width {
    margin: 0 !important;
    padding: 0 !important;
    max-width: unset !important;
  }
}

.Instagram-section .media-grid-item {
  flex: 0 0 calc(100% / 6 - 10px);
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .Instagram-section .media-grid-item {
    flex: 0 0 calc(100% / 4 - 10px);
  }
}

@media (max-width: 600px) {
  .Instagram-section .media-grid-item {
    flex: 0 0 calc(100% / 2 - 10px);
  }
}
/* Insta Feed Section */