/* ============================================================
   BLU INDIGO – INNER PAGE STYLESHEET
   Shared by all service/wellness inner pages
   Extends style.css design tokens
   ============================================================ */

/* ── NAV DROPDOWN ── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-caret {
  font-size: 0.65rem;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: inline-block;
}
.nav-dropdown-wrap:hover .nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,27,62,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 0.6rem 0;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 0.65rem 1.3rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.03em;
  border-left: 2px solid transparent;
  transition: var(--transition-fast);
}
.nav-dropdown-item:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  border-left-color: var(--gold);
}
.nav-dropdown-active {
  color: var(--gold-light) !important;
  border-left-color: var(--gold) !important;
  background: rgba(201,168,76,0.06) !important;
}

/* ── MEGA MENU MODIFIERS ── */
.nav-dropdown.mega-menu {
  display: flex !important;
  gap: 2.5rem;
  padding: 1.8rem 2.5rem;
  width: max-content;
  max-width: 90vw;
  /* Centering from its parent wrap */
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
}
.nav-dropdown-wrap:hover .nav-dropdown.mega-menu {
  transform: translateX(-50%) translateY(0);
}
.mega-col {
  display: flex;
  flex-direction: column;
  min-width: 220px;
}
.mega-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.mega-col .nav-dropdown-item {
  padding: 0.4rem 0.5rem;
  border-left: none;
  font-size: 0.85rem;
}
.mega-col .nav-dropdown-item:hover {
  background: transparent;
  color: var(--gold-light);
  transform: translateX(3px);
  border-left-color: transparent !important;
}


/* Mobile section labels */
.mobile-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 0 0.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
}
.mobile-sub {
  padding-left: 1rem;
  font-size: 0.85rem !important;
  opacity: 0.8;
}
.nav-active {
  color: var(--gold-light) !important;
}
.nav-active::after {
  transform: scaleX(1) !important;
  background: var(--gold-light) !important;
}
.ip-breadcrumb {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.ip-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.ip-breadcrumb a:hover { color: var(--gold-light); }
.ip-breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============================================================
   HERO / HOOK
   ============================================================ */
.ip-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ip-hero-bg {
  position: absolute;
  inset: 0;
}
.ip-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.ip-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,27,62,0.93) 0%,
    rgba(13,27,62,0.80) 50%,
    rgba(13,27,62,0.35) 100%
  );
}
.ip-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  width: 100%;
}
.ip-hero-text {
  max-width: 680px;
}
.ip-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.ip-hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.ip-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
/* Symptom pills */
.symptom-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.55s both;
}
.symptom-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}
.symptom-pill:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold-light);
}
.pill-icon { font-size: 0.9rem; }
.ip-hero-cta {
  animation: fadeInUp 0.8s ease 0.7s both;
}

/* ============================================================
   REFRAME SECTION
   ============================================================ */
.ip-reframe {
  background: var(--cream);
  padding: 7rem 0;
  text-align: center;
}
.reframe-inner {
  max-width: 720px;
  margin: 0 auto;
}
.reframe-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.reframe-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.reframe-title em {
  font-style: italic;
  color: var(--gold);
}
.reframe-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.reframe-question {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.reframe-question::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.rq-line {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 0 auto 1.2rem;
}
.reframe-question p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.rq-highlight {
  font-family: var(--font-serif) !important;
  font-size: 1.3rem !important;
  color: var(--gold-light) !important;
  font-style: italic;
  line-height: 1.5;
}

/* ============================================================
   POSITIONING / APPROACH SECTION
   ============================================================ */
.ip-positioning {
  background: var(--cream-warm);
  padding: 8rem 0;
  text-align: center;
}
.ip-pos-intro {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.ip-pos-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.ptag-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ip-pos-tagline span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.5;
}
.ip-pos-tagline .ptag-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  text-align: left;
}
.approach-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.approach-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
}
.approach-card:hover::after {
  transform: scaleX(1);
}
.approach-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.approach-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 0.7rem;
}
.approach-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   CONDITIONS SECTION
   ============================================================ */
.ip-conditions {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}
.ip-conditions-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy-mid) 55%, #1a2f5f 100%);
}
.ip-conditions .section-container {
  position: relative;
  z-index: 2;
}
.ip-cond-intro {
  max-width: 580px;
  margin: 0 auto 3.5rem;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  text-align: left;
}
.condition-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  transition: var(--transition);
}
.condition-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.cond-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.cond-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.condition-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ============================================================
   TRANSFORMATION SECTION
   ============================================================ */
