/** Shopify CDN: Minification failed

Line 23:10 Unexpected "{"
Line 23:19 Expected ":"
Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
Line 24:25 Expected ":"
Line 24:51 Expected ":"
Line 25:17 Expected identifier but found whitespace
Line 25:19 Unexpected "{"
Line 25:28 Expected ":"
Line 25:57 Expected ":"

**/
.why-polar-plunge {
  --wpp-navy: #0B1D3A;
  --wpp-ice: #7EC8E3;
  --wpp-card-radius: 16px;
  --wpp-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section Padding (from schema) */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

/* Header */
.why-polar-plunge__header {
  margin-bottom: 48px;
}

.why-polar-plunge__subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.55);
  margin-bottom: 8px;
}

.why-polar-plunge__title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
}

/* Cards Container */
.why-polar-plunge__cards {
  position: relative;
  display: flex;
  gap: 20px;
  min-height: 480px;
}

/* Card */
.why-polar-plunge__card {
  position: relative;
  flex: 1;
  min-height: 460px;
  border-radius: var(--wpp-card-radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--wpp-transition);
  transform: scale(1);
  opacity: 1;
}

.why-polar-plunge__card.is-expanded {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  flex: none;
  width: 100%;
  min-height: 480px;
  cursor: default;
}

.why-polar-plunge__card.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
}

/* Card Background */
.why-polar-plunge__card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.why-polar-plunge__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-polar-plunge__card:not(.is-expanded):hover .why-polar-plunge__card-img {
  transform: scale(1.04);
}

.why-polar-plunge__card-bg--placeholder {
  background: var(--wpp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-polar-plunge__card-bg--placeholder .placeholder-svg {
  width: 50%;
  opacity: 0.3;
}

/* Overlay */
.why-polar-plunge__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,29,58,0.15) 0%, rgba(11,29,58,0.78) 100%);
  transition: background var(--wpp-transition);
  z-index: 1;
}

.why-polar-plunge__card.is-expanded .why-polar-plunge__card-overlay {
  background: linear-gradient(180deg, rgba(11,29,58,0.3) 0%, rgba(11,29,58,0.9) 100%);
}

/* Category Pill */
.why-polar-plunge__card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 18px;
  z-index: 4;
}

.why-polar-plunge__card-category-icon {
  width: 18px;
  height: 18px;
  color: var(--wpp-ice);
  flex-shrink: 0;
}

.why-polar-plunge__card-category-text {
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.4px;
}

/* Toggle Button */
.why-polar-plunge__card-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  color: #222222;
}

.why-polar-plunge__card-toggle:hover {
  transform: scale(1.1);
}

.why-polar-plunge__card-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-polar-plunge__card.is-expanded .why-polar-plunge__card-toggle svg {
  transform: rotate(45deg);
}

/* Collapsed Content */
.why-polar-plunge__collapsed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 3;
  transition: opacity 0.25s ease;
}

.why-polar-plunge__card.is-expanded .why-polar-plunge__collapsed {
  opacity: 0;
  pointer-events: none;
}

.why-polar-plunge__collapsed-headline {
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.why-polar-plunge__collapsed-headline em {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--wpp-ice);
}

/* Expanded Content */
.why-polar-plunge__expanded {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: 48px 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.12s;
}

.why-polar-plunge__card.is-expanded .why-polar-plunge__expanded {
  opacity: 1;
  pointer-events: all;
}

.why-polar-plunge__expanded-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 60px;
}

.why-polar-plunge__expanded-left {
  max-width: 480px;
}

.why-polar-plunge__expanded-headline {
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.why-polar-plunge__expanded-headline em {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--wpp-ice);
}

.why-polar-plunge__expanded-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

.why-polar-plunge__expanded-cta {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.why-polar-plunge__expanded-cta:hover {
  background: #FFFFFF;
  color: #222222;
  border-color: #FFFFFF;
}

/* Right Column */
.why-polar-plunge__expanded-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 300px;
}

