/* /public/style.css */

:root {
  --bg: #ffffff;
  --hero-text: #f4f1e8;
  --body-text: #111111;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  background: #ffffff !important;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg) !important;
  color: var(--body-text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

a {
  color: inherit;
}

.home-shell {
  width: 100%;
}

.hero {
  position: relative;
  max-width: 1100px;
  margin: 120px auto 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-overlay {
  color: var(--hero-text);
}

.desktop-overlay {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  width: 30%;
}

.mobile-overlay {
  display: none;
}

.hero-name {
  margin: 0 0 10px;
  color: var(--hero-text);
  font-size: 2.15rem;
  line-height: 1.02;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.hero-kicker {
  margin: 0 0 22px;
  color: var(--hero-text);
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.hero-sub {
  margin: 0 0 16px;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 500;
}

.hero-link {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 500;
}

.mobile-below {
  display: none;
}

/* SNAPLINE PAGE */
body.snapline-page {
  background: #ffffff !important;
}

.snapline-page .snapline-shell {
  width: 100%;
  margin: 0;
  padding: 110px 24px 80px;
  background: #ffffff !important;
}

.snapline-page .snapline-embed {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff !important;
}

.snapline-page .snapline-embed iframe {
  display: block;
  width: 100%;
  min-height: 980px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

@media (max-width: 768px) {
  html,
  body,
  body.snapline-page,
  .snapline-page .snapline-shell,
  .snapline-page .snapline-embed {
    background: #ffffff !important;
  }

  .hero {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero-image {
    width: 100%;
  }

  .desktop-overlay {
    display: none;
  }

  .mobile-overlay {
    display: block;
    position: absolute;
    top: 18px;
    left: 18px;
    width: 46%;
    z-index: 2;
  }

  .mobile-overlay .hero-name {
    margin: 0 0 8px;
    font-size: 1.18rem;
    line-height: 0.95;
  }

  .mobile-overlay .hero-kicker {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.06;
  }

  .mobile-below {
    display: block;
    padding: 18px 24px 0;
  }

  .mobile-black,
  .mobile-black a,
  .mobile-black em {
    color: #000000;
  }

  .mobile-below .hero-sub {
    font-size: 1.02rem;
    line-height: 1.34;
    margin: 0 0 14px;
  }

  .mobile-below .hero-link {
    font-size: 1rem;
    line-height: 1.34;
    margin: 0 0 12px;
  }

  .snapline-page .snapline-shell {
    padding: 40px 16px 50px;
    background: #ffffff !important;
  }

  .snapline-page .snapline-embed {
    background: #ffffff !important;
  }

  .snapline-page .snapline-embed iframe {
    min-height: 980px;
  }
}