/* ============================================================
   Cellular Medicine Institute — shared stylesheet
   Brand palette + typography + global layout
   ============================================================ */

:root {
  /* Brand palette */
  --forest-green: #1B422B; /* primary: headlines, logo, key accents */
  --leaf-green:   #7B9B3F; /* secondary accent: buttons, rules, bullets */
  --teal-blue:    #518391; /* section labels + supporting text */
  --ocean-blue:   #356878; /* sub-headlines + links */
  --cell-blue:    #81A4A4; /* soft accent + background tints */
  --warm-white:   #F5F4F0; /* backgrounds + callout fills */
  --white:        #ffffff;
  --ink:          #26312b; /* body text, softened near-black-green */

  /* Tints derived from palette (for backgrounds/placeholders) */
  --cell-blue-08: rgba(129, 164, 164, 0.08);
  --cell-blue-15: rgba(129, 164, 164, 0.15);
  --cell-blue-25: rgba(129, 164, 164, 0.25);
  --forest-08:    rgba(27, 66, 43, 0.08);
  --leaf-12:      rgba(123, 155, 63, 0.12);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --max:    1180px;
  --narrow: 820px;
  --radius: 14px;
  --shadow-soft: 0 10px 40px rgba(27, 66, 43, 0.08);
  --shadow-card: 0 6px 24px rgba(27, 66, 43, 0.07);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--ocean-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--forest-green);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}

p { margin: 0 0 1.1em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--narrow); }

section { padding: 84px 0; }
section.tight { padding: 56px 0; }

.bg-warm  { background: var(--warm-white); }
.bg-cell  { background: var(--cell-blue-08); }
.bg-forest{ background: var(--forest-green); color: var(--warm-white); }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--white); }

.section-label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-blue);
  margin: 0 0 14px;
}

.lead {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--ocean-blue);
  font-weight: 500;
}

.eyebrow-rule {
  width: 56px; height: 3px; border: 0;
  background: var(--leaf-green);
  margin: 0 0 26px;
  border-radius: 3px;
}
.center { text-align: center; }
.center .eyebrow-rule { margin-left: auto; margin-right: auto; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--forest-green); color: #fff;
  padding: 10px 16px; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Header / navigation
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(245, 244, 240, 0.94);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--cell-blue-25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 24px; max-width: var(--max); margin: 0 auto;
}

/* Logo lockup (placeholder for supplied logo) */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo-mark {
  flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--forest-green);
  display: grid; place-items: center;
  box-shadow: var(--shadow-card);
}
.logo-mark svg { width: 28px; height: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: var(--serif);
  font-size: 1.28rem; font-weight: 600; color: var(--forest-green);
  letter-spacing: 0.2px;
}
.logo-tag {
  font-family: var(--sans);
  font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal-blue); font-weight: 600; margin-top: 2px;
}

/* Nav */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 8px; color: var(--forest-green);
}
.nav-toggle svg { width: 28px; height: 28px; }

.main-nav ul {
  list-style: none; display: flex; align-items: center; gap: 6px;
  margin: 0; padding: 0;
}
.main-nav a {
  font-family: var(--sans); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--forest-green);
  padding: 10px 14px; border-radius: 8px; text-decoration: none;
  display: inline-block; transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--leaf-12); text-decoration: none; }