/* Stats 2x2 Grid */
.why-polar-plunge__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Stat Card */
.why-polar-plunge__stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
}

.why-polar-plunge__stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--wpp-ice);
  margin-bottom: 6px;
}

.why-polar-plunge__stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 3px;
  letter-spacing: -0.3px;
}

.why-polar-plunge__stat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Testimonial Card */
.why-polar-plunge__testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px 24px;
}

.why-polar-plunge__testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.why-polar-plunge__testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wpp-ice), var(--wpp-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.why-polar-plunge__testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}

.why-polar-plunge__testimonial-role {
  font-size: 11px;
  color: var(--wpp-ice);
  font-weight: 600;
}

.why-polar-plunge__testimonial-quote {
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* Featured In */
.why-polar-plunge__featured-in {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 20px;
}

.why-polar-plunge__featured-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--wpp-ice);
  margin-bottom: 12px;
}

.why-polar-plunge__featured-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why-polar-plunge__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(1.3) contrast(0.9);
  transition: opacity 0.3s ease;
}

.why-polar-plunge__logo:hover {
  opacity: 1;
}

/* Mobile: Overflow Slider */
@media screen and (max-width: 749px) {
  .why-polar-plunge__cards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    min-height: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .why-polar-plunge__cards::-webkit-scrollbar {
    display: none;
  }

  .why-polar-plunge__card {
    flex: 0 0 85vw;
    min-height: 380px;
    scroll-snap-align: start;
  }

  /* On mobile, expanded card switches to relative flow layout */
  .why-polar-plunge__card.is-expanded {
    position: relative;
    flex: 0 0 85vw;
    min-height: auto;
  }

  .why-polar-plunge__card.is-hidden {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
  }

  /* Make expanded content flow naturally instead of absolute */
  .why-polar-plunge__card.is-expanded .why-polar-plunge__collapsed {
    display: none;
  }

  .why-polar-plunge__card.is-expanded .why-polar-plunge__expanded {
    position: relative;
    inset: auto;
    padding: 60px 20px 24px;
  }

  .why-polar-plunge__card.is-expanded .why-polar-plunge__card-bg,
  .why-polar-plunge__card.is-expanded .why-polar-plunge__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .why-polar-plunge__expanded-inner {
    flex-direction: column;
    gap: 20px;
  }

  .why-polar-plunge__expanded-left {
    max-width: 100%;
  }

  .why-polar-plunge__expanded-right {
    min-width: auto;
  }

  /* Keep 2x2 grid on mobile for benefits stats */
  .why-polar-plunge__stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .why-polar-plunge__title {
    font-size: 32px;
  }

  .why-polar-plunge__expanded-headline {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .why-polar-plunge__expanded-body {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .why-polar-plunge__stat-card {
    padding: 14px;
  }

  .why-polar-plunge__stat-value {
    font-size: 20px;
  }

  .why-polar-plunge__stat-label {
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .why-polar-plunge__stat-sub {
    font-size: 10px;
  }

  .why-polar-plunge__testimonial-card {
    padding: 16px 18px;
  }

  .why-polar-plunge__testimonial-quote {
    font-size: 12px;
  }

  .why-polar-plunge__featured-in {
    padding: 14px 16px;
  }

  .why-polar-plunge__featured-logos {
    gap: 14px;
  }

  .why-polar-plunge__logo {
    height: 22px;
  }

  .why-polar-plunge__collapsed-headline {
    font-size: 22px;
  }

  .why-polar-plunge__card-category {
    padding: 6px 14px;
  }

  .why-polar-plunge__card-category-text {
    font-size: 11px;
  }

  .why-polar-plunge__expanded-cta {
    padding: 10px 22px;
    font-size: 12px;
  }
}

/* Tablet */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .why-polar-plunge__card {
    min-height: 400px;
  }

  .why-polar-plunge__expanded-inner {
    gap: 40px;
  }

  .why-polar-plunge__expanded-right {
    min-width: 240px;
  }
}
