/* ==========================================================================
   Citylife Chicago — modern layout with red wave dividers
   Same brand (red/white, Poppins) and same page content as the main site,
   rebuilt with a fluid type/spacing system and a single robust hero pattern
   instead of five different fragile per-page hero variants.
   ========================================================================== */

:root {
  /* Brand */
  --red:        #e5352b;
  --red-dark:   #c92a21;
  --red-light:  #f0736a;
  --red-tint:   #fdecea;

  /* Neutrals */
  --ink:        #1c1c1e;
  --gray-700:   #46464a;
  --gray-500:   #77777c;
  --gray-300:   #d8d7db;
  --gray-100:   #f3f1ef;
  --surface:    #ffffff;

  /* Type */
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --fs-h1:  clamp(2.25rem, 1.55rem + 3vw,  4rem);
  --fs-h2:  clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem);
  --fs-h3:  clamp(1.2rem,  1.1rem + 0.5vw, 1.4rem);
  --fs-lead: 1.2rem;
  --fs-body: 1rem;
  --lh-tight: 1.1;
  --lh-normal: 1.65;

  /* Spacing (8px grid) */
  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 5.5rem;
  --sp-8: 7.5rem;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --header-h: 104px;
  --shadow-sm: 0 2px 10px rgba(28,28,30,.06);
  --shadow-md: 0 16px 40px -12px rgba(28,28,30,.18);
  --shadow-lg: 0 30px 60px -20px rgba(28,28,30,.28);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 700; line-height: var(--lh-tight); margin: 0; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; color: var(--gray-700); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--red-light);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: #fff; color: var(--ink); padding: 12px 18px; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--solid:hover { background: var(--red); border-color: var(--red); }
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--light { border-color: #fff; color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--sm { padding: 9px 22px; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.site-header--transparent {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  box-shadow: none;
  transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header--transparent.is-scrolled {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.site-header--transparent .primary-nav a { color: #fff; }
.site-header--transparent .primary-nav a:hover,
.site-header--transparent .primary-nav a.is-current { color: #fff; border-bottom-color: #fff; }
.site-header--transparent .nav-toggle span { background: #fff; }
.site-header--transparent .brand__logo { filter: brightness(0) invert(1); }
/* Once scrolled, the transparent header's background turns solid white — switch
   nav text/logo/hamburger back to dark so they don't disappear against it. */
.site-header--transparent.is-scrolled .primary-nav a { color: var(--ink); }
.site-header--transparent.is-scrolled .primary-nav a:hover,
.site-header--transparent.is-scrolled .primary-nav a.is-current { color: var(--red); border-bottom-color: var(--red); }
.site-header--transparent.is-scrolled .nav-toggle span { background: var(--ink); }
.site-header--transparent.is-scrolled .brand__logo { filter: none; }
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 72px; width: auto; }
.brand__logo--footer { height: 40px; filter: brightness(0) invert(1); }

.primary-nav ul { display: flex; gap: var(--sp-4); }
.primary-nav a {
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.primary-nav a:hover { color: var(--red); }
.primary-nav a.is-current { color: var(--red); border-bottom-color: var(--red); }
.member-login-btn,
.member-login-btn:hover,
.member-login-btn:focus-visible { padding-bottom: 9px; border-bottom: none; color: #fff !important; }
.member-login-desktop { margin-left: auto; }
.member-login-mobile { display: none; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 34px; padding: 4px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 3px; border-radius: 2px; background: var(--ink); }

/* ---------- Hero (single shared pattern for every page) ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  max-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero--short { min-height: 46vh; max-height: 480px; }
.hero--centered { align-items: center; text-align: center; }
.hero--centered .hero__inner { margin-inline: auto; max-width: 760px; }
.hero--centered .hero__title { font-size: clamp(2.5rem, 2rem + 3.5vw, 4.75rem); }
.hero--centered .hero__subtitle { margin-inline: auto; }

.wave-divider { line-height: 0; margin-bottom: -1px; }
.wave-divider svg { display: block; }
.hero .wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; }
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,9,.35) 0%, rgba(20,10,9,.35) 40%, rgba(20,10,9,.82) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-6) var(--sp-6);
  max-width: 900px;
}
.hero__eyebrow {
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--red-light);
  margin: 0 0 var(--sp-1);
}
.hero__title {
  font-size: var(--fs-h1);
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero__subtitle {
  margin-top: var(--sp-2);
  max-width: 620px;
  font-size: var(--fs-lead);
  color: rgba(255,255,255,.92);
}

/* ---------- Reveal-on-scroll (progressive enhancement) ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Section rhythm ---------- */
main { overflow-x: clip; }
.section { padding-block: var(--sp-7); }
.section--tight { padding-block: var(--sp-5); }
.section--alt { background: var(--gray-100); }
.section--red { background: var(--red); color: #fff; }
.section--red p { color: rgba(255,255,255,.88); }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--red);
  margin-bottom: var(--sp-2);
}
.section-heading { margin-bottom: var(--sp-4); }
.section-heading h2 { color: var(--red); }
.section-heading p { max-width: 640px; font-size: var(--fs-lead); margin-top: var(--sp-2); }
.section-heading--center { text-align: center; }
.section-heading--center p { margin-inline: auto; }

/* ---------- Home: schedule intro + calendar ---------- */
.schedule-intro { text-align: center; padding-block: var(--sp-7) var(--sp-4); }
.schedule-intro__title { font-size: var(--fs-h2); }
.schedule-intro__title .hl { color: var(--red); }
.schedule-intro__note { font-weight: 700; color: var(--red); font-size: .95rem; margin-top: var(--sp-1); }
.schedule-intro__sub { max-width: 620px; margin: var(--sp-3) auto 0; font-size: var(--fs-lead); }
.schedule-intro__sub strong { color: var(--ink); }
.schedule-intro .btn { margin-top: var(--sp-3); }

.cl-calendar {
  max-width: 880px;
  margin: var(--sp-5) auto 0;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-lg);
  /* Without this, jumping to #calendar (the prev/next month links)
     scrolls its top edge to the very top of the viewport, right
     under the sticky header (--header-h: 104px) — leaving the
     calendar's own month title and nav buttons hidden behind it.
     A little extra beyond the header's own height for breathing room. */
  scroll-margin-top: 124px;
}
.cl-calendar__header { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); padding: var(--sp-3) var(--sp-2) var(--sp-1); }
.cl-calendar__month { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem); color: var(--red-light); letter-spacing: .02em; }
.cl-calendar__nav {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); color: #fff;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1;
  text-decoration: none;
  transition: background-color .15s ease;
}
.cl-calendar__nav:hover { background: rgba(255,255,255,.18); }
.cl-calendar__cell--today .cl-calendar__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff;
}
.cl-calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cl-calendar__grid--labels {
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 0 var(--sp-2) var(--sp-1);
  font-weight: 700; font-size: .65rem; letter-spacing: .06em;
  color: rgba(255,255,255,.55);
}
.cl-calendar__cell { min-height: 68px; border: 1px solid rgba(255,255,255,.08); padding: 6px 8px; font-size: .75rem; position: relative; }
.cl-calendar__cell--empty { border-color: transparent; }
.cl-calendar__num { font-weight: 700; font-size: .75rem; color: rgba(255,255,255,.7); }
.cl-calendar__cell--event { background: rgba(240,115,106,.28); }
.cl-calendar__cell--event .cl-calendar__num { color: #fff; }
.cl-calendar__label { display: block; margin-top: 4px; font-size: .65rem; font-weight: 700; line-height: 1.25; color: #fff; }
.cl-calendar__footer { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-2); border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; color: rgba(255,255,255,.6); }
.cl-calendar__footer-brand { color: var(--red-light); font-weight: 700; }

/* ---------- Split rows (Our Family / Our Bible Study) ---------- */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; padding-block: var(--sp-7); }
.split-row--reverse .split-row__media { order: 2; }
.split-row--reverse .split-row__text { order: 1; }
.split-row__media img { border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.split-row__text h2 { margin-bottom: var(--sp-1); }
.split-row__text h3 { font-size: 1.15rem; color: var(--red); margin-bottom: var(--sp-3); }

/* ---------- About: values / beliefs / team ---------- */
.values-grid, .beliefs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); margin-top: var(--sp-4); }
.values-grid > div, .beliefs-grid > div {
  background: var(--surface);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: var(--sp-3);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.values-grid > div:hover, .beliefs-grid > div:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.values-grid h3, .beliefs-grid h3 { font-size: 1.1rem; padding-bottom: var(--sp-1); border-bottom: 2px solid var(--red); margin-bottom: var(--sp-2); display: inline-block; }
.values-grid p, .beliefs-grid p { font-size: .95rem; margin-bottom: 0; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); max-width: 720px; margin: var(--sp-4) auto 0; }
.team-card { text-align: center; }
.team-card img { border-radius: var(--radius-md); aspect-ratio: 3/4; object-fit: cover; margin-bottom: var(--sp-2); box-shadow: var(--shadow-md); }
.team-card .role { display: block; font-weight: 700; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: var(--red); margin-bottom: var(--sp-1); }
.team-card .contact-link { display: inline-block; margin-top: var(--sp-1); font-size: .85rem; font-weight: 700; color: var(--gray-700); border-bottom: 1px solid var(--gray-300); }