.main-nav a.active { color: var(--leaf-green); }
.main-nav a.active::after {
  content: ""; display: block; height: 2px; margin-top: 4px;
  background: var(--leaf-green); border-radius: 2px;
}
.nav-cta a {
  background: var(--forest-green); color: var(--warm-white) !important;
}
.nav-cta a:hover { background: #16351f; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--leaf-green); color: #fff; }
.btn-primary:hover { background: #6a8834; }
.btn-forest { background: var(--forest-green); color: var(--warm-white); }
.btn-forest:hover { background: #16351f; }
.btn-outline {
  background: transparent; color: var(--forest-green);
  border-color: var(--forest-green);
}
.btn-outline:hover { background: var(--forest-green); color: var(--warm-white); }
.btn-outline-light {
  background: transparent; color: var(--warm-white); border-color: rgba(245,244,240,.6);
}
.btn-outline-light:hover { background: var(--warm-white); color: var(--forest-green); }
/* Muted / coming-soon */
.btn-muted {
  background: var(--cell-blue-15); color: var(--teal-blue);
  border-color: var(--cell-blue-25);
}
.btn-muted:hover { background: var(--cell-blue-25); color: var(--ocean-blue); }
.btn .arrow { font-size: 1.05em; line-height: 0; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.btn-row.center { justify-content: center; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(27,66,43,0.03), rgba(129,164,164,0.14)),
    var(--warm-white);
  padding: 96px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 10%, rgba(129,164,164,.22), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  max-width: 15ch;
}
.hero .subhead {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: var(--ocean-blue); max-width: 40ch; margin-bottom: 28px;
  line-height: 1.35;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.page-hero { padding: 80px 0 40px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ============================================================
   Image placeholders (photography supplied later)
   ============================================================ */
.img-ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--cell-blue-15), var(--leaf-12)),
    var(--warm-white);
  border: 1px dashed var(--cell-blue);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 28px; gap: 12px;
  color: var(--teal-blue); min-height: 240px;
  overflow: hidden;
}
.img-ph::after {
  content: "PHOTO TO COME";
  position: absolute; top: 12px; right: 12px;
  font-family: var(--sans); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.16em; color: var(--teal-blue);
  background: rgba(245,244,240,.75); padding: 4px 8px; border-radius: 999px;
}
.img-ph .ph-icon {
  width: 52px; height: 52px; color: var(--cell-blue); opacity: .9;
}
.img-ph .ph-icon svg { width: 100%; height: 100%; }
.img-ph .ph-cap {
  font-family: var(--sans); font-size: 0.82rem; line-height: 1.5;
  color: var(--teal-blue); max-width: 34ch; font-weight: 500;
}
.img-ph.hero-ph { min-height: 380px; }
.img-ph.tall { min-height: 460px; }
.img-ph.wide { min-height: 320px; }
.img-ph.small { min-height: 180px; }

/* Real supplied/placeholder photography */
.media-img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
.media-frame { overflow: hidden; border-radius: var(--radius); }
.media-frame.hero-ph { min-height: 380px; }
.media-frame.hero-ph .media-img { min-height: 380px; }
.media-frame.tall { min-height: 460px; }
.media-frame.tall .media-img { min-height: 460px; }

/* ============================================================
   Cards / grids
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--cell-blue-25);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.card h3 { color: var(--forest-green); font-size: 1.55rem; }
.card .card-meta {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--leaf-green);
  margin-bottom: 14px;
}
.card .card-body { flex: 1; }
.card .card-actions { margin-top: 20px; }

.offer-card { text-align: left; }
.offer-icon {
  width: 46px; height: 46px; color: var(--leaf-green); margin-bottom: 14px;
}
.offer-icon svg { width: 100%; height: 100%; }

/* Numbered program cards */
.numbered { counter-reset: prog; }
.prog-card { position: relative; }
.prog-num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600;
  color: var(--cell-blue); line-height: 1; margin-bottom: 8px;
}

/* Two-column feature (text + image) */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split.reverse .split-media { order: 2; }

/* ============================================================
   Lists
   ============================================================ */
.checklist { list-style: none; padding: 0; margin: 0 0 1.2em; }
.checklist li {
  position: relative; padding-left: 34px; margin-bottom: 14px; line-height: 1.6;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--leaf-green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.bullet-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.bullet-list li { position: relative; padding-left: 24px; margin-bottom: 12px; }
.bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--leaf-green);
}

/* ============================================================
   Callouts / detail blocks
   ============================================================ */
.callout {
  background: var(--warm-white);
  border-left: 4px solid var(--leaf-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
}
.callout.cell { background: var(--cell-blue-08); border-left-color: var(--cell-blue); }

.detail-list { display: grid; gap: 0; }
.detail-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--cell-blue-25);
}
.detail-row:last-child { border-bottom: 0; }
.detail-row .dt {
  font-family: var(--sans); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-blue);
  padding-top: 3px;
}
.detail-row .dd { margin: 0; }

/* Presenter / endorsement */
.presenter { display: flex; gap: 20px; align-items: flex-start; }
.presenter .p-avatar {
  flex: 0 0 auto; width: 72px; height: 72px; border-radius: 50%;
  background: var(--cell-blue-25); display: grid; place-items: center;
  color: var(--teal-blue); font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
}
.presenter h3 { margin-bottom: 4px; font-size: 1.35rem; }
.presenter .p-cred { color: var(--ocean-blue); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }

.quote {
  background: var(--white); border: 1px solid var(--cell-blue-25);
  border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow-card);
}
.quote p {
  font-family: var(--serif); font-size: 1.4rem; line-height: 1.4;
  color: var(--forest-green); font-style: italic; margin-bottom: 14px;
}
.quote cite {
  font-family: var(--sans); font-style: normal; font-weight: 700;
  font-size: 0.85rem; color: var(--teal-blue); letter-spacing: 0.03em;
}

