/** Shopify CDN: Minification failed

Line 523:77 Unexpected bad string token
Line 523:78 Unterminated string token

**/
/* ==========================================================================
   HAPŪ HELPERS — BLOGS & LEARNING CENTER
   --------------------------------------------------------------------------
   All blog-adjacent styles: categories grid, featured article, article
   cards, dual entry. Loaded site-wide via theme.liquid.
   
   Note on images: this file uses NATURAL image sizing — images render
   at their uploaded dimensions, constrained only by max-width: 100%.
   No forced aspect ratios, no object-fit cropping. Upload images at
   consistent dimensions if you want uniform card heights.
   ========================================================================== */


/* ==========================================================================
   1. CATEGORIES  (topic cards with decorative dot)
   ========================================================================== */

.hh-cats-section {
  padding: 4rem 0;
}

.hh-cats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.6rem;
}

.hh-cat {
  position: relative;
  display: block;
  padding: 2.8rem 2.4rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
  overflow: hidden;
}

.hh-cat:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: 0 16px 32px -16px rgba(28, 26, 31, 0.12);
}

.hh-cat__dot {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  pointer-events: none;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0.4, 1);
}
 
.hh-cat:hover .hh-cat__dot {
  transform: scale(1.4);
}

.hh-cat--teal .hh-cat__dot   { background: var(--teal-light); }
.hh-cat--pink .hh-cat__dot   { background: var(--pink-light); }
.hh-cat--purple .hh-cat__dot { background: rgba(96, 51, 115, 0.18); }
.hh-cat--cream .hh-cat__dot  { background: var(--cream-deep); }

.hh-cat__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 60;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}

.hh-cat:hover .hh-cat__title {
  color: var(--pink);
}

.hh-cat__count {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink-mute);
  margin-bottom: 1.6rem;
}

.hh-cat__body {
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}


/* ==========================================================================
   2. FEATURED ARTICLE  (purple card, inset rounded media, pink glow)
   ========================================================================== */

.hh-feat-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--purple);
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  isolation: isolate;
}

.hh-feat-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -16px rgba(28, 26, 31, 0.25);
}

/* Subtle pink glow in the top-right */
.hh-feat-article::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  left: auto;
  width: 55%;
  height: 90%;
  background: radial-gradient(
    ellipse at center,
    rgba(224, 76, 115, 0.32) 0%,
    rgba(224, 76, 115, 0.1) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hh-feat-article__copy {
  padding: 5rem 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hh-feat-article__meta {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 250, 245, 0.7);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hh-feat-article__sep {
  opacity: 0.5;
}

.hh-feat-article__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 100;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 1.6rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hh-feat-article__excerpt {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.55;
  color: rgba(255, 250, 245, 0.8);
  margin: 0 0 2.8rem;
}

/* Hides excerpt on related blogs */
.article-card__excerpt {
  display: none !important;
}

.hh-feat-article__cta {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  transition: transform 0.2s, color 0.2s;
}

.hh-feat-article:hover .hh-feat-article__cta {
  color: var(--pink);
}

/* Media — inset rounded card with pink gradient placeholder */
.hh-feat-article__media {
  position: relative;
  margin: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1704 / 1080;
  background: radial-gradient(
    ellipse at center,
    rgba(224, 76, 115, 0.5) 0%,
    rgba(255, 225, 233, 0.6) 40%,
    rgba(255, 250, 245, 0.95) 85%
  );
  z-index: 1;
}

.hh-feat-article__media img{
  width: 100%;
  height: auto;
}


/* Natural image sizing — no aspect crop, no stretch */
.hh-feat-article__img {
  display: block;
  width: 100%;
  height: 100%;
}


/* ==========================================================================
   3. ARTICLE GRID  (cards with natural image sizing)
   ========================================================================== */

.hh-arts-section {
  padding: 5rem 0;
}

.hh-arts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
  align-items: start;
}

.hh-art-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
  min-width: 0;
}

.hh-art-card:hover {
  transform: translateY(-4px);
}

.hh-art-card__media {
  background: var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.8rem;
  aspect-ratio: 1704 / 1080;
}

.hh-art-card__media img{
  width: 100%;
  height: auto;
}