/* ---------- Jesus / gospel page ---------- */
.gospel-points { max-width: 760px; margin-inline: auto; }
.gospel-points h2 { font-size: 1.35rem; margin: var(--sp-4) 0 var(--sp-2); }
.gospel-points h2:first-child { margin-top: 0; }

/* ---------- Forms ---------- */
.form-card { max-width: 620px; margin-inline: auto; }
.form-field { margin-bottom: var(--sp-3); }
.form-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: var(--sp-1); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-tint); outline: none; }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field--honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.form-success {
  text-align: center; background: var(--gray-100); border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-4);
}
.form-success h2 { color: var(--red); margin-bottom: var(--sp-2); }
.form-errors {
  background: var(--red-tint); border: 1px solid var(--red-light); border-radius: var(--radius-sm);
  padding: var(--sp-3); margin-bottom: var(--sp-3);
}
.form-errors ul { margin: 0; padding-left: 1.2em; list-style: disc; }
.form-errors li { color: var(--red-dark); font-size: .9rem; }

/* ---------- Plan a Visit ---------- */
.visit-intro { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: end; margin-bottom: var(--sp-4); }
.visit-intro__heading { font-size: var(--fs-h2); }
.visit-intro__body .eyebrow { display: block; }

.location-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
.location-row img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.location-row h2 { margin-bottom: var(--sp-1); }
.location-row .meta { font-weight: 600; margin: var(--sp-2) 0 var(--sp-3); }
.location-row .meta span { display: block; }