/* Price badge */
.price-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--forest-green); color: var(--warm-white);
  border-radius: var(--radius); padding: 22px 34px; text-align: center;
}
.price-badge .amt { font-family: var(--serif); font-size: 2.8rem; font-weight: 600; line-height: 1; }
.price-badge .amt-note { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 8px; opacity: .85; }

/* Coming soon ribbon */
.ribbon {
  display: inline-block; font-family: var(--sans); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-blue); background: var(--cell-blue-15);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}

/* Book layout */
.book { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.book-cover { min-height: 420px; }

/* Directory sample card */
.dir-card {
  background: var(--white); border: 1px solid var(--cell-blue-25);
  border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-card);
  position: relative;
}
.dir-card .sample-tag {
  position: absolute; top: -12px; left: 24px;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  background: var(--cell-blue); padding: 5px 12px; border-radius: 999px;
}
.dir-card .dir-name { font-family: var(--serif); font-size: 1.5rem; color: var(--forest-green); margin-bottom: 2px; }
.dir-card .dir-cred { color: var(--ocean-blue); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
.dir-field { display: flex; gap: 10px; align-items: baseline; margin-bottom: 8px; font-size: 0.95rem; }
.dir-field .dir-k { flex: 0 0 auto; color: var(--teal-blue); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; width: 108px; }

/* ============================================================
   Forms
   ============================================================ */
.form-card {
  background: var(--white); border: 1px solid var(--cell-blue-25);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  color: var(--forest-green); letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--cell-blue-25);
  border-radius: 10px; background: var(--warm-white);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf-green);
  box-shadow: 0 0 0 3px var(--leaf-12); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field .req { color: var(--leaf-green); }

/* Contact info block */
.contact-info { display: grid; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci-icon {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px;
  background: var(--leaf-12); color: var(--leaf-green);
  display: grid; place-items: center;
}
.contact-item .ci-icon svg { width: 22px; height: 22px; }
.contact-item .ci-k { font-weight: 700; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-blue); margin-bottom: 2px; }
.placeholder-val { color: var(--teal-blue); font-style: italic; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--forest-green); color: var(--warm-white); text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(245,244,240,.86); max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--forest-green); color: var(--warm-white); padding: 64px 0 32px; }
.footer-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); text-align: center;
  color: var(--warm-white); max-width: 22ch; margin: 0 auto 44px; line-height: 1.3;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  border-top: 1px solid rgba(245,244,240,.18); padding-top: 40px;
}
.footer-col h4 {
  color: var(--warm-white); font-family: var(--sans); font-size: 0.76rem;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px; opacity: .8;
}
.footer-brand .fb-name { font-family: var(--serif); font-size: 1.5rem; color: var(--warm-white); margin-bottom: 6px; }
.footer-brand .fb-tag { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cell-blue); }
.footer-brand address { font-style: normal; margin-top: 16px; color: rgba(245,244,240,.8); font-size: 0.92rem; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(245,244,240,.85); font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  text-align: center; margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(245,244,240,.14);
  font-size: 0.78rem; color: rgba(245,244,240,.6);
}

/* ============================================================
   Utilities
   ============================================================ */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack-lg > * + * { margin-top: 40px; }
.pill-note {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  color: var(--leaf-green); background: var(--leaf-12);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .split, .book { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  /* backdrop-filter on the header makes it the containing block for the fixed
     drawer, trapping it at header height. Drop it on mobile so the drawer
     escapes to full-screen; keep a solid header background instead of the blur. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--warm-white); }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--warm-white); box-shadow: -12px 0 40px rgba(27,66,43,.18);
    transform: translateX(100%); transition: transform .28s ease;
    padding: 88px 24px 24px; z-index: 1500; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 1rem; border-radius: 10px; }
  .main-nav a.active::after { display: none; }
  .nav-cta a { margin-top: 8px; text-align: center; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(27,66,43,.35);
    opacity: 0; pointer-events: none; transition: opacity .28s; z-index: 1400;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }

  section { padding: 60px 0; }
  .hero { padding: 64px 0 48px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .detail-row { grid-template-columns: 1fr; gap: 4px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 26px; }
  .form-card { padding: 26px; }
}

@media (max-width: 400px) {
  .logo-name { font-size: 1.08rem; }
  body { font-size: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