/* Natural image sizing — image renders at uploaded dimensions */
.hh-art-card__img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.hh-art-card:hover .hh-art-card__img {
  transform: scale(1.04);
}

.hh-art-card__cat {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.hh-art-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 60;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: color 0.2s;
}

.hh-art-card:hover .hh-art-card__title {
  color: var(--pink);
}

.hh-art-card__read {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--ink-mute);
}


/* ==========================================================================
   4. DUAL ENTRY  (two large colored CTA blocks)
   ========================================================================== */

.hh-dual {
  padding: 5rem 0 6rem;
}

.hh-dual__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.2rem;
}

.hh-dual__heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 100;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}

.hh-dual__support {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.hh-dual__support strong {
  color: var(--ink);
  font-weight: 600;
}

.hh-dual__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.hh-dual-entry {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4.4rem 3.6rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 30rem;
  min-width: 0;
}

.hh-dual-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(28, 26, 31, 0.2);
}

.hh-dual-entry--teal  { background: var(--teal);       color: var(--cream); }
.hh-dual-entry--pink  { background: var(--pink);       color: var(--cream); }
.hh-dual-entry--ink   { background: var(--ink);        color: var(--cream); }
.hh-dual-entry--cream { background: var(--cream-deep); color: var(--ink); border: 1px solid var(--line); }

.hh-dual-entry--light-teal  { background: var(--hh-transparent-teal);       color: var(--ink); }
.hh-dual-entry--light-pink  { background: var(--hh-transparent-pink);       color: var(--ink); }

.hh-dual-entry__label {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.hh-dual-entry__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 100;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: inherit;
  margin: 0 0 1.6rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hh-dual-entry__body {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.55;
  margin: 0 0 2.8rem;
  opacity: 0.85;
}

.hh-dual-entry__cta {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: auto;
  transition: transform 0.2s;
}

.hh-dual-entry:hover .hh-dual-entry__cta {
  transform: translateX(4px);
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .hh-cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hh-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hh-arts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-feat-article {
    grid-template-columns: 1fr;
  }

  .hh-feat-article__copy {
    padding: 4rem 3.2rem;
  }

  .hh-dual__head {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .hh-dual__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hh-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .hh-cat {
    padding: 2.4rem 2rem;
  }

  .hh-arts {
    grid-template-columns: 1fr;
  }

  .hh-feat-article__copy {
    padding: 3.2rem 2.4rem;
  }

  .hh-dual-entry {
    padding: 3.6rem 2.8rem;
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .hh-cats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   REPLACE in hh-blogs.css
   --------------------------------------------------------------------------
   Find the previously-appended article sections (5-10 + the article
   responsive block) and replace from "/* 5. ARTICLE — wrapper & spacing */"
   through to the end of the article responsive media queries with the
   contents below.
   ========================================================================== */


/* ==========================================================================
   5. ARTICLE — wrapper & spacing
   ========================================================================== */

.hh-article {
  padding-bottom: 6rem;
}

.hh-article .hh-crumb {
  margin-bottom: 3.6rem!important;
  max-width: 110rem;
  margin: auto;
  padding-top: 5.2rem;
}


/* ==========================================================================
   6. ARTICLE HERO
   ========================================================================== */

.hh-article__hero {
  padding: 2rem 0 7.2rem;
  max-width: 110rem;
  margin: 0 auto;
}

.hh-article__eyebrow {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 2rem;
}

.hh-article__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 2.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hh-article__standfirst {
  font-family: var(--font-body);
  font-size: 1.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 3.2rem;
  max-width: 64ch;
}

.hh-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--ink-mute);
}

.hh-article__meta > span {
  display: inline-flex;
  align-items: center;
}

.hh-article__dot {
  width: 0.4rem;
  height: 0.4rem;
  background: var(--ink-mute);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
}

.hh-article__author {
  color: var(--ink);
  font-weight: 500;
}


/* ==========================================================================
   7. SHARE BUTTONS
   ========================================================================== */

.hh-article__share {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}

.hh-article__share-explicit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hh-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hh-share-btn:hover {
  background: var(--cream-deep);
  border-color: var(--pink);
  color: var(--pink);
}

.hh-share-btn svg {
  flex-shrink: 0;
}

.hh-share-btn--native {
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  color: var(--ink);
}

.hh-article__share-status {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
  opacity: 0;
  transition: opacity 0.2s;
  margin-left: 0.4rem;
}

.hh-article__share-status.is-visible {
  opacity: 1;
}


/* ==========================================================================
   8. ARTICLE LAYOUT
   --------------------------------------------------------------------------
   2-column grid: sticky TOC (sidebar) + body (image first, then content).
   Image is sized to the body column, not the wide container.
   ========================================================================== */

.hh-article__layout {
  display: grid;
  grid-template-columns: 24rem minmax(0, 1fr);
  gap: 6rem;
  align-items: start;
  max-width: 110rem;
  margin: 0 auto;
}

.hh-article__body {
  min-width: 0;
}


/* ==========================================================================
   9. ARTICLE FEATURED IMAGE  (sized to body column)
   ========================================================================== */

.hh-article__image {
  margin: 0 0 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1704 / 1080;
  background: var(--cream-deep);
}

.hh-article__image img {
  display: block;
  width: 100%;
  height: 100%;
}


/* ==========================================================================
   10. TOC  (desktop sticky sidebar, mobile sticky dropdown)
   ========================================================================== */

.hh-article__toc {
  font-family: var(--font-body);
  /* Sticky behaviour — both desktop sidebar and mobile dropdown */
  position: sticky;
  top: calc(var(--header-height, 0px) + 2rem);
  z-index: 5;
  align-self: start;
  min-width: 0;
  /* Remove native disclosure marker (we draw our own chevron) */
}

.hh-article__toc[open] .hh-article__toc-chevron {
  transform: rotate(180deg);
}

/* Hide the default triangle */
.hh-article__toc summary::-webkit-details-marker { display: none; }
.hh-article__toc summary { list-style: none; }

.hh-article__toc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  user-select: none;
  min-width: 0;
}

.hh-article__toc-label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 0;
  min-width: 0;
}

