/** Shopify CDN: Minification failed

Line 161:15 Unterminated string token

**/
/**
 * IN MEDIA PAGE - Premium Styling
 * Enhanced layout for press coverage, media mentions, and logos
 */

/* ============================================================================
   1. PAGE HERO SECTION
   ============================================================================ */

.template-page .main-page-title {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  color: rgb(var(--color-foreground)) !important;
  margin-bottom: 3rem !important;
  text-align: center !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

/* ============================================================================
   2. MEDIA LOGOS GRID
   ============================================================================ */

/* Grid container for media logos/outlets */
.template-page .rte > div:has(img),
.template-page .media-logos,
.template-page .rte > section:has(img) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem !important;
  margin: 4rem 0 !important;
  align-items: center;
  justify-items: center;
}

@media screen and (min-width: 750px) {
  .template-page .rte > div:has(img),
  .template-page .media-logos,
  .template-page .rte > section:has(img) {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem !important;
  }
}

/* Media logo images */
.template-page .rte img,
.template-page .media-logos img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(30%);
  padding: 1.5rem;
}

.template-page .rte img:hover,
.template-page .media-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ============================================================================
   3. PRESS ARTICLES / MEDIA MENTIONS
   ============================================================================ */

/* Press article cards */
.template-page .press-article,
.template-page .rte > div:has(a[href]),
.template-page .rte article {
  background: rgba(var(--color-background), 0.6) !important;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(var(--color-foreground), 0.08);
  transition: all 0.3s ease;
}

.template-page .press-article:hover,
.template-page .rte > div:has(a[href]):hover,
.template-page .rte article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Press article title/link */
.template-page .press-article h3,
.template-page .press-article a,
.template-page .rte > div:has(a[href]) h3,
.template-page .rte > div:has(a[href]) a,
.template-page .rte article h3,
.template-page .rte article a {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: rgb(var(--color-foreground)) !important;
  text-decoration: none;
  margin-bottom: 1rem !important;
  display: block;
  transition: color 0.2s ease;
}

.template-page .press-article a:hover,
.template-page .rte > div:has(a[href]) a:hover,
.template-page .rte article a:hover {
  color: rgb(106, 168, 79) !important;
}

/* Press outlet/source */
.template-page .press-outlet,
.template-page .press-date {
  font-size: 0.95rem;
  color: rgba(var(--color-foreground), 0.7);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.template-page .press-outlet::before {
  content: "—";
  margin-right: 0.5rem;
  color: rgb(106, 168, 79);
}

/* Press excerpt/description */
.template-page .press-excerpt,
.template-page .rte > div:has(a[href]) p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.8);
  margin-top: 1rem;
}

/* ============================================================================
   4. QUOTE / TESTIMONIAL STYLING
   ============================================================================ */

.template-page .rte blockquote,
.template-page .press-quote {
  border-left: 4px solid rgb(106, 168, 79);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  background: rgba(106, 168, 79, 0.05);
  border-radius: 0 12px 12px 0;
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  color: rgb(var(--color-foreground));
  position: relative;
}

.template-page .rte blockquote::before,
.template-page .press-quote::before {
  content: """;
  font-size: 4rem;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: rgb(106, 168, 79);
  opacity: 0.2;
  font-family: Georgia, serif;
}

/* ============================================================================
   5. MEDIA CATEGORY SECTIONS
   ============================================================================ */

.template-page .rte h2 {
  font-size: 2rem !important;
  font-weight: 600 !important;
  color: rgb(106, 168, 79) !important;
  margin-top: 4rem !important;
  margin-bottom: 2rem !important;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(106, 168, 79, 0.2);
  text-align: center;
}

.template-page .rte h2:first-of-type {
  margin-top: 2rem;
}

.template-page .rte h3 {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: rgb(var(--color-foreground)) !important;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
}

/* ============================================================================
   6. VIDEOS / EMBEDS
   ============================================================================ */

.template-page .rte iframe,
.template-page .media-video {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  margin: 2rem 0;
}

/* Video wrapper for responsive aspect ratio */
.template-page .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  margin: 2rem 0;
}

.template-page .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================================
   7. TIMELINE / CHRONOLOGICAL LAYOUT
   ============================================================================ */

.template-page .timeline,
.template-page .rte > ul:has(li > strong) {
  position: relative;
  padding-left: 2rem;
  margin: 3rem 0;
}

.template-page .timeline::before,
.template-page .rte > ul:has(li > strong)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgb(106, 168, 79), rgba(106, 168, 79, 0.3));
}

.template-page .timeline-item,
.template-page .rte > ul:has(li > strong) li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
  list-style: none;
}

.template-page .timeline-item::before,
.template-page .rte > ul:has(li > strong) li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(106, 168, 79);
  border: 2px solid rgb(var(--color-background));
}

/* ============================================================================
   8. GENERAL CONTENT STYLING
   ============================================================================ */

.template-page .rte {
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.template-page .rte p {
  margin-bottom: 1.5rem !important;
}

.template-page .rte ul,
.template-page .rte ol {
  margin: 2rem 0;
  padding-left: 2rem;
}

.template-page .rte li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.template-page .rte a {
  color: rgb(106, 168, 79);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
  font-weight: 500;
}

.template-page .rte a:hover {
  color: rgb(85, 150, 65);
}

/* ============================================================================
   9. MOBILE OPTIMIZATION
   ============================================================================ */

@media screen and (max-width: 749px) {
  .template-page .main-page-title {
    margin-bottom: 2rem !important;
  }

  .template-page .rte > div:has(img),
  .template-page .media-logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  .template-page .press-article,
  .template-page .rte > div:has(a[href]) {
    padding: 1.5rem !important;
  }

  .template-page .rte h2 {
    font-size: 1.75rem !important;
  }

  .template-page .rte blockquote,
  .template-page .press-quote {
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .template-page .timeline,
  .template-page .rte > ul:has(li > strong) {
    padding-left: 1.5rem;
  }
}

/* ============================================================================
   10. ACCESSIBILITY
   ============================================================================ */

.template-page .rte a:focus-visible {
  outline: 3px solid rgb(106, 168, 79);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================================
   END OF IN MEDIA PAGE STYLING
   ============================================================================ */
