/* ==========================================================================
   Floral Gatherings — Guide Stylesheet
   Self-contained: fonts resolved relative to guides/ folder
   ========================================================================== */


/* ==========================================================================
   1. FONTS
   ========================================================================== */

@font-face {
  font-family: 'Recoleta';
  src: url('../assets/brand/Fonts/Recoleta/Recoleta/Recoleta Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Recoleta';
  src: url('../assets/brand/Fonts/Recoleta/Recoleta/Recoleta SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../assets/brand/Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cordoba Sans';
  src: url('../assets/brand/Fonts/Cordoba Sans Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ==========================================================================
   2. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  --clr-tangerine:      #E35D2F;
  --clr-tangerine-dark: #C74E26;
  --clr-mustard:        #E0B24A;
  --clr-coral:          #E38A7A;
  --clr-periwinkle:     #B9B2E0;
  --clr-olive:          #6C6A3D;
  --clr-cream:          #F7F1E6;
  --clr-espresso:       #3F2A1E;
  --clr-text-muted:     #6B5A50;
  --clr-border:         rgba(63, 42, 30, 0.12);

  --ff-headline: 'Recoleta', Georgia, serif;
  --ff-body:     'Montserrat', 'Segoe UI', sans-serif;
  --ff-label:    'Cordoba Sans', 'Montserrat', sans-serif;

  --shadow-soft:   0 2px 12px rgba(63, 42, 30, 0.08);
  --shadow-medium: 0 4px 24px rgba(63, 42, 30, 0.14);
}


/* ==========================================================================
   3. RESET + BASE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-espresso);
  background-color: #E8E0D0;
  padding: 2rem 1rem;
  line-height: 1.5;
}

em {
  font-style: italic;
  color: var(--clr-text-muted);
}

p + p {
  margin-top: 0.5em;
}


/* ==========================================================================
   4. GUIDE WRAPPER
   ========================================================================== */

.guide {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}


/* ==========================================================================
   5. GUIDE PAGE
   ========================================================================== */

.guide-page {
  background: #FFFDF8;
  box-shadow: var(--shadow-medium);
  border-radius: 6px;
  overflow: hidden;
}


/* ==========================================================================
   6. GUIDE HEADER
   ========================================================================== */

.guide-header {
  background-color: var(--clr-tangerine);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
}

.guide-header__logo {
  height: 90px;
  width: auto;
  align-self: center;
  justify-self: center;
}

.guide-header__divider {
  width: 1.5px;
  height: 90px;
  background: rgba(247, 241, 230, 0.35);
  flex-shrink: 0;
}

.guide-header__title-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.guide-header__eyebrow {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 241, 230, 0.65);
}

.guide-header__title {
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 4rem;
  color: var(--clr-cream);
  line-height: 1.1;
  overflow-wrap: break-word;
}

.guide-header__desc {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: rgba(247, 241, 230, 0.88);
  max-width: 280px;
  line-height: 1.45;
  text-align: right;
}

/* Slim header variant (back page) */
.guide-header--slim {
  grid-template-columns: auto 1fr;
  padding: 0.9rem 2rem;
  gap: 1.25rem;
}

.guide-header--slim .guide-header__logo {
  height: 55px;
  width: auto;
}

.guide-header--slim .guide-header__title {
  font-size: 1.75rem;
  text-align: right;
  align-self: center;
}


/* ==========================================================================
   7. PAGE CONTENT WRAPPER
   ========================================================================== */

.guide-page__content {
  padding: 0 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


/* ==========================================================================
   8. PAGE TAGLINE
   ========================================================================== */

.guide-page__tagline {
  font-family: var(--ff-headline);
  font-weight: 400;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  padding-top: 1.25rem;
  text-align: center;
}


/* ==========================================================================
   9. GUIDE SECTIONS
   ========================================================================== */

.guide-section {
  border-top: 1.5px solid var(--clr-border);
  padding-top: 1rem;
}

.guide-section:first-child {
  border-top: none;
  padding-top: 1.25rem;
}

.guide-section__title {
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-espresso);
  padding-bottom: 0.4rem;
  margin-bottom: 0.85rem;
  border-bottom: 2px solid var(--clr-tangerine);
  display: inline-block;
}

.guide-section__title--flower {
  color: var(--clr-tangerine-dark);
  border-bottom-color: var(--clr-mustard);
  font-size: 0.9rem;
}

.guide-section__intro {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.guide-section__callout {
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--clr-tangerine);
  text-align: center;
}

.guide-section__list {
  list-style: disc;
  margin: 0.3rem 0 0.3rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.guide-section__list li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--clr-espresso);
}

.guide-section__list li::marker {
  color: var(--clr-tangerine);
}

/* Grid variants — side-by-side bulleted tips instead of a single stacked
   column. Bullets still render (list-style stays disc from .guide-section__list;
   this only swaps the flex stacking for a grid). */
.guide-section__list--grid-2,
.guide-section__list--grid-3,
.guide-section__list--grid-4 {
  display: grid;
  gap: 0.3rem 1.5rem;
  margin-left: 1.1rem;
}

.guide-section__list--grid-2 { grid-template-columns: repeat(2, 1fr); }
.guide-section__list--grid-3 { grid-template-columns: repeat(3, 1fr); }
.guide-section__list--grid-4 { grid-template-columns: repeat(4, 1fr); }


/* ==========================================================================
   9. HEADER ROW — Quick Guide + Inspiration split (arrangement guides only)
   ========================================================================== */

.guide-page__header-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1.25rem;
}