/* On desktop the summary acts as a label only — no click toggling */
@media (min-width: 981px) {
  .hh-article__toc-summary { pointer-events: none; }
  .hh-article__toc-chevron { display: none!important; }
}

@media (max-width: 980px) {
  .hh-article__toc:not([open]) .hh-article__toc-label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--purple);
  }
}

.hh-article__toc-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  transition: transform 0.25s ease;
}

.hh-article__toc-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hh-article__toc-list a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--purple);
  text-decoration: none;
  padding: 0.4rem 0 0.4rem 1.2rem;
  margin-left: -1.4rem;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-left-color 0.2s;
}

.hh-article__toc-list a:hover {
  color: var(--pink);
  border-left-color: var(--pink);
}

/* Active state (driven by IntersectionObserver) */
.hh-article__toc-list a.is-active {
  color: var(--ink);
  border-left-color: var(--pink);
  font-weight: 500;
  padding-left: 1rem;
}


/* ==========================================================================
   11. ARTICLE BODY CONTENT  (rich text from Shopify admin editor)
   --------------------------------------------------------------------------
   .hh-article__content wraps article.content. Text sizing is constrained
   to a comfortable reading column; images inside content can be wider.
   ========================================================================== */

.hh-article__content {
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 68ch;
}

.hh-article__content > * + * {
  margin-top: 2rem;
}

.hh-article__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 80;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin: 5rem 0 1.6rem;
  scroll-margin-top: 10rem;
}

.hh-article__content h2:first-child {
  margin-top: 0;
}

.hh-article__content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 60;
  line-height: 1.25;
  color: var(--ink);
  margin: 3.2rem 0 1.2rem;
}

.hh-article__content p {
  margin: 0 0 2rem;
  color: var(--ink-soft);
}

.hh-article__content strong {
  color: var(--ink);
  font-weight: 600;
}

.hh-article__content em {
  font-style: italic;
}

.hh-article__content a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
  transition: color 0.2s;
}

.hh-article__content a:hover {
  color: var(--purple);
}

.hh-article__content ul,
.hh-article__content ol {
  margin: 0 0 2rem;
  padding-left: 2.4rem;
  color: var(--ink-soft);
}

.hh-article__content li {
  line-height: 1.6;
}

.hh-article__content li::marker {
  color: var(--pink);
}

.hh-article__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 3rem 0;
}

