/* ============================================================
   House Cash Option — global styles (visual redesign v2)
   ============================================================ */

:root {
  --green: #0b6b4f;
  --green-dark: #063d2c;
  --green-deep: #04281d;
  --gold: #f6a609;
  --gold-dark: #d68f00;
  --ink: #13211c;
  --muted: #5b6b64;
  --line: #e3e8e5;
  --bg: #ffffff;
  --bg-soft: #f4f7f5;
  --bg-tint: #eef4f0;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(6,61,44,.10);
  --shadow-lg: 0 24px 60px rgba(6,61,44,.18);
  --shadow-xl: 0 40px 80px rgba(6,61,44,.22);
  --maxw: 1160px;
  --font: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.1; margin-bottom: 0.4em; font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--green-dark); }
h3 { font-size: 1.2rem; color: var(--green-dark); }
p { margin-bottom: 1em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section.soft { background: var(--bg-soft); }
.section.tint { background: var(--bg-tint); }
.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 680px; margin: 0 auto 1.6em; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: .7em;
}
.hidden { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--gold); color: #3a2800; font-weight: 800; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(214,143,0,.35);
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(214,143,0,.45); text-decoration: none; }
.btn.alt { background: var(--white); color: var(--green-dark); box-shadow: var(--shadow); }
.btn.alt:hover { box-shadow: var(--shadow-lg); }
.btn.ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); box-shadow: none; }
.btn.ghost:hover { background: rgba(255,255,255,.12); }
.btn.block { display: flex; width: 100%; }
.btn.lg { font-size: 1.1rem; padding: 18px 34px; }
.btn.xl { font-size: 1.2rem; padding: 20px 40px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 1.15rem; color: var(--green-dark); text-decoration: none;
}
.brand .logo { width: 32px; height: 32px; }
.brand b { color: var(--gold-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 800; color: var(--green-dark); white-space: nowrap; text-decoration: none; }
.nav-phone:hover { text-decoration: underline; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--green-dark); }

