/** Shopify CDN: Minification failed

Line 167:5 Unexpected "/"
Line 188:0 Unexpected "}"

**/
.media-cards-section {
  padding: 60px 0;
  background: radial-gradient(circle,#C0E8F8 15%, rgba(0, 0, 0, 0) 55%);
  /* background: #ffffff; */
  overflow: hidden;

  .media-cards-header {
    text-align: center;
    /* margin: 0 auto 60px; */
    /* padding: 0 20px; */
  }
  .media-cards-heading {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 400;
    color: #122F53;
    margin: 0 0 16px 0;
    line-height: 1.2;
  }
  .media-cards-subheading {
    font-size: 20px;
    color: #122F53;
    margin: 0;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
    white-space: pre-line;
  }
  .media-cards-wrapper {
    position: relative;
    width: 100%;
    /* padding: 40px 0 80px; */
  }
  /* Swiper Container */
  .media-cards-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .media-cards-swiper .swiper-slide {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #f5f5f5;
  }
  /* Media Card */
  .media-card {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
  }
  .media-card-image,
  .media-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 9/16;
  }
  .media-card-video {
    background: #000000;
  }
  /* Pagination Lines */
  .media-cards-pagination {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
  }
  .media-cards-pagination .swiper-pagination-bullet {
    width: 100%;
    height: 1px;
    background: #122F53;
    opacity: 1;
    transition: all 0.3s ease;
  }
  .media-cards-pagination .swiper-pagination-bullet-active {
    height: 2px;
  }
  /* Swiper Coverflow Effect Adjustments */
  .media-cards-swiper .swiper-slide-shadow-left,
  .media-cards-swiper .swiper-slide-shadow-right {
    border-radius: 24px;
  }
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
  }
  /* Mobile Responsive */
  @media screen and (max-width: 749px) {
    padding: 40px 0;
    margin-inline: -16px;

    .media-cards-header{
      padding-inline: 15px;
    }
    /* .media-cards-heading {
      font-size: 28px;
    } */
    .media-cards-subheading {
      font-size: 18px;
    }
    .media-cards-swiper .swiper-slide {
      width: 250px;
    }
    .media-card {
      border-radius: 16px;
    }
    .media-cards-swiper .swiper-slide {
      border-radius: 16px;
    }
    .media-cards-swiper .swiper-slide-shadow-left,
    .media-cards-swiper .swiper-slide-shadow-right {
      border-radius: 16px;
    }
    /* Show pagination on mobile */
    .media-cards-pagination {
      display: flex;
      position: absolute;
      width: calc(100% - 32px) !important;
      margin-inline: auto;
    }
  }
  /* Tablet Responsive */
  /* @media screen and (min-width: 750px) and (max-width: 989px) {
    .media-cards-swiper .swiper-slide {
      width: 280px;
    }
    .media-cards-heading {
      font-size: 32px;
    }
    .media-cards-pagination {
      display: none;
    }
  } */

  /* Desktop Large */
  /* @media screen and (min-width: 990px) {
    .media-cards-section {
      padding: 80px 0;
    }
    .media-cards-heading {
      font-size: 42px;
    }
    .media-cards-subheading {
      font-size: 18px;
    }
    .media-cards-swiper .swiper-slide {
      width: 350px;
    }
    /* Hide pagination on desktop */
    
  } */

  /* Accessibility */
  .media-cards-button:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
  }
  /* Loading State */
  .media-card-image[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
  }
  @keyframes loading {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
}