/* QG sits inside the split row as a narrow single column (Time / Group / Stems stacked) */
.guide-page__header-row .quick-guide__grid {
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

/* Remove the negative margin offset when QG is inside a grid cell */
.guide-page__header-row .guide-section--quick {
  margin: 0;
}


/* ==========================================================================
   9b. INSPIRATION SECTION
   ========================================================================== */

.guide-section--inspiration {
  background: rgba(224, 178, 74, 0.10);
  border: 1.5px solid rgba(224, 178, 74, 0.45);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  border-top: 1.5px solid rgba(224, 178, 74, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.guide-section--inspiration .guide-section__title {
  border-bottom-color: var(--clr-mustard);
  margin-bottom: 0.5rem;
}

.inspiration__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.illustration-wrapper--inspiration {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.illustration--inspiration {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* Square inspiration art fills the box; no width cap so it never leaves side-gaps */
.illustration-wrapper--inspiration .illustration--inspiration {
  width: 100%;
}

/* Empty slot standing in for an inspiration image not yet shot/generated */
.inspiration-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1.5px dashed rgba(224, 178, 74, 0.55);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
}

.inspiration-placeholder__text {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.inspiration__labels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.6rem;
}

.inspiration__label {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.inspiration__label::before {
  content: "— ";
  color: var(--clr-mustard);
}


/* ==========================================================================
   8b. TEXT COLUMNS — generic side-by-side intro+list panels (page 1 sections)
   ========================================================================== */

.text-columns {
  display: grid;
  gap: 1.5rem;
}

.text-columns--2 { grid-template-columns: repeat(2, 1fr); }
.text-columns--3 { grid-template-columns: repeat(3, 1fr); }
.text-columns--4 { grid-template-columns: repeat(4, 1fr); }


/* ==========================================================================
   9. QUICK GUIDE
   ========================================================================== */

.guide-section--quick {
  background: rgba(185, 178, 224, 0.14);
  border: 1.5px solid rgba(185, 178, 224, 0.5);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  border-top: 1.5px solid rgba(185, 178, 224, 0.5);
  margin: 0 -0.25rem;
}

.guide-section--quick .guide-section__title {
  color: var(--clr-espresso);
  border-bottom-color: var(--clr-periwinkle);
  margin-bottom: 0.75rem;
}

.quick-guide__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 1rem;
}

.quick-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.quick-meta__label {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-tangerine);
  font-weight: 400;
}

.quick-meta__value {
  font-size: 0.92rem;
  color: var(--clr-espresso);
  line-height: 1.4;
  font-weight: 500;
}


/* ==========================================================================
   10. MATERIALS
   ========================================================================== */

.guide-section--materials .guide-section__title {
  display: block;
}

.materials__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.4rem 0.5rem;
}

.material-pill {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  border: 1.5px solid var(--clr-tangerine);
  border-radius: 99px;
  padding: 0.2rem 0.7rem;
  background: var(--clr-tangerine);
  white-space: nowrap;
}

.material-pill em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 400;
}

.material-pill--needed {
  color: var(--clr-espresso);
  border-color: var(--clr-espresso);
  background: var(--clr-cream);
}

.material-pill--optional {
  color: var(--clr-text-muted);
  border-color: var(--clr-text-muted);
  border-style: dashed;
  background: transparent;
}

.material-pill--optional:first-of-type {
  margin-left: 0.5rem;
}

.material-pill--legend-key {
  margin-left: auto;
}

.material-pill--legend {
  opacity: 0.75;
}

.material-pill--legend em {
  font-style: italic;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}


/* ==========================================================================
   11. STEP GRID
   ========================================================================== */

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--clr-tangerine);
  color: #fff;
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
  line-height: 1;
}

.step__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--clr-espresso);
}


/* ==========================================================================
   12. ILLUSTRATIONS
   ========================================================================== */

.illustration-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.illustration {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.illustration-container--small {
  margin-top: 0;
}

.illustration--small {
  max-width: 180px;
  border-radius: 6px;
}

.illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  overflow: hidden;
}

.illustration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