.hh-article__content blockquote {
  border-left: 3px solid var(--pink);
  padding: 1.6rem 0 1.6rem 2.4rem;
  margin: 3rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 80;
  line-height: 1.4;
  color: var(--ink);
}

.hh-article__content blockquote p {
  color: var(--ink);
  margin: 0;
}

.hh-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  font-size: 1.5rem;
}

.hh-article__content table th,
.hh-article__content table td {
  text-align: left;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.hh-article__content table th {
  font-weight: 600;
  color: var(--ink);
  background: var(--cream-deep);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hh-article__content table td {
  color: var(--ink-soft);
}

.hh-article__content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 4rem 0;
}

.hh-article__content code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--cream-deep);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}


/* ==========================================================================
   RESPONSIVE — article
   ========================================================================== */

@media (max-width: 980px) {
  .hh-article__layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  /* Mobile: TOC becomes a sticky dropdown at the top of the body */
  .hh-article__toc {
    /* Stay sticky to the top of the viewport (below the site header) */
    position: sticky;
    top: var(--header-height, 0px);
    z-index: 5;
    background: #f9def4;
    border: 1px solid #f9def4;
    border-radius: var(--radius);
    padding: 1.4rem 1.8rem;
    box-shadow: 0 4px 12px -8px rgba(28, 26, 31, 0.1);
    margin-bottom: 0;
  }

  .hh-article__toc-summary {
    border-bottom: 0;
    padding-bottom: 0;
    cursor: pointer;
  }

  .hh-article__toc[open] .hh-article__toc-summary {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #6033737d;
    margin-bottom: 0.4rem;
  }

  .hh-article__toc-list {
    margin-top: 1rem;
    gap: 0.6rem;
    max-height: 40vh;
    overflow-y: auto;
  }

  .hh-article__toc-list a {
    margin-left: 0;
    padding: 0.6rem 0 0.6rem 0rem;
  }

  /* Image at top of body sized properly on mobile */
  .hh-article__image {
    margin: 2.4rem 0 3rem;
  }
}

@media (max-width: 600px) {
  .hh-article {
    /* padding-bottom: 4rem; */
  }

  .hh-article__hero {
    padding: 1.2rem 0 3rem;
  }

  .hh-article__standfirst {
    font-size: 1.7rem;
    margin-bottom: 2.4rem;
  }

  .hh-article__meta {
    font-size: 1.3rem;
    gap: 0.8rem;
  }

  .hh-article__share {
    width: 100%;
    margin-top: 0.8rem;
  }

  .hh-article__content {
    font-size: 1.65rem;
  }

  .hh-article__content h2 {
    margin: 4rem 0 1.2rem;
  }
}

/* ============================================================
   HAPU FAQ ACCORDION
   ============================================================ */

.hapu-faq-wrap {
  font-family: inherit;
  border-top: 1px solid #6033737d;
  margin-top: 5.5rem;
}

.faq-top-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

/* ── Section heading ── */
.hapu-faq-heading {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0;
}

/* ── Expand all button ── */
.hapu-faq-controls {
  display: flex;
  justify-content: flex-end;
}

.hapu-expand-btn {
  background: transparent;
  border: 1.5px solid var(--pink);
  border-radius: 20px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hapu-expand-btn:hover {
  background: var(--hh-transparent-pink);
  color: var(--pink);
}

.hapu-expand-btn .hapu-chevron {
  display: inline-block;
  font-size: 0.75rem;
  transition: transform 0.25s;
}

.hapu-expand-btn.hapu-all-open .hapu-chevron {
  transform: rotate(180deg);
}

/* ── Accordion list ── */
.hapu-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0!important;
  margin: 0;
}

/* ── Single item ── */
.hapu-faq-item {
  border-bottom: 1px solid rgba(28,26,31,.1);
  /* border-radius: 15px; */
  /* background: #fff; */
  overflow: hidden;
  /* transition: border-color 0.2s, box-shadow 0.2s; */
}

.hapu-faq-item.hapu-open {
  /* border-color: var(--pink); */
}

/* ── Question button ── */
.hapu-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.hapu-faq-question-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color:  var(--ink);
  line-height: 1.4;
}