.expect-header { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-4); }
.expect-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
.expect-strip img { border-radius: var(--radius-sm); aspect-ratio: 3/4; object-fit: cover; }
.photo-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
.photo-gallery img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-sm); }
.photo-gallery--3col { grid-template-columns: repeat(3, 1fr); }

.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin-top: var(--sp-6); text-align: center; }
.faq-grid__icon { width: 44px; height: 44px; margin: 0 auto var(--sp-2); color: var(--red); }
.faq-grid h3 { margin-bottom: var(--sp-1); }

/* ---------- Footer ---------- */
.site-footer { background: var(--red); color: #fff; padding-block: var(--sp-6) var(--sp-4); }
.site-footer__inner { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: var(--sp-4); align-items: start; }
.site-footer__contact { display: flex; flex-direction: column; gap: 4px; margin: var(--sp-2) 0 0; font-size: .9rem; color: rgba(255,255,255,.9); }
.site-footer__nav ul { display: flex; flex-wrap: wrap; gap: 6px var(--sp-3); margin-bottom: var(--sp-2); font-weight: 700; font-size: .85rem; }
.site-footer__note { font-size: .75rem; color: rgba(255,255,255,.8); margin: 0; }
.site-footer__social { display: flex; gap: var(--sp-2); justify-self: end; }
.site-footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; transition: border-color .15s ease, background-color .15s ease; }
.site-footer__social a:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.site-footer__copyright { text-align: center; font-size: .75rem; color: rgba(255,255,255,.7); margin: var(--sp-3) 0 0; }
.site-credit { background: #2b2b2b; color: rgba(255,255,255,.55); text-align: center; font-size: .8rem; padding-block: var(--sp-2); padding-inline: clamp(20px, 4vw, 40px); }
.site-credit a { color: var(--red-light); font-weight: 700; }
.site-credit a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split-row, .location-row, .visit-intro { grid-template-columns: 1fr; gap: var(--sp-3); }
  .split-row--reverse .split-row__media, .split-row--reverse .split-row__text { order: initial; }
  .values-grid, .beliefs-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; }
  .faq-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .expect-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__social { justify-self: start; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 0 30%;
    background: var(--ink);
    padding: var(--sp-4);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 40;
  }
  body.nav-open { overflow: hidden; }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; gap: var(--sp-3); }
  .primary-nav a { color: #fff; font-size: 1.1rem; }
  .site-header--transparent.is-scrolled .primary-nav a { color: #fff; }
  .member-login-mobile { display: block; margin-top: var(--sp-2); }
  .member-login-mobile .member-login-btn { background: var(--red); border-color: var(--red); }
  .member-login-desktop { display: none; }
  .beliefs-grid, .values-grid { grid-template-columns: 1fr; }
  .hero:not(.hero--short) { min-height: 62vh; }
  .hero__inner { padding-block: var(--sp-4); }
  .hero--short .hero__inner { padding-block: var(--sp-4) var(--sp-7); }
  .section { padding-block: var(--sp-5); }
}

/* Event calendar — clickable event pills + details modal */
.cl-calendar__event {
  display: block;
  width: 100%;
  border: none;
  background: rgba(0,0,0,.32);
  box-shadow: 0 0 0 1px rgba(255,255,255,.14) inset;
  padding: 3px 6px;
  margin-top: 5px;
  font: inherit;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
  white-space: normal;
  overflow-wrap: break-word;
  transition: background-color .15s ease;
}
.cl-calendar__event:hover,
.cl-calendar__event:focus-visible {
  background: rgba(0,0,0,.5);
  outline: none;
}

.cl-event-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 24, .65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2);
}
.cl-event-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 440px;
  width: 100%;
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
}
.cl-event-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #9a9a9a;
  cursor: pointer;
  padding: 4px;
}
.cl-event-modal__close:hover { color: var(--red); }
.cl-event-modal__title {
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: var(--sp-2);
  padding-right: var(--sp-3);
}
.cl-event-modal__meta { margin-bottom: var(--sp-2); }
.cl-event-modal__meta-line {
  font-size: .9rem;
  color: #4a4a4a;
  padding: 3px 0;
}
.cl-event-modal__description {
  font-size: .95rem;
  line-height: 1.6;
  color: #333;
  white-space: pre-wrap;
}