/* ==========================================================================
   13. FLOWER CARE GRIDS (page 2)
   ========================================================================== */

.flower-care {
  padding-top: 0.85rem;
  border-top: 1.5px solid var(--clr-border);
}

.flower-grid {
  display: grid;
  gap: 1rem;
}

.flower-grid--4col { grid-template-columns: repeat(4, 1fr); }
.flower-grid--3col { grid-template-columns: repeat(3, 1fr); }
.flower-grid--2col { grid-template-columns: 2fr 1fr; }

.flower-tip {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--clr-espresso);
}

.flower-tip p + p {
  margin-top: 0.4em;
}

.flower-tip--visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Numbered page-2 tip — mirrors page 1's .step (number circle above text) */
.flower-tip--numbered {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


/* ==========================================================================
   13b. TIPS & TRICKS CALLOUT
   Standalone visual component for supplementary advice — deliberately NOT
   part of .step/.flower-tip-numbered, so it never reads as a required step.
   Dashed tangerine border echoes the same "action tip" colour used for
   SVG overlay callouts on illustrations, so the two read as one language.
   ========================================================================== */

.tips-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: rgba(227, 93, 47, 0.06);
  border: 1.5px dashed var(--clr-tangerine);
  border-radius: 6px;
  padding: 0.7rem 0.95rem;
}

.tips-callout__icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  color: var(--clr-tangerine);
}

.tips-callout__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.tips-callout__label {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-tangerine-dark);
}

.tips-callout__text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--clr-espresso);
}

.tips-callout__text strong {
  font-weight: 600;
}

/* Optional-step variant: same shape, calmer periwinkle treatment so it
   doesn't compete visually with the tangerine "actionable tip" meaning */
.tips-callout--optional {
  background: rgba(185, 178, 224, 0.14);
  border-color: var(--clr-periwinkle);
}

.tips-callout--optional .tips-callout__icon {
  color: var(--clr-periwinkle);
}

.tips-callout--optional .tips-callout__label {
  color: var(--clr-espresso);
}

/* Warning/important variant: same shape, dusty coral treatment — for
   cautions that aren't a "do this" tip or a "skip if you want" optional,
   but a heads-up about risk (e.g. technique can damage the flower) */
.tips-callout--warning {
  background: rgba(227, 138, 122, 0.1);
  border-color: var(--clr-coral);
}

.tips-callout--warning .tips-callout__icon {
  color: var(--clr-coral);
}

.tips-callout--warning .tips-callout__label {
  color: var(--clr-coral);
}

/* Stack of multiple callouts inside one section/step */
.tips-callout + .tips-callout {
  margin-top: 0.5rem;
}

/* Space a callout away from preceding step/tip text */
.step p + .tips-callout,
.flower-tip p + .tips-callout {
  margin-top: 0.5rem;
}


/* ==========================================================================
   14. PRINT STYLES
   ========================================================================== */