/* ── +/− icon ── */
.hapu-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hapu-faq-icon::before,
.hapu-faq-icon::after {
  content: '';
  position: absolute;
  background: #000000C7;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Horizontal bar */
.hapu-faq-icon::before {
  width: 14px;
  height: 1.5px;
}

/* Vertical bar */
.hapu-faq-icon::after {
  width: 1.5px;
  height: 14px;
}

/* When open, collapse vertical bar */
.hapu-faq-item.hapu-open .hapu-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* ── Answer panel ── */
.hapu-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hapu-faq-item.hapu-open .hapu-faq-answer {
  max-height: 800px;
}

.hapu-faq-answer-inner {
  padding: 0 0 22px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  border-top: #6033737d;
  margin-bottom: 20px;
}

.hapu-faq-answer-inner a {
  color: var(--hh-pink);
  text-decoration: underline;
}

/* ── Mobile ── */
@media (max-width: 767.98px) {
  .hapu-faq-wrap {
    padding: 32px 0 40px;
  }

  .hapu-faq-answer-inner {
    margin-bottom: 16px;
    padding-top: 14px;
  }
  .hapu-faq-heading{
    margin: 0!important;
  }
}

/* Hide dawn slider buttons on mobile */
.slider-buttons {
  display: none!important;
}

@media (max-width: 980px){
  .blog .hh-article__eyebrow{
  padding-left: 1.5rem;
  padding-left: 1.5rem;
}
}

/* ==========================================================================
   APPEND to hh-blogs.css
   --------------------------------------------------------------------------
   Article callout box — for inline editorial asides inside article body.
   Use by pasting <div class="hh-article-callout">...</div> in article HTML.
   ========================================================================== */


/* ==========================================================================
   14. ARTICLE CALLOUTS  (inline editorial asides in article body)
   --------------------------------------------------------------------------
   Usage inside an article body's HTML mode:
   
     <div class="hh-article-callout">
       <p><strong>A note on timing:</strong> ...</p>
     </div>
   
   Variants:
     hh-article-callout--purple  → purple left border
     hh-article-callout--pink    → pink left border (default)
   ========================================================================== */

.hh-article-callout {
  background: var(--hh-transparent-pink);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2.4rem;
  margin: 3rem 0;
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 1.6;
  color: var(--ink);
}

.hh-article-callout p {
  margin: 0 0 1rem;
  color: var(--ink);
}

.hh-article-callout p:last-child {
  margin-bottom: 0;
}

.hh-article-callout strong {
  color: var(--ink);
  font-weight: 600;
}

.hh-article-callout a {
  color: var(--pink);
  text-decoration: underline;
}

/* Purple variant */
.hh-article-callout--purple {
  background: rgba(96, 51, 115, 0.06);
  border-left-color: var(--purple);
}

.hh-article-callout--purple a {
  color: var(--purple);
}


/* ==========================================================================
   15. STYLED BLOCKQUOTE — already in article content, but a stronger
       inline variant for emphasis quotes inside body.
   --------------------------------------------------------------------------
   Usage: <div class="hh-article-pullquote"><p>...</p></div>
   ========================================================================== */

.hh-article-pullquote {
  margin: 4rem 0;
  padding: 0 0 0 2.4rem;
  border-left: 3px solid var(--pink);
}

.hh-article-pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 80;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

/* ==========================================================================
   APPEND to hh-blogs.css
   --------------------------------------------------------------------------
   Our Story page — hero, chapters, values grid.
   ========================================================================== */


/* ==========================================================================
   22. STORY HERO
   ========================================================================== */

.hh-story-hero {
  padding: 3rem 0 5rem;
}

.hh-story-hero__head {
  margin-bottom: 4.4rem;
}

.hh-story-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 1.8rem 0 0;
  max-width: 24ch;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hh-story-hero__heading em {
  color: var(--pink);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.hh-story-hero__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.hh-story-hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--teal-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hh-story-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hh-story-hero__credit {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: rgba(28, 26, 31, 0.85);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hh-story-hero__lede {
  font-family: var(--font-body);
  font-size: 1.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}


/* ==========================================================================
   23. STORY CHAPTER (sticky number + body)
   ========================================================================== */

.hh-story-chapter {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  padding: 4.4rem 0;
  border-top: 1px solid var(--line);
}

.hh-story-chapter__meta {
  position: sticky;
  top: calc(var(--header-height, 0px) + 2rem);
  align-self: start;
  min-width: 0;
}

.hh-story-chapter__num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 8vw, 9rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.hh-story-chapter__num--pink   { color: var(--pink); }
.hh-story-chapter__num--teal   { color: var(--teal); }
.hh-story-chapter__num--purple { color: var(--purple); }

.hh-story-chapter__label {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
}

.hh-story-chapter__body {
  min-width: 0;
}

.hh-story-chapter__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 100;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 2rem;
  max-width: 30ch;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hh-story-chapter__text {
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 64ch;
}

.hh-story-chapter__text p {
  margin: 0 0 1.6rem;
}

.hh-story-chapter__text p:last-child {
  margin-bottom: 0;
}

.hh-story-chapter__text strong {
  color: var(--ink);
  font-weight: 600;
}

.hh-story-chapter__text em {
  font-style: italic;
  color: var(--ink);
}

.hh-story-chapter__text a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}


/* ==========================================================================
   24. VALUES GRID (cream card with 5 numbered values)
   ========================================================================== */

.hh-values {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 6rem;
  margin: 6rem 0;
}

.hh-values__head {
  margin-bottom: 4rem;
  max-width: 56rem;
}

.hh-values__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 100;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 1.2rem 0 0;
}

.hh-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 2.4rem;
}

