
/* ─── GREEN LEGACY PAGE WRAPPER ─── */
.gl-page {
  font-family: 'DM Sans', sans-serif;
  color: #2a2a2a;
  overflow-x: hidden;
  max-width: 100%;
}

.gl-page *, .gl-page *::before, .gl-page *::after {
  box-sizing: border-box;
}

/* Break out of WordPress content wrapper for full-width sections */
.gl-page .hero,
.gl-page .strains-section,
.gl-page .med-card-banner,
.gl-page .section-outro,
.gl-page .intro-strip {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


  :root {
    --green-deep: #1a110c;
    --green-mid: #c4603a;
    --green-light: #d4795a;
    --green-pale: #d4b888;
    --blush: #c4603a;
    --blush-deep: #8a3e22;
    --cream: #f5ead8;
    --warm-white: #f5ead8;
    --gold: #c9a84c;
    --charcoal: #1a110c;
    --muted: #b89870;
  }





  /* ─── HERO ─── */
  .gl-page .hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, var(--green-deep) 0%, #120c08 40%, #0e0806 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 40px;
  }

  .gl-page .hero-petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .gl-page .petal {
    position: absolute;
    opacity: 0;
    animation: fallPetal linear infinite;
  }

  .gl-page .petal svg { fill: #c4603a; }

  @keyframes fallPetal {
    0%   { transform: translateY(-60px) rotate(0deg) translateX(0px); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(110vh) rotate(720deg) translateX(80px); opacity: 0; }
  }

  .gl-page .hero-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-pale);
    border: 1px solid rgba(196,96,58,0.3);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 36px;
    animation: fadeUp 1s ease both;
  }

  .gl-page .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 90px);
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.05;
    max-width: 900px;
    animation: fadeUp 1s ease 0.15s both;
  }

  .gl-page .hero-title em {
    font-style: italic;
    color: var(--blush);
  }

  .gl-page .hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    text-align: center;
    max-width: 560px;
    line-height: 1.7;
    margin-top: 24px;
    animation: fadeUp 1s ease 0.3s both;
  }

  .gl-page .hero-meta {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    animation: fadeUp 1s ease 0.45s both;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gl-page .hero-meta span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  .gl-page .hero-meta span strong {
    color: var(--green-pale);
    font-weight: 500;
  }

  .gl-page .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeUp 1s ease 0.9s both;
    cursor: pointer;
  }

  .gl-page .hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  .gl-page .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(196,96,58,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.3); opacity: 1; }
  }

  /* ─── LEAD SECTION ─── */
  .gl-page .lead-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 100px 40px 60px;
  }

  .gl-page .byline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }

  .gl-page .byline-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: white;
    font-style: italic;
  }

  .gl-page .byline-text { line-height: 1.4; }
  .gl-page .byline-name { font-weight: 500; font-size: 15px; }
  .gl-page .byline-role { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

  .gl-page .lead-paragraph {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.55;
    color: var(--cream);
    font-style: italic;
    border-left: 3px solid var(--green-light);
    padding-left: 28px;
    margin-bottom: 40px;
  }

  .gl-page .body-text {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(245,234,216,0.55);
    margin-bottom: 28px;
    font-weight: 300;
  }

  .gl-page .body-text strong { font-weight: 500; color: var(--cream); }

  /* ─── FULL-BLEED VISUAL BREAK ─── */
  .gl-page .visual-break {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #120c08 0%, #2c1a12 35%, #5a2e18 70%, #8a3e22 100%);
    position: relative;
    overflow: hidden;
    margin: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  .gl-page .visual-break-bg {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 600px 300px at 20% 50%, rgba(196,96,58,0.15), transparent),
      radial-gradient(ellipse 400px 400px at 80% 30%, rgba(196,96,58,0.2), transparent);
  }

  .gl-page .visual-break-blossom {
    position: absolute;
    font-size: 200px;
    opacity: 0.08;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    filter: blur(2px);
  }

  .gl-page .visual-break-content {
    position: relative;
    text-align: center;
    padding: 40px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    box-sizing: border-box;
  }

  .gl-page .pullquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    word-wrap: break-word;
  }

  .gl-page .pullquote em { color: var(--blush); font-style: italic; }

  .gl-page .pullquote-attr {
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(212,184,136,0.5);
    text-align: center;
  }

  /* ─── TIPS GRID ─── */
  .gl-page .section-wrapper {
  background: var(--green-deep);
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
  }

  .gl-page .section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 500;
    margin-bottom: 16px;
  }

  .gl-page .section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    max-width: 600px;
    margin-bottom: 64px;
  }

  .gl-page .section-heading em { color: var(--green-mid); font-style: italic; }

  .gl-page .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: rgba(196,96,58,0.12);
  }

  .gl-page .tip-card {
    background: #2c1a12;
    padding: 48px 40px;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .gl-page .tip-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--blush-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .gl-page .tip-card:hover::before { transform: scaleX(1); }
  .gl-page .tip-card:hover { background: #2c1a12; }

  .gl-page .tip-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(196,96,58,0.06);
    line-height: 1;
    margin-bottom: 8px;
  }

  .gl-page .tip-icon { font-size: 28px; margin-bottom: 16px; }

  .gl-page .tip-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
  }

  .gl-page .tip-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
  }

  /* ─── STRAINS SECTION ─── */
  .gl-page .strains-section {
    background: var(--green-deep);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }

  .gl-page .strains-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,160,76,0.1), transparent 70%);
  }

  .gl-page .strains-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .gl-page .strains-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 64px;
  }

  .gl-page .strains-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    max-width: 480px;
  }

  .gl-page .strains-heading em { color: var(--green-pale); font-style: italic; }

  .gl-page .strains-note {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    max-width: 260px;
    line-height: 1.6;
    font-weight: 300;
  }

  .gl-page .strains-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .gl-page .strain-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px 200px;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: default;
  }

  .gl-page .strain-row:hover {
    background: rgba(255,255,255,0.08);
    border-left-color: var(--green-pale);
  }

  .gl-page .strain-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
  }

  .gl-page .strain-type {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-pale);
    font-weight: 500;
  }

  .gl-page .strain-name-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
    font-weight: 300;
  }

  .gl-page .strain-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
  }

  .gl-page .badge-indica { background: rgba(100,60,160,0.25); color: #c4a8f5; }
  .gl-page .badge-sativa { background: rgba(200,150,60,0.25); color: #f5d480; }
  .gl-page .badge-hybrid { background: rgba(196,96,58,0.25); color: var(--green-pale); }

  .gl-page .strain-vibe {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
  }

  .gl-page .strain-effect {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  @media (max-width: 700px) {
  .gl-page .strain-row {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
    }
  .gl-page .strain-vibe { display: none; }
  }

  /* ─── MAP / VISIT SECTION ─── */
  .gl-page .visit-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  @media (max-width: 768px) {
  .gl-page .visit-section { grid-template-columns: 1fr; gap: 48px; }
  }

  .gl-page .visit-text .section-label { margin-bottom: 16px; }

  .gl-page .visit-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 24px;
  }

  .gl-page .visit-heading em { color: var(--green-mid); font-style: italic; }

  .gl-page .visit-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 40px;
  }

  .gl-page .visit-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .gl-page .visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .gl-page .detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .gl-page .detail-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
  }

  .gl-page .detail-value {
    font-size: 15px;
    color: var(--cream);
    font-weight: 400;
  }

  .gl-page .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--green-mid);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-right: 16px;
  }

  .gl-page .cta-btn:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26,58,42,0.25);
  }

  .gl-page .cta-secondary {
    font-size: 14px;
    color: var(--green-mid);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--green-pale);
    padding-bottom: 2px;
    transition: color 0.2s;
  }

  .gl-page .cta-secondary:hover { color: var(--green-deep); }

  .gl-page .visit-map-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--green-deep) 0%, #2c1a12 50%, #2d5a3d 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gl-page .map-pin-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .gl-page .map-address-card {
    background: rgba(26,17,12,0.85);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }

  .gl-page .map-address-card .store-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green-pale);
    margin-bottom: 4px;
  }

  .gl-page .map-address-card .store-addr {
    font-size: 13px;
    color: var(--muted);
  }

  .gl-page .map-pin {
    font-size: 40px;
    animation: pinBounce 2s ease-in-out infinite;
  }

  @keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .gl-page .map-decorators {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .gl-page .map-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
  }

  /* ─── MEDICAL CARD BANNER ─── */
  .gl-page .med-card-banner {
    background: linear-gradient(135deg, #2c1a12, #ede8de);
    border-top: 1px solid rgba(196,96,58,0.15);
    border-bottom: 1px solid rgba(196,96,58,0.15);
    padding: 80px 40px;
  }

  .gl-page .med-card-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }

  @media (max-width: 640px) {
  .gl-page .med-card-inner { grid-template-columns: 1fr; }
  }

  .gl-page .med-card-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .gl-page .med-card-heading em { color: var(--green-mid); font-style: italic; }

  .gl-page .med-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 24px;
  }

  .gl-page .med-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .gl-page .med-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--cream);
  }

  .gl-page .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-mid);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
  }

  .gl-page .med-card-badge {
    background: var(--green-deep);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    color: white;
    min-width: 180px;
  }

  .gl-page .badge-time {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 4px;
  }

  .gl-page .badge-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
  }

  /* ─── FOOTER NAV ─── */
  .gl-page .article-footer {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 40px 100px;
    border-top: 1px solid rgba(196,96,58,0.12);
  }

  .gl-page .footer-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .gl-page .tag {
    padding: 6px 16px;
    border: 1px solid rgba(196,96,58,0.2);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    transition: all 0.2s;
    cursor: pointer;
  }

  .gl-page .tag:hover {
    border-color: var(--green-mid);
    color: var(--green-mid);
  }

  .gl-page .footer-cta-block {
    background: var(--green-deep);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .gl-page .footer-cta-block::before {
    content: '🌸';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: -40px;
    right: -20px;
    line-height: 1;
    filter: blur(4px);
  }

  .gl-page .footer-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
  }

  .gl-page .footer-cta-heading em { color: var(--blush); font-style: italic; }

  .gl-page .footer-cta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
    font-weight: 300;
  }

  .gl-page .footer-url {
    font-size: 14px;
    color: var(--green-pale);
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 500;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .gl-page .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .gl-page .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

/* ─── SCOPED OVERRIDES (only inside .gl-page) ─── */
/* Make gl-page expand to full available width */
.gl-page {
  margin-left: -15px;
  margin-right: -15px;
  overflow-x: hidden;
}

/* Full-width breakout for sections inside gl-page */
.gl-page .hero,
.gl-page .strains-section,
.gl-page .med-card-banner,
.gl-page .article-footer .footer-cta-block {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* ─── TEXT VISIBILITY ON DARK BACKGROUNDS ─── */

/* FAQ section */
.gl-page .section-wrapper h3 {
  color: #f5ead8 !important;
}
.gl-page .section-wrapper .body-text,
.gl-page .section-wrapper p {
  color: rgba(245,234,216,0.65) !important;
}
.gl-page .section-wrapper .body-text a,
.gl-page .section-wrapper p a {
  color: #c4603a !important;
}
.gl-page .section-wrapper .section-heading {
  color: #f5ead8 !important;
}
.gl-page .section-wrapper .section-heading em {
  color: #c4603a !important;
}
.gl-page .section-wrapper .section-label {
  color: #c4603a !important;
}

/* Visit section */
.gl-page .visit-section .visit-heading {
  color: #f5ead8 !important;
}
.gl-page .visit-section .visit-heading em {
  color: #c4603a !important;
}
.gl-page .visit-section .body-text,
.gl-page .visit-section p {
  color: rgba(245,234,216,0.65) !important;
}
.gl-page .visit-section .visit-detail strong {
  color: #b89870 !important;
}
.gl-page .visit-section .visit-detail span,
.gl-page .visit-section .visit-detail span a {
  color: #f5ead8 !important;
}
.gl-page .visit-section .cta-primary {
  background: #c4603a !important;
  color: #f5ead8 !important;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gl-page .visit-section .cta-secondary {
  color: #d4b888 !important;
  border-bottom: 1px solid rgba(196,96,58,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 16px;
}
.gl-page .visit-section .map-address-card strong {
  color: #d4b888 !important;
}
.gl-page .visit-section .map-address-card {
  color: rgba(245,234,216,0.6) !important;
}
.gl-page .visit-section .map-address-card a {
  color: #c4603a !important;
}

/* Tip cards */
.gl-page .tip-card .tip-title {
  color: #f5ead8 !important;
}
.gl-page .tip-card .tip-text {
  color: rgba(245,234,216,0.55) !important;
}
.gl-page .tip-card .tip-text a {
  color: #c4603a !important;
}
.gl-page .tip-card .tip-cta {
  color: #c4603a !important;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
  display: inline-block;
}

/* Lead section */
.gl-page .lead-section .body-text {
  color: rgba(245,234,216,0.65) !important;
}
.gl-page .lead-section .body-text a {
  color: #c4603a !important;
}
.gl-page .lead-section .body-text strong {
  color: #f5ead8 !important;
}
.gl-page .lead-paragraph {
  color: #d4b888 !important;
}
.gl-page .byline-name {
  color: #f5ead8 !important;
}
.gl-page .byline-role {
  color: #b89870 !important;
}
.gl-page .byline-role a {
  color: #c4603a !important;
}

/* Medical card */
.gl-page .med-card-heading {
  color: #f5ead8 !important;
}
.gl-page .med-card-heading em {
  color: #c4603a !important;
}
.gl-page .med-card-text {
  color: rgba(245,234,216,0.65) !important;
}
.gl-page .med-card-text a {
  color: #c4603a !important;
}
.gl-page .med-step span,
.gl-page .ms-body span {
  color: rgba(245,234,216,0.65) !important;
}
.gl-page .med-step span a {
  color: #c4603a !important;
}
.gl-page .med-step strong,
.gl-page .ms-body strong {
  color: #f5ead8 !important;
}

/* Footer CTA */
.gl-page .footer-cta-heading {
  color: #f5ead8 !important;
}
.gl-page .footer-cta-heading em {
  color: #c4603a !important;
}
.gl-page .footer-cta-text {
  color: rgba(245,234,216,0.5) !important;
}
.gl-page .footer-url {
  color: #d4b888 !important;
}
.gl-page .footer-tag {
  color: #b89870 !important;
  border: 1px solid rgba(196,96,58,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  margin: 4px;
}
.gl-page .article-footer {
  border-top: 1px solid rgba(196,96,58,0.12) !important;
}