@media print {
  @page {
    size: letter;
    margin: 0.5in;
  }

  html, body {
    background: white;
    padding: 0;
    margin: 0;
  }

  .guide {
    max-width: 100%;
    gap: 0;
    box-shadow: none;
  }

  /* Each article = one letter page — scale handled by Puppeteer, not overflow clip */
  .guide-page {
    box-shadow: none;
    border-radius: 0;
  }

  .guide-page--front {
    page-break-after: always;
  }

  /* ── Header ── */
  .guide-header {
    padding: 0.6rem 1.25rem;
    gap: 1rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .guide-header__logo    { height: 58px; }
  .guide-header__divider { height: 58px; }
  .guide-header__title   { font-size: 2.9rem; }

  .guide-header--slim .guide-header__logo  { height: 38px; }
  .guide-header--slim .guide-header__title { font-size: 1.35rem; }

  /* ── Content wrapper ── */
  .guide-page__content {
    padding: 0 1.25rem 0.5rem;
    gap: 0.5rem;
  }

  .guide-page__tagline {
    font-size: 0.86rem;
    padding-top: 0.45rem;
  }

  /* ── Sections ── */
  .guide-section        { padding-top: 0.45rem; }
  .guide-section__title { font-size: 0.73rem; margin-bottom: 0.45rem; padding-bottom: 0.18rem; }
  .guide-section__intro { font-size: 0.78rem; margin-bottom: 0.45rem; }
  .guide-section__callout { font-size: 0.88rem; }

  .guide-section__list        { margin: 0.2rem 0 0.2rem 0.85rem; gap: 0.1rem; }
  .guide-section__list li     { font-size: 0.76rem; line-height: 1.42; }

  /* ── Quick guide ── */
  .guide-section--quick {
    padding: 0.45rem 0.8rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .quick-guide__grid  { gap: 0.45rem 0.65rem; }
  .quick-meta__label  { font-size: 0.6rem; }
  .quick-meta__value  { font-size: 0.77rem; }

  /* ── Materials ── */
  .materials__grid { gap: 0.22rem 0.3rem; }
  .material-pill {
    font-size: 0.7rem;
    padding: 0.1rem 0.45rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* ── Steps ── */
  .step-grid  { gap: 0.7rem; }
  .step__text { font-size: 0.78rem; line-height: 1.43; }
  .step__number {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.76rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* ── Illustrations ── */
  .illustration-container { gap: 0.65rem; margin-top: 0.35rem; }
  .illustration-wrapper   { max-width: 200px; }
  .illustration           { max-width: 200px; }
  .illustration--small    { max-width: 108px; }

  /* ── Flower care (page 2) ── */
  .flower-care  { padding-top: 0.5rem; }
  .flower-grid  { gap: 0.55rem; }
  .flower-tip   { font-size: 0.78rem; line-height: 1.43; }

  /* ── Tips & tricks callout ── */
  .tips-callout {
    padding: 0.45rem 0.65rem;
    gap: 0.45rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .tips-callout__icon  { width: 0.9rem; height: 0.9rem; margin-top: 0.1rem; }
  .tips-callout__label { font-size: 0.58rem; }
  .tips-callout__text  { font-size: 0.74rem; line-height: 1.4; }
  .tips-callout + .tips-callout,
  .step p + .tips-callout,
  .flower-tip p + .tips-callout { margin-top: 0.3rem; }

  /* ── Force grids — override responsive breakpoints that collapse columns ── */
  .step-grid           { grid-template-columns: repeat(3, 1fr); }
  .quick-guide__grid   { grid-template-columns: repeat(4, 1fr); }
  .flower-grid--4col   { grid-template-columns: repeat(4, 1fr); }
  .flower-grid--3col   { grid-template-columns: repeat(3, 1fr); }
  .flower-grid--2col   { grid-template-columns: 2fr 1fr; }

  /* ── Text columns ── */
  .text-columns { gap: 0.8rem; }
  .guide-section__list--grid-2,
  .guide-section__list--grid-3,
  .guide-section__list--grid-4 { gap: 0.15rem 0.8rem; }

  /* ── Header row + inspiration (arrangement guides) ── */
  .guide-page__header-row            { grid-template-columns: 1fr 3fr; gap: 0.7rem; }
  .guide-page__header-row .quick-guide__grid { grid-template-columns: 1fr; gap: 0.35rem; }
  .guide-page__header-row .guide-section__title { margin-bottom: 0.35rem; }
  .guide-section--inspiration        { padding: 0.5rem 0.85rem; gap: 0.35rem; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .inspiration__grid                 { gap: 0.4rem; }
  .illustration-wrapper--inspiration { max-width: 100%; }
  .illustration--inspiration         { width: 100%; max-width: 100%; height: auto; }
  .inspiration-placeholder__text     { font-size: 0.56rem; }
  .inspiration__labels               { gap: 0.06rem 0.35rem; }
  .inspiration__label                { font-size: 0.58rem; }
}


/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */

@media (max-width: 720px) {
  body {
    padding: 1rem 0.5rem;
  }

  .guide-header {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
  }

  .guide-header__desc {
    display: none;
  }

  .guide-header__divider {
    display: none;
  }

  .guide-header__logo {
    height: 58px;
  }

  .guide-header__title {
    font-size: 1.9rem;
  }

  .guide-header--slim {
    padding: 0.75rem 1.25rem;
  }

  .guide-header--slim .guide-header__logo {
    height: 40px;
  }

  .guide-header--slim .guide-header__title {
    font-size: 1.2rem;
  }

  .guide-page__header-row { grid-template-columns: 1fr; }

  .quick-guide__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inspiration__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .flower-grid--4col,
  .flower-grid--3col {
    grid-template-columns: 1fr 1fr;
  }

  .flower-grid--2col {
    grid-template-columns: 1fr;
  }

  .text-columns--2,
  .text-columns--3,
  .text-columns--4 {
    grid-template-columns: 1fr;
  }

  .guide-section__list--grid-2,
  .guide-section__list--grid-3,
  .guide-section__list--grid-4 {
    grid-template-columns: 1fr;
  }

  .guide-page__content {
    padding: 0 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .guide-header {
    gap: 0.6rem;
    padding: 0.85rem 1rem;
  }

  .guide-header__logo {
    height: 46px;
  }

  .guide-header__title {
    font-size: 1.5rem;
  }

  .guide-header--slim .guide-header__title {
    font-size: 1.05rem;
  }

  .flower-grid--4col,
  .flower-grid--3col {
    grid-template-columns: 1fr;
  }

  .quick-guide__grid {
    grid-template-columns: 1fr;
  }

  .inspiration__grid {
    grid-template-columns: 1fr;
  }
}
