/** Shopify CDN: Minification failed

Line 180:17 Unterminated string token

**/
 .gpe-section {
    --card-border-radius: 0.5rem;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --content-padding: clamp(1rem, 3vw, 1.5rem);
    --grid-gap: clamp(1rem, 3vw, 2.5rem);
    --transition-smooth: cubic-bezier(0.23, 1, 0.32, 1);
    --image-height: auto;
    width: 100%;
    max-width: 100%;
    padding: 4rem 1rem;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #ffe5c6;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gpe-content-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--grid-gap);
  }

  /* Card base styling */
  .gpe-card, .gpe-comment-section {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    background-color: #fff;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s var(--transition-smooth),
                box-shadow 0.5s var(--transition-smooth);
    will-change: transform, box-shadow;
    height: 100%;
  }

  /* Interactive hover effects */
  .gpe-card:hover, .gpe-comment-section:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--card-shadow-hover);
  }

  /* Interactive light effect */
  .gpe-card::before, .gpe-comment-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
                rgba(255, 255, 255, 0.2) 0%,
                transparent 50%);
    transition: opacity 0.3s;
    z-index: 10;
    pointer-events: none;
  }

  .gpe-card:hover::before, .gpe-comment-section:hover::before {
    opacity: 1;
  }

  /* Image container */
  .gpe-card-image {
    position: relative;
    overflow: hidden;
    line-height: 0;
  }

  .gpe-card-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 600/350;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .gpe-card:hover .gpe-card-image img {
    transform: scale(1.05);
  }

  .gpe-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.5s;
  }

  .gpe-card:hover .gpe-card-overlay {
    opacity: 1;
  }

  /* Content area */
  .gpe-card-content {
    padding: var(--content-padding);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-grow: 1;
  }

  /* Typography */
  .gpe-card-content h3 {
    font-size: clamp(1.25rem, 4cqi, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
    position: relative;
  }

  .gpe-card-content h3::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 3px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
  }

  .gpe-card:hover .gpe-card-content h3::after {
    transform: scaleX(1);
  }

  .gpe-card-content p {
    font-size: clamp(0.875rem, 3cqi, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
  }

  /* Comment section styling */
  .gpe-comment-section {
    background-color: #fff7ed;
    animation: pulse 6s var(--transition-smooth) infinite;
  }

  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 10px 25px rgba(0, 83, 76, 0.1);
    }
    50% {
      box-shadow: 0 15px 35px rgba(0, 83, 76, 0.25);
    }
  }

  .gpe-comment-section:hover {
    animation-play-state: paused;
  }

  .gpe-comment-content {
    padding: var(--content-padding);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    height: 100%;
    justify-content: center;
  }

  .gpe-comment-content::before {
    content: """;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    font-size: 8rem;
    color: rgba(10, 194, 182, 0.07);
    line-height: 1;
    z-index: -1;
  }

  .gpe-comment-text {
    font-size: clamp(0.875rem, 3cqi, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: #00534C;
    margin: 0;
    position: relative;
    animation: fadeInUp 1s var(--transition-smooth) forwards;
  }

  .gpe-commenter-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInRight 1s var(--transition-smooth) 0.3s forwards;
    opacity: 0;
  }

  .gpe-profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .gpe-profile-pic::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(10, 194, 182, 0.5);
    animation: rotateGlow 4s linear infinite;
  }

  @keyframes rotateGlow {
    0% {
      transform: rotate(0deg);
      box-shadow: inset 0 0 0 2px rgba(10, 194, 182, 0.3),
                  0 0 10px rgba(10, 194, 182, 0);
    }
    50% {
      box-shadow: inset 0 0 0 2px rgba(10, 194, 182, 0.6),
                  0 0 20px rgba(10, 194, 182, 0.3);
    }
    100% {
      transform: rotate(360deg);
      box-shadow: inset 0 0 0 2px rgba(10, 194, 182, 0.3),
                  0 0 10px rgba(10, 194, 182, 0);
    }
  }

  .gpe-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gpe-commenter-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .gpe-commenter-name {
    font-weight: 600;
    font-size: clamp(1rem, 3cqi, 1.75rem);
    margin: 0;
    color: #333;
  }

  .gpe-commenter-job {
    font-size: clamp(0.8rem, 2cqi, 1rem);
    color: #666;
    margin: 0;
  }

  /* Animations */
  @keyframes cardAppear {
    from {
      opacity: 0;
      transform: translateY(2rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .gpe-card, .gpe-comment-section {
    opacity: 0;
    animation: cardAppear 0.8s var(--transition-smooth) forwards;
  }

  .gpe-card:nth-child(1) {
    animation-delay: 0.4s;
  }

  .gpe-card:nth-child(2) {
    animation-delay: 0.6s;
  }

  .gpe-comment-section {
    animation-delay: 0.8s;
  }

  /* RESPONSIVE BREAKPOINTS */

  /* Mobile First (default is column) */

  /* Tablet - 2 column grid */
  @media (min-width: 640px) {
    .gpe-section {
      padding: 4rem 2rem;
    }

    .gpe-content-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

    .gpe-comment-section {
      grid-column: span 2;
    }
  }

  /* Desktop - 3 column grid with all items in one row */
  @media (min-width: 1024px) {
    .gpe-section {
      padding: 5rem 4rem;
    }

    .gpe-content-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .gpe-comment-section {
      grid-column: 3;
    }

    .gpe-card-content, .gpe-comment-content {
      padding: 1.5rem;
    }
  }

  /* Large screens */
  @media (min-width: 1400px) {
    .gpe-section {
      padding: 6rem 5rem;
    }

    .gpe-content-wrapper {
      gap: 2.5rem;
    }
  }

  /* Support for reduced motion preferences */
  @media (prefers-reduced-motion: reduce) {
    .gpe-card,
    .gpe-comment-section,
    .gpe-card-image img,
    .gpe-card:hover,
    .gpe-comment-section:hover,
    .gpe-card-content h3::after,
    .gpe-profile-pic::after,
    .gpe-comment-text,
    .gpe-commenter-info {
      transition: none;
      animation: none;
      transform: none;
    }

    .gpe-card,
    .gpe-comment-section,
    .gpe-comment-text,
    .gpe-commenter-info {
      opacity: 1;
    }
  }