/* ===========================
   BODY BY A — Supplements Landing
   Bold. Cinematic. Editorial.
   =========================== */

.supplements-page {
  --amber: #D4A24C;
  --amber-light: #E8C878;
}

/* --- HERO --- */
.supp-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: center center / cover no-repeat;
  background-color: var(--bg-dark);
}
.supp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 22, 19, 0.5) 0%,
    rgba(17, 22, 19, 0.65) 50%,
    rgba(17, 22, 19, 0.9) 100%
  );
  pointer-events: none;
}

.supp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: calc(38px + 64px + 40px) 28px 80px;
}

.supp-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: inline-block;
  padding: 8px 24px;
  border: 1.5px solid rgba(212, 162, 76, 0.4);
  border-radius: 50px;
  background: rgba(212, 162, 76, 0.08);
}

.supp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.supp-hero-subtitle {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

/* ===========================
   FILTERS BAR
   =========================== */

.supp-filters {
  padding: 40px 0 0;
  background: var(--bg);
}

.supp-filters-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.supp-view-toggle {
  display: flex;
  align-items: center;
  gap: 0;
}

.supp-view-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px 4px;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.supp-view-btn:hover {
  color: var(--text-primary);
}
.supp-view-btn.active {
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--amber);
}

.supp-view-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 20px;
}

.supp-benefit-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 12px;
}

.supp-tag-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-right: 4px;
}

.supp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.supp-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-block;
}
.supp-tag:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(212, 162, 76, 0.06);
}
.supp-tag.active {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}

/* ===========================
   FEATURED PICK
   =========================== */

.supp-featured {
  padding: 80px 0;
  background: var(--bg);
}

.supp-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-dark);
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
}

.supp-featured-content {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.supp-featured-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.supp-featured-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.supp-featured-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 460px;
}

.supp-featured-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--amber);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}
.supp-featured-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

.supp-featured-img {
  overflow: hidden;
}
.supp-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   DISCOVER BY GOAL
   =========================== */

.supp-discover {
  padding: 0 0 80px;
  background: var(--bg);
}

.supp-discover-header {
  text-align: center;
  margin-bottom: 40px;
}

.supp-discover-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.supp-discover-sub {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 300;
}

.supp-discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.supp-discover-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.supp-discover-chip:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(17, 22, 19, 0.08);
}

.supp-chip-icon {
  font-size: 12px;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--amber);
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.supp-chip-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* ===========================
   QUOTE BREAK
   =========================== */

.supp-quote {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.supp-quote-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.supp-quote-block p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.supp-quote-block cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ===========================
   SPOTLIGHT (Tessa/Ajay Stack)
   =========================== */

.supp-spotlight {
  padding: 100px 0;
  background: var(--bg);
}

.supp-spotlight--alt {
  background: var(--bg-warm);
}

.supp-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.supp-spotlight--reverse {
  direction: rtl;
}
.supp-spotlight--reverse > * {
  direction: ltr;
}

.supp-spotlight-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}

.supp-spotlight-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.supp-spotlight-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.supp-spotlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.supp-spotlight-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(212, 162, 76, 0.1);
  color: var(--amber);
  border: 1px solid rgba(212, 162, 76, 0.25);
}

.supp-spotlight-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--amber);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
}
.supp-spotlight-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

.supp-spotlight-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.supp-spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   CATEGORIES GRID
   =========================== */

.supp-categories {
  padding: 80px 0 100px;
  background: var(--bg);
}

.supp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.supp-section-header .supp-section-eyebrow {
  text-align: left;
  margin-bottom: 0;
}

.supp-section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.supp-section-link:hover {
  opacity: 0.7;
}

.supp-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  text-align: center;
  margin-bottom: 48px;
}

.supp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.supp-grid--explore {
  grid-template-columns: repeat(3, 1fr);
}

.supp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.supp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(17, 22, 19, 0.1);
  border-color: var(--amber);
}

.supp-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.supp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.supp-card:hover .supp-card-img img {
  transform: scale(1.06);
}

.supp-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(17, 22, 19, 0.7);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.supp-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.supp-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.supp-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.supp-card-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 20px;
  color: var(--amber);
  transition: transform 0.3s var(--ease);
}
.supp-card:hover .supp-card-arrow {
  transform: translateX(6px);
}

/* View hidden */
.supp-view-hidden {
  display: none;
}

/* ===========================
   HOW WE VET
   =========================== */

.supp-vet {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  color: var(--white);
}

.supp-vet-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.supp-vet-badge {
  margin-bottom: 28px;
}

.supp-vet-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 56px;
  line-height: 1.1;
}

.supp-vet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.supp-vet-item {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  transition: all 0.4s var(--ease);
}
.supp-vet-item:hover {
  border-color: var(--amber);
  background: rgba(212, 162, 76, 0.05);
}

.supp-vet-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--amber);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.supp-vet-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.supp-vet-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  font-weight: 300;
}

