/* ===========================================================================
   responsive.css — layout breakpoints for Green Light Tote Sanitizing
   Loaded after styles.css so these rules win where they overlap.
   The mobile nav toggle behaviour itself lives in styles.css + main.js;
   this file handles content/grid stacking across screen sizes.
   ========================================================================= */

/* Inline links inside body / rich-text content: green + underlined. */
.richtext a,
.prose a,
.blog-detail__body a,
.pricing-note a,
.checklist-rich a,
.svc-float__note a { color: #5da233; text-decoration: underline; }
.richtext a:hover,
.prose a:hover,
.blog-detail__body a:hover,
.pricing-note a:hover,
.checklist-rich a:hover,
.svc-float__note a:hover { color: #7ac249; }

/* Rich-text checklist (points written in the CMS editor as a bullet list). */
.checklist-rich ul { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .7rem; }
.checklist-rich li { position: relative; padding-left: 2rem; color: var(--ink-700, #33405e); }
.checklist-rich li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green-600, #7ac249); font-weight: 800; font-size: 1.05rem; line-height: 1.4;
}

/* ---- Large tablets / small laptops -------------------------------------- */
@media (max-width: 1024px) {
  .wcu__grid { grid-template-columns: repeat(2, 1fr); }
  .wproc { grid-template-columns: 1fr; }
  .wproc__left { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Tablets ------------------------------------------------------------- */
@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .totes-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .order-layout { grid-template-columns: 1fr; }
  .faq-2col { grid-template-columns: 1fr; }
  .partner-cta { text-align: center; }
  .blog-featured { grid-template-columns: 1fr; }
}

/* ---- Small tablets / large phones ---------------------------------------- */
@media (max-width: 768px) {
  .wcu__grid { grid-template-columns: 1fr; }
  .wcu__head { grid-template-columns: 1fr; gap: 1rem; }
  .svc-cards { grid-template-columns: 1fr; }
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .fl-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; }
  .svc-float__img { float: none; width: 100%; margin: 0 0 1.2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding-block: clamp(40px, 8vw, 64px); }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ---- Phones -------------------------------------------------------------- */
@media (max-width: 560px) {
  .fl-grid { grid-template-columns: 1fr; }
  .fl-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-slider__actions { flex-direction: column; align-items: stretch; }
  .hero-slider__actions .btn { width: 100%; justify-content: center; }
  .partner-cta__actions { flex-direction: column; }
  .partner-cta__actions .btn { width: 100%; justify-content: center; }
  .crumbs { font-size: .82rem; flex-wrap: wrap; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }
}