.hh-value {
  min-width: 0;
}

.hh-value__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-bottom: 1rem;
}

.hh-value__title {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 60;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.8rem;
}

.hh-value__body {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}


/* ==========================================================================
   RESPONSIVE — Our Story
   ========================================================================== */

@media (max-width: 980px) {
  .hh-story-hero {
    padding: 2.4rem 0 4rem;
  }

  .hh-story-hero__head {
    margin-bottom: 3rem;
  }

  .hh-story-hero__body {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .hh-story-hero__photo {
    aspect-ratio: 3 / 2;
  }

  .hh-story-chapter {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 3rem 0;
  }

  .hh-story-chapter__meta {
    position: static;
  }

  .hh-story-chapter__num {
    font-size: 5.2rem;
    margin-bottom: 0.6rem;
  }

  .hh-values {
    padding: 4rem 3rem;
    margin: 4rem 0;
  }

  .hh-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
  }
}

@media (max-width: 600px) {
  .hh-story-chapter__num {
    font-size: 4.4rem;
  }

  .hh-values {
    padding: 3rem 2rem;
    margin: 3rem 0;
  }

  .hh-values__head {
    margin-bottom: 2.4rem;
  }

  .hh-values__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

/* ==========================================================================
   APPEND to hh-blogs.css
   --------------------------------------------------------------------------
   Real Stories blog landing — standalone grid spacing, pagination, empty.
   ========================================================================== */


/* ==========================================================================
   25. STANDALONE STORIES GRID (overrides for the blog landing version)
   ========================================================================== */

/* The .hh-home-stories--standalone variant: extra top spacing since
   the hub-header above takes a different role than the home page's
   section header. */

.hh-home-stories--standalone {
  padding-top: 1rem;
  padding-bottom: 5rem;
}


/* ==========================================================================
   26. PAGINATION
   ========================================================================== */

.hh-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 5rem auto 0;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hh-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hh-pagination__nav {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hh-pagination__nav:hover {
  background: var(--cream-deep);
  border-color: var(--pink);
  color: var(--pink);
}

.hh-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

a.hh-pagination__page:hover {
  background: var(--cream-deep);
  color: var(--pink);
}

.hh-pagination__page.is-current {
  background: var(--pink);
  color: var(--cream);
  font-weight: 600;
}

.hh-pagination__page.is-ellipsis {
  color: var(--ink-mute);
  cursor: default;
}


/* ==========================================================================
   27. EMPTY STATE
   ========================================================================== */

.hh-stories-empty {
  background: var(--cream-deep);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--ink-soft);
  max-width: 56rem;
  margin: 2rem auto;
}

.hh-stories-empty p {
  margin: 0 0 0.6rem;
}

.hh-stories-empty p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 600px) {
  .hh-pagination {
    flex-direction: column;
    gap: 1.2rem;
  }
}