/** Shopify CDN: Minification failed

Line 280:0 Unexpected "<"
Line 447:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
/* Default grid layout for desktop */
.hover-grid-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hover-grid-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items per row on desktop */
  gap: 1rem;
}

.hover-grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 1rem;
}

.hover-grid-overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.6)!important; /* Semi-transparent black background */
  color: white;
  opacity: 0; /* Hidden by default */
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hover-grid-title {
  font-family: poleno;
  font-weight: 400;
  font-size: 2rem; /* Make title much bigger */
  text-align: left;
  margin-bottom: 0.5rem;
}

.hover-grid-description {
  text-align: center;
  font-size: 1.5rem; /* Make description bigger */
}

.hover-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Mobile-specific grid layout */
@media (max-width: 768px) {
  .hover-grid-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile */
    gap: 1rem;
  }

  .hover-grid-item {
    width: 100%; /* Each item will take full width on mobile */
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .hover-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.6);
    transition: transform 0.3s ease;
  }

  .hover-grid-overlay {
    position: absolute;
    inset: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.6)!important; /* Semi-transparent black background */
    color: white;
    opacity: 0; /* Hidden by default */
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
  }

  .hover-grid-item.active .hover-grid-overlay {
    opacity: 1; /* Show the overlay when active */
    pointer-events: auto; /* Allow interaction when active */
  }
}
.hover-grid-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hover-grid-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items per row on desktop */
  gap: 1rem;
}

@media (max-width: 768px) {
  .hover-grid-section {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile */
  }
}

.hover-grid-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.hover-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hover-grid-overlay {
  position: absolute;
  border-radius: 0.5rem;
  inset: 0;
  color: #ffffff; /* White text */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(1.02);
}

.hover-grid-item:hover .hover-grid-overlay {
  transform: scale(1);
}

.hover-grid-title {
  font-weight: bold;
  text-align: left;
}

.hover-grid-description {
  text-align: center;
  font-size: 1rem;
}

/* Show on hover for desktop */
.hover-grid-item:hover .hover-grid-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Tap-to-toggle on mobile */
@media (hover: none) {
  .hover-grid-item.active .hover-grid-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
.staff-section-heading .h2 {
  font-size: 4rem;
  text-align: left;
  padding-left: 2rem !important;
  margin-bottom: 1.5rem;
}

.carousel-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.designer-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-inline: 2rem;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.designer-carousel::-webkit-scrollbar {
  display: none;
}

.designer-card-wrapper {
  padding-top: 1.5rem;
  flex-shrink: 0;
}

.designer-card {
  display: block;
  color: inherit;
  text-decoration: none;
  width: 240px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  will-change: transform;
}

.designer-pic {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #000;
  transition: transform 0.3s ease;
}

.designer-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.designer-name {
  margin-top: 0.75rem;
  font-size: 1.6rem;
  color: #111;
}

.designer-card:hover {
  cursor: pointer;
  transform: translateY(-8px) var(--tilt);
}

@media (max-width: 768px) {
  .staff-section-heading .h2 {
    font-size: 2.8rem;
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .designer-card {
    width: 200px;
  }

  .designer-pic {
    width: 200px;
    height: 200px;
  }

  .designer-name {
    font-size: 1.4rem;
  }
}
<style>
  .staff-section-heading {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  /* --- GRID LAYOUT (MOBILE-FIRST) --- */
  .staff-grid {
    display: grid;
    /* Default to two columns for mobile */
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto !important;
    padding: .5rem 1rem !important;
  }
  
  /* --- CARD STYLES --- */
  .staff-card {
    border-radius: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  /* For mobile grid layout, if last item is odd, it spans the full width */
  .staff-card.is-last-odd {
    grid-column: 1 / -1;
  }

  .staff-photo-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
  }

  .staff-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .staff-card .hover-img {
    opacity: 0;
    transform: scale(0.7) rotate(-15deg);
  }

  /* --- INTERACTION STYLES --- */
  .staff-card:focus-within {
    transform: scale(1.05) rotate(var(--random-rotate, 2deg));
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    z-index: 10;
  }

  .staff-card:focus-within .base-img {
    opacity: 0;
    transform: scale(1.3) rotate(15deg);
  }

  .staff-card:focus-within .hover-img {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  
  .staff-card:focus-within .staff-details {
    transform: translateY(0);
  }
  
  @media (hover: hover) and (pointer: fine) {
    .staff-card:hover {
      transform: scale(1.05) rotate(var(--random-rotate, 2deg));
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
      z-index: 10;
    }
    .staff-card:hover .base-img {
      opacity: 0;
      transform: scale(1.3) rotate(15deg);
    }
    .staff-card:hover .hover-img {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
    .staff-card:hover .staff-details {
      transform: translateY(0);
    }
  }

  .staff-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1rem 1rem;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Mobile position */
    transform: translateY(calc(100% - 45px));
  }
  
  /* Mobile font sizes */
  .staff-card h3 {
    line-height: 1.2 !important;
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 0.25rem 0;
  }
  
  .staff-card strong {
    display: block;
    font-size: 1.3rem;

    margin: 0 0 0.5rem 0;
  }

  .staff-card p {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.5;
    margin: 0 auto !important;
    max-width: 95%;
  }

   /* --- DESKTOP STYLES (Single Row & Larger Text) --- */
   @media (min-width: 769px) {
    .staff-grid {
      /* Switch to flexbox for a single row layout */
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1600px; /* Wider container for single row */
    }

    .staff-card {
      /* Give cards a size basis for the flex row */
      flex: 0 1 300px;
    }
     
    .staff-details {
       transform: translateY(calc(100% - 55px));
    }

    .staff-card h3 {
      font-size: 2.2rem;
    }

    .staff-card strong {
      font-size: 1.5rem;
    }

    .staff-card p {
      font-size: 1.4rem;
    }
  }
</style>