.ip-transformation {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}
.ip-transform-bg {
  position: absolute;
  inset: 0;
}
.ip-transform-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.ip-transform-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,27,62,0.95) 0%,
    rgba(13,27,62,0.85) 45%,
    rgba(13,27,62,0.5) 100%
  );
}
.ip-transformation .section-container {
  position: relative;
  z-index: 2;
}
.ip-transform-inner {
  max-width: 680px;
}
.ip-transform-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
.ip-transform-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.transform-outcomes {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2.5rem;
}
.transform-outcome {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.transform-outcome:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(201,168,76,0.3);
  transform: translateX(5px);
}
.outcome-check {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), #e8c96a);
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.transform-outcome strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.transform-outcome p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.transform-close {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
}
.transform-close em { color: var(--gold-light); }

/* ============================================================
   REFRAME CELL EFFECTS / BULLET LIST (PEMF + reusable)
   ============================================================ */
.pemf-cell-effects {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}
.cell-effect {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.cell-effect span {
  width: 24px; height: 24px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE – INNER PAGES
   ============================================================ */
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .ip-system-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .ip-hero { min-height: 85vh; }
  .ip-hero-content { padding: 7rem 1.5rem 4rem; }
  .ip-hero-title { font-size: 2rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .symptom-pills { gap: 0.5rem; }
  .ip-pos-tagline { flex-direction: column; gap: 0.5rem; }
  .ptag-line { display: none; }
  .nav-dropdown { display: none; } /* Use mobile menu instead */
  .cta-dual-btns { flex-direction: column; align-items: center; }
  .system-visual { display: none; }
}

/* ============================================================
   ALTERNATE POSITIONING VARIANT (alternate bg for "Who it's for")
   ============================================================ */
.ip-who {
  background: var(--cream) !important;
}

/* ============================================================
   SYSTEM SECTION (Theta Chamber – transformation journey)
   ============================================================ */
.ip-system {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.ip-system-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy-deep) 0%, #0f1e47 50%, #162248 100%);
}
.ip-system .section-container {
  position: relative;
  z-index: 2;
}
.ip-system-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.system-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.system-body strong {
  color: var(--gold-light);
  font-weight: 500;
}
.system-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.system-link-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.system-link-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.3);
  transform: translateX(5px);
}
.sl-dot {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.system-link-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.system-link-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
/* Theta Hub Visual */
.system-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.system-hub {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-center {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--gold), #e8c96a);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 40px rgba(201,168,76,0.35);
}
.hub-label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1;
}
.hub-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(13,27,62,0.7);
  text-transform: uppercase;
}
.hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  animation: hubPulse 3s ease-in-out infinite;
}
.hub-ring-1 {
  width: 140px;
  height: 140px;
  animation-delay: 0s;
}
.hub-ring-2 {
  width: 180px;
  height: 180px;
  animation-delay: 1s;
  border-color: rgba(201,168,76,0.1);
}
@keyframes hubPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}
.hub-spokes {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.hub-spoke {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.hub-spoke:hover {
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
}
.spoke-dot { color: var(--gold); }

/* ============================================================
   DUAL CTA BUTTONS
   ============================================================ */
.cta-dual-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

/* ============================================================
   LIGHT SPLIT SECTION (Infrared Sauna – Red vs Infrared)
   ============================================================ */
.ip-light-split {
  background: var(--cream);
  padding: 8rem 0;
  text-align: center;
}
.ip-light-split .section-title {
  margin-bottom: 3.5rem;
}
.light-split-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.light-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: left;
  overflow: hidden;
  transition: var(--transition);
}
.light-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.light-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.light-glow-red {
  background: linear-gradient(90deg, #dc3545, #ff6b6b, transparent);
}
.light-glow-infrared {
  background: linear-gradient(90deg, #c9621c, #e8a84c, transparent);
}
.light-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.light-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}
.light-wavelength {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.light-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.light-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.light-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.light-card-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  gap: 0.8rem;
}
.divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
}
.light-card-divider span {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

/* CTA phone sub-link */
.cta-sub {
  margin-top: 1rem;
}
.cta-phone-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.cta-phone-link:hover {
  color: var(--gold-light);
}

/* Responsive light split */
@media (max-width: 768px) {
  .light-split-grid {
    grid-template-columns: 1fr;
  }
  .light-card-divider {
    flex-direction: row;
    padding: 1rem 0;
  }
  .divider-line {
    flex: 1;
    height: 1px;
    width: auto;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  }
}