/* ============================================================
   HERO — full viewport, dramatic image behind
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(.38) saturate(.9);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,40,29,.88) 0%,
    rgba(6,61,44,.65) 55%,
    rgba(11,107,79,.20) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(4,40,29,.9), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 24px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(246,166,9,.15);
  border: 1px solid rgba(246,166,9,.3);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hero-headline {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 0.5em;
}
.hero-headline .line-gold { color: var(--gold); display: block; }
.hero-sub {
  font-size: 1.18rem;
  color: #c8e8d8;
  margin-bottom: 1.8em;
  max-width: 520px;
  line-height: 1.6;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2em; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 22px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 600;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

/* Lead form card (in hero) */
.lead-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  padding: 30px 28px;
  position: relative;
}
.lead-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 999px;
}
.lead-card h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: .15em;
}
.lead-card .sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.1em; }
.form-row { display: grid; gap: 5px; margin-bottom: 12px; }
.form-row label { font-weight: 700; font-size: .87rem; color: var(--green-dark); }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-size: .97rem; font-family: inherit;
  background: #fbfdfc;
  transition: border-color .12s, box-shadow .12s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11,107,79,.13);
}
.form-row textarea { min-height: 70px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-deep);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.stats-bar .wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 36px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.stat-item:last-child { border-right: none; }
.stat-ico { font-size: 1.6rem; line-height: 1; }
.stat-text .num { font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; display: block; }
.stat-text .label { font-size: .8rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

/* ============================================================
   SITUATIONS
   ============================================================ */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sit-card {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  cursor: default;
}
.sit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.sit-card .ico { font-size: 2rem; margin-bottom: 10px; display: block; }
.sit-card p { font-weight: 700; color: var(--green-dark); font-size: .95rem; margin: 0; }

/* ============================================================
   HOW IT WORKS (visual steps)
   ============================================================ */
.steps-visual {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  position: relative;
}
.steps-visual::after {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  z-index: 0;
}
.vstep {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.vstep-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(11,107,79,.4);
  border: 4px solid #fff;
}
.vstep h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: .4em; }
.vstep p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ============================================================
   COMPARISON
   ============================================================ */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.compare-col {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-col.us { box-shadow: var(--shadow-xl); border: 2px solid var(--green); }
.compare-head {
  padding: 20px 24px;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-head.us-head { background: var(--green); color: #fff; }
.compare-head.them-head { background: #f0f0f0; color: var(--muted); }
.compare-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: .97rem;
}
.compare-col.us .compare-row:nth-child(odd) { background: #f9fdfa; }
.compare-row:last-child { border-bottom: none; }
.compare-row .ico { font-size: 1.1rem; flex: none; }
.compare-row .text { color: var(--ink); font-weight: 600; }
.compare-row .text.yes { color: var(--green-dark); }
.compare-row .text.no { color: var(--muted); font-weight: 400; text-decoration: line-through; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tcard::before {
  content: '\201C';
  position: absolute;
  top: 14px; right: 22px;
  font-size: 5rem;
  color: var(--bg-tint);
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 700;
}
.tcard .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.tcard blockquote { font-style: italic; color: var(--ink); line-height: 1.7; margin: 0 0 16px; font-size: .97rem; }
.tcard .who { font-weight: 800; color: var(--green-dark); display: block; }
.tcard .where { color: var(--muted); font-size: .88rem; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}
.area-card {
  position: relative;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.area-card .area-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  transition: transform .3s ease;
}
.area-card:hover .area-bg { transform: scale(1.05); }
.area-card.magnolia .area-bg { background: linear-gradient(135deg, #04281d, #0b6b4f); }
.area-card.houston .area-bg { background: linear-gradient(135deg, #1a3a4a, #2d6a8a); }
.area-card.conroe .area-bg { background: linear-gradient(135deg, #2d1a4a, #5a3a8a); }
.area-card.spring .area-bg { background: linear-gradient(135deg, #1a3a1a, #3a7a3a); }
.area-card.tomball .area-bg { background: linear-gradient(135deg, #3a2800, #8a6000); }
.area-card.woodlands .area-bg { background: linear-gradient(135deg, #0a2a1a, #0f6b3a); }
.area-card.cypress .area-bg { background: linear-gradient(135deg, #2a1a0a, #6a4a1a); }
.area-card.katy .area-bg { background: linear-gradient(135deg, #1a0a2a, #5a2a7a); }
.area-card .area-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.area-card .area-name {
  position: relative; z-index: 2;
  color: #fff; font-weight: 900; font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.area-card .area-ico {
  position: absolute; top: 14px; right: 14px;
  z-index: 2; font-size: 1.5rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .18s;
}
.faq-item:hover { box-shadow: var(--shadow-lg); }
.faq-item summary {
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--gold-dark); font-weight: 700; line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .ans { padding: 0 22px 18px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 64px 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.cta-band-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(.3) saturate(.7);
}
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,40,29,.92), rgba(11,107,79,.78));
}
.cta-band-content { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .3em; }
.cta-band p { color: #c8e8d8; max-width: 600px; margin: 0 auto 1.6em; font-size: 1.12rem; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .phone-line { color: rgba(255,255,255,.7); margin-top: 16px; font-size: .95rem; }
.cta-band .phone-line a { color: var(--gold); font-weight: 800; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: #bfe6d4;
  padding: 60px 0 28px;
  font-size: .93rem;
}
.site-footer a { color: #cfeede; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h4 { color: #fff; margin: 0 0 16px; font-size: 1rem; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.foot-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 1.2rem; color: #fff; margin-bottom: 14px;
}
.foot-brand .logo { width: 30px; height: 30px; }
.disclaimer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  font-size: .78rem;
  color: #8fc3ad;
  line-height: 1.65;
}
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; margin-top: 16px; font-size: .82rem; color: #8fc3ad;
}

/* ============================================================
   SITUATION PAGES — two-column content + sticky form
   ============================================================ */
a.sit-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.sit-card:hover { text-decoration: none; }

.sit-page {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 52px;
  align-items: start;
  padding: 72px 0;
}
.sit-content h2 { margin-top: 1.5em; font-size: 1.5rem; }
.sit-content h2:first-of-type { margin-top: 0; }
.sit-content ul { padding-left: 1.2em; margin-bottom: 1em; }
.sit-content li { margin-bottom: .5em; color: var(--muted); }
.sit-content p { color: var(--muted); }
.sit-content .callout {
  background: var(--bg-tint);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 1.5em 0;
}
.sit-content .callout p { margin: 0; color: var(--ink); }

.sit-form-col { position: sticky; top: 84px; }
.sit-form-col .lead-card h3 { font-size: 1.25rem; }

/* mini hero for situation pages — background image + gradient overlay */
.mini-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  background-color: var(--green-deep);
  background-size: cover;
  background-position: center 40%;
}
/* dark gradient overlay — each page can override color via --mini-hero-overlay */
.mini-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mini-hero-overlay, linear-gradient(135deg, rgba(4,40,29,.80) 0%, rgba(6,61,44,.68) 100%));
  z-index: 0;
}
/* decorative circle — sits under text */
.mini-hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(246,166,9,.06);
  z-index: 1;
}
.mini-hero .wrap { position: relative; z-index: 2; }
.mini-hero .eyebrow { color: var(--gold) !important; }
.mini-hero h1 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.mini-hero p {
  color: #cfeede !important;
  max-width: 660px;
  font-size: 1.1rem;
  margin-bottom: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

@media(max-width:900px){
  .sit-page { grid-template-columns: 1fr; padding: 44px 0; }
  .sit-form-col { position: static; }
}

/* ============================================================
   FLOATING CALL BAR (mobile)
   ============================================================ */
.callbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--green-dark);
  padding: 10px 12px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.callbar a {
  flex: 1; text-align: center; padding: 13px;
  border-radius: 10px; font-weight: 800; text-decoration: none; font-size: .98rem;
}
.callbar .call { background: var(--gold); color: #3a2800; }
.callbar .offer { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 80px 22px 60px;
    gap: 36px;
  }
  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.8rem); }
  .situations-grid { grid-template-columns: repeat(2,1fr); }
  .steps-visual { grid-template-columns: 1fr; gap: 30px; }
  .steps-visual::after { display: none; }
  .vstep { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .vstep-num { width: 60px; height: 60px; font-size: 1.4rem; flex: none; margin: 0; }
  .compare-wrap { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links {
    display: none;
    position: absolute; top: 65px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 8px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 22px; width: 100%; }
  .nav-toggle { display: block; }
  .nav .nav-phone { display: none; }
  .callbar { display: flex; }
  body { padding-bottom: 64px; }
  .section { padding: 56px 0; }
  .stat-item { padding: 10px 20px; }
}

@media (max-width: 580px) {
  .situations-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .stat-item { flex: 1; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
  .stats-bar .wrap { flex-direction: column; align-items: stretch; }
}