/* ===========================
   EDITORIAL / BLOG TEASERS
   =========================== */

.supp-editorial {
  padding: 80px 0 100px;
  background: var(--bg);
}

.supp-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.supp-editorial-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}
.supp-editorial-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(17, 22, 19, 0.06);
}

.supp-editorial-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.supp-editorial-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.supp-editorial-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.supp-editorial-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.supp-editorial-card a:hover {
  opacity: 0.7;
}

/* ===========================
   CTA
   =========================== */

.supp-cta {
  padding: var(--section-pad) 0;
  background: var(--bg-warm);
  text-align: center;
}

.supp-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.supp-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.supp-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
}

.supp-cta-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
}

.supp-cta-form {
  max-width: 460px;
  margin: 0 auto;
}

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

@media (max-width: 1024px) {
  .supp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .supp-grid--explore {
    grid-template-columns: repeat(2, 1fr);
  }
  .supp-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .supp-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .supp-featured-card {
    grid-template-columns: 1fr;
  }
  .supp-featured-img {
    height: 300px;
    order: -1;
  }
}

@media (max-width: 900px) {
  .supp-hero {
    min-height: 65vh;
  }
  .supp-hero-inner {
    padding: calc(38px + 64px + 32px) 24px 64px;
  }

  .supp-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .supp-spotlight--reverse {
    direction: ltr;
  }
  .supp-spotlight-visual {
    order: -1;
  }
  .supp-spotlight-img-wrap {
    aspect-ratio: 16 / 9;
  }

  .supp-vet-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .supp-hero {
    min-height: 70vh;
  }
  .supp-hero-inner {
    padding: calc(38px + 64px + 28px) 20px 56px;
  }
  .supp-hero-title {
    font-size: 32px;
  }
  .supp-hero-subtitle {
    font-size: 15px;
  }

  .supp-filters {
    padding: 28px 0 0;
  }

  .supp-benefit-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 4px 12px;
  }

  .supp-grid,
  .supp-grid--explore {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .supp-discover-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .supp-editorial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .supp-card-img {
    height: 180px;
  }

  .supp-card-body h3 {
    font-size: 20px;
  }

  .supp-section-eyebrow {
    margin-bottom: 32px;
  }

  .supp-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .supp-featured {
    padding: 48px 0;
  }
  .supp-featured-content {
    padding: 36px 28px;
  }
  .supp-featured-title {
    font-size: 28px;
  }

  .supp-spotlight {
    padding: 64px 0;
  }

  .supp-vet-heading {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .supp-cta-heading {
    font-size: 28px;
  }

  .supp-editorial {
    padding: 48px 0 64px;
  }
}

@media (max-width: 400px) {
  .supp-hero-title {
    font-size: 28px;
  }
  .supp-card-img {
    height: 160px;
  }
  .supp-featured-content {
    padding: 28px 22px;
  }
}

/* ===========================
   WHAT WE'RE USING NOW — Horizontal Scroll Rail
   =========================== */
.supp-using-now {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #faf7f2 0%, #ffffff 100%);
}

.using-now-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.using-now-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm, #B8985A);
  margin: 0 0 8px;
}

.using-now-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--accent, #3D5A3A);
  margin: 0 0 12px;
  line-height: 1.15;
}

.using-now-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary, #6b6b6b);
  max-width: 560px;
  margin: 0;
}

.using-now-controls {
  display: flex;
  gap: 8px;
}

.using-now-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(61, 90, 58, 0.25);
  background: #fff;
  color: var(--accent, #3D5A3A);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.using-now-btn:hover {
  background: var(--accent, #3D5A3A);
  color: #fff;
  border-color: var(--accent, #3D5A3A);
}

.using-now-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 24px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(61, 90, 58, 0.2) transparent;
}

.using-now-rail::-webkit-scrollbar {
  height: 6px;
}
.using-now-rail::-webkit-scrollbar-track {
  background: transparent;
}
.using-now-rail::-webkit-scrollbar-thumb {
  background: rgba(61, 90, 58, 0.2);
  border-radius: 3px;
}

.using-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(61, 90, 58, 0.1);
  border-radius: 12px;
  padding: 18px 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.using-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(61, 90, 58, 0.12);
  border-color: rgba(61, 90, 58, 0.3);
}

.using-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 100%);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.using-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  mix-blend-mode: multiply;
}

.using-card-cat {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm, #B8985A);
  margin-bottom: 6px;
}

.using-card-brand {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary, #6b6b6b);
  margin-bottom: 2px;
}

.using-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.25;
}

.using-card-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-secondary, #6b6b6b);
  line-height: 1.45;
}

@media (max-width: 640px) {
  .supp-using-now {
    padding: 48px 0 40px;
  }
  .using-now-header {
    margin-bottom: 24px;
  }
  .using-now-controls {
    display: none;
  }
  .using-card {
    flex-basis: 78vw;
    max-width: 280px;
  }
}
