/* Landing 01 - Base stylesheet */

@font-face {
  font-family: "Ringside-ExtraWideBlack";
  src: url("../fonts/Ringside-ExtraWideBlack.woff2") format("woff2"),
  url("../fonts/Ringside-ExtraWideBlack.woff") format("woff");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Ringside-RegularBlack";
  src: url("../fonts/Ringside-RegularBlack.woff2") format("woff2"),
  url("../fonts/Ringside-RegularBlack.woff") format("woff");
  font-style: normal;
  font-weight: 350;
  font-display: swap;
}

@font-face {
  font-family: "Ringside-RegularLight";
  src: url("../fonts/Ringside-RegularLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Ringside-RegularBook";
  src: url("../fonts/Ringside-RegularBook.woff2") format("woff2"),
  url("../fonts/Ringside-RegularBook.woff") format("woff");
  font-style: normal;
  font-weight: 350;
  font-display: swap;
}

@font-face {
  font-family: "Ringside-ExtraWideBook";
  src: url("../fonts/Ringside-ExtraWideBook.woff2") format("woff2"),
  url("../fonts/Ringside-ExtraWideBook.woff") format("woff");
  font-style: normal;
  font-weight: 350;
  font-display: swap;
}

@font-face {
  font-family: "itcgaramondstd-bknarrow";
  src: url("../fonts/itcgaramondstd-bknarrow.woff2") format("woff2"),
  url("../fonts/itcgaramondstd-bknarrow.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-h1: "Ringside-ExtraWideBlack", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-garamond: "itcgaramondstd-bknarrow", Georgia, serif;
  --font-body: "Ringside-RegularBlack", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-paragraph: "Ringside-RegularBook", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --color-dark: #191919;
  --color-light: #f8fafc;
  --color-white: #ffffff;
  --color-footer: #d31710;

  --container-max-width: 1200px;
  --section-padding-y: 96px;
  --section-padding-y-mobile: 56px;

  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
  --transition-base: 180ms ease;
}

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

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-dark);
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
}

h1 {
  font-family: var(--font-h1);
  font-size: 2.625em;
  font-weight: 900;
  line-height: 66px;
  letter-spacing: -0.04em;
  color: var(--color-white);
}

h2 {
  font-family: var(--font-garamond);
  font-size: 6.25em;
  font-weight: 400;
  line-height: 100px;
  letter-spacing: -0.015em;
  color: var(--color-dark);
}

h3 {
  font-family: var(--font-garamond);
  font-size: 3em;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

h4 {
  font-family: var(--font-body);
  font-size: 1.5em;
  font-weight: 350;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--color-dark);
}

ul,
ol {
  margin: 0 0 1rem;
  font-family: var(--font-paragraph);
  font-size: 1.25em;
  font-weight: 350;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--color-dark);
}

p {
  margin: 0 0 1rem;
  font-family: var(--font-paragraph);
  font-size: 1.25em;
  font-weight: 350;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--color-dark);
}

ul,
ol {
  padding-inline-start: 1.25rem;
}

li {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

p.lead {
  font-size: 1.25em;
  line-height: 30px;
  color: var(--color-dark);
}

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100%;
  z-index: 2000;
  padding: 0.5rem 0.875rem;
  border-radius: 0.375rem;
  color: var(--color-white);
  background: var(--color-dark);
  text-decoration: none;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 0.75rem;
}

.site-main {
  overflow-x: clip;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(25, 25, 25, 0.74) 0%,
    rgba(25, 25, 25, 0.62) 40%,
    rgba(25, 25, 25, 0.38) 70%,
    rgba(25, 25, 25, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-logo {
  width: 122px;
  height: auto;
  flex-shrink: 0;
}

.hero-copy {
  margin-top: auto;
  margin-bottom: auto;
  max-width: 75rem;
}

.hero-copy h1 {
  margin: 0 0 0.375em;
}

.hero-copy p {
  margin: 0;
  max-width: 55rem;
  color: var(--color-white);
}

.section {
  padding: var(--section-padding-y) 0;
}

.section-alt {
  background: var(--color-light);
}

.progress-support-section {
  padding: 100px 0;
  background-color: #fbf5f4;
}

.progress-support-section h3 {
  margin: 0;
}

.progress-support-list {
  margin: 0;
  padding-left: 1.25rem;
}

.progress-support-list li {
  margin-bottom: 1rem;
}

.progress-support-list li:last-child {
  margin-bottom: 0;
}

.experts-intro-section {
  padding: 90px 0;
}

.experts-intro-title {
  margin: 0;
  text-align: center;
}

.experts-intro-copy {
  margin-top: 50px;
}

.experts-intro-copy p {
  margin: 0;
}

.bmi-overview-section {
  padding: 90px 0;
  background-color: #f9eeed;
}

.bmi-overview-header {
  margin-bottom: 50px;
  text-align: center;
}

.bmi-overview-header h2 {
  margin: 0;
}

.bmi-overview-header p:last-child {
  max-width: 58rem;
  margin: 40px auto 75px auto;
  text-align: center;
  font-size: 1.5em;
}

.bmi-overview-content {
  row-gap: 35px;
}

.bmi-overview-image {
  width: 100%;
  max-height: 563px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.bmi-overview-content h3 {
  margin: 0 0 20px;
  font-size: 3.75em;
  line-height: 66px;
}

.bmi-overview-content p {
  margin: 0 0 20px;
}

.bmi-overview-content p:last-child {
  margin-bottom: 0;
}

.doctor-tips-section {
  padding: 100px 0;
  background-color: #f9eeed;
}

.doctor-tips-header {
  margin-bottom: 50px;
}

.doctor-tips-header h2 {
  margin: 0 0 20px;
}

.doctor-tips-header p {
  margin: 0;
}

.doctor-tips-header .doctor-tips-lead {
  margin-top: 35px;
  font-size: 1.5em;
}

.doctor-tips-slider-swiper {
  overflow: visible;
}

.doctor-tip-card {
  height: 100%;
  min-height: 300px;
  padding: 36px 36px 34px;
  border-radius: 24px;
  background: #ffffff;
}

.doctor-tip-step {
  display: inline-block;
  margin-bottom: 32px;
  padding: 8px 20px;
  border-radius: 999px;
  background: #ffdad4;
  font-family: 'Ringside-RegularBook', sans-serif;
  font-size: 1em;
  font-weight: 350;
  line-height: 1.25;
  color: var(--color-dark);
}

.doctor-tip-card h3 {
  margin: 0 0 24px;
  font-family: 'Ringside-RegularBook', sans-serif;
  font-size: 1.75em;
  font-weight: 350;
  line-height: 1.22;
  letter-spacing: 0;
}

.doctor-tip-card p {
  margin: 0;
  font-family: var(--font-paragraph);
  font-size: 1.25em;
  font-weight: 350;
  line-height: 1.42;
  letter-spacing: 0;
}

.doctor-tips-controls {
  margin-top: 20px;
}

.doctor-tips-slider-swiper .doctor-tips-slider-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
}

.doctor-tips-slider-swiper .doctor-tips-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  border-radius: 999px;
  background: #191919;
  opacity: 0.35;
  transition: width 200ms ease, opacity 200ms ease;
}

.doctor-tips-slider-swiper .doctor-tips-slider-pagination .swiper-pagination-bullet-active {
  width: 56px;
  opacity: 1;
}

.factors-section {
  padding: 100px 0;
  background: var(--color-white);
}

.factors-pretitle {
  margin: 0;
  text-align: left;
  font-family: 'Ringside-ExtraWideBook', sans-serif;
  font-size: 0.875em;
  font-weight: 350;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-dark);
  margin-bottom: 36px !important;
}

.factors-section h2 {
  margin: 0;
  text-align: center;
}

.factors-intro {
  margin: 40px auto 50px auto;
  max-width: 55rem;
  text-align: center;
  font-size: 1.5em;
}

.factors-grid {
  row-gap: 0;
}

.factors-col {
  margin-bottom: 50px;
}

.factors-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.factors-col h4 {
  margin: 0 0 20px;
  font-family: 'Ringside-RegularLight', sans-serif;
  font-weight: bold;
}

.factors-text {
  margin: 0;
  font-size: 1em;
  line-height: 24px;
}

.health-slider-section {
  padding: 75px 0;
  background: var(--color-white);
}

.health-slider-header {
  margin-bottom: 50px;
  text-align: center;
}

.health-slider-header h2 {
  margin: 0;
}

.health-slider-header p {
  margin: 20px auto 0;
  max-width: 45rem;
  text-align: center;
}

.health-slider-swiper {
  overflow: hidden;
}

.health-slider-swiper .swiper-slide {
  width: 347px;
  transition: opacity 220ms ease;
  opacity: 0.72;
}

.health-slider-swiper .swiper-slide-active {
  width: 644px;
  opacity: 1;
}

.health-slider-swiper .swiper-slide.is-wide {
  width: 644px;
  opacity: 1;
}

.health-slide-card {
  position: relative;
  height: 350px;
  max-height: 350px;
  border-radius: 24px;
  overflow: hidden;
}

.health-slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4825) 48.25%, rgba(0, 0, 0, 0) 100%),
    rgba(0, 0, 0, 0.3);
}

.health-slide-card img {
  display: block;
  width: 100%;
  height: 350px;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
}

.health-slide-card h3 {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.5em;
  font-weight: 350;
  line-height: 32px;
  letter-spacing: 0;
  color: var(--color-white);
}

.health-slider-controls {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 56px;
  background: #f5f5f5;
}

.health-slider-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--color-dark);
  width: 24px;
  height: 24px;
  padding: 0;
}

.health-slider-arrow {
  width: 16px;
  height: 16px;
}

.health-slider-arrow-prev {
  transform: rotate(180deg);
}

.health-slider-swiper .health-slider-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
}

.health-slider-swiper .health-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  border-radius: 999px;
  background: #191919;
  opacity: 0.35;
  transition: width 200ms ease, opacity 200ms ease;
}

.health-slider-swiper .health-slider-pagination .swiper-pagination-bullet-active {
  width: 56px;
  opacity: 1;
}

.health-slider-nav.swiper-button-disabled {
  opacity: 0.45;
}

.health-slider-note {
  margin: 20px auto 0;
  text-align: center;
  font-family: var(--font-paragraph);
  font-size: 0.875em;
  font-weight: 350;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-dark);
}

.story-slider-section {
  padding: 75px 0;
  margin-bottom: 100px;
}

.story-slider-header {
  text-align: center;
  margin-bottom: 50px;
}

.story-slider-pretitle {
  margin: 0;
  text-align: center;
  font-family: var(--font-paragraph);
  font-size: 0.875em;
  font-weight: 350;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-dark);
}

.story-slider-header h2 {
  margin: 0;
}

.story-slider-intro {
  margin: 20px auto 0;
  max-width: 46rem;
  text-align: center;
}

.story-slide-card {
  padding: 0;
}

.story-role {
  display: inline-block;
  margin-bottom: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: 'Ringside-RegularLight', sans-serif;
  font-size: 0.875em;
  font-weight: 350;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-dark);
}

.story-role--patient {
  background-color: #ffdad4;
}

.story-role--expert {
  background-color: #f9eeed;
}

.story-slide-card h3 {
  margin: 0;
}

.story-slide-card p {
  margin: 0;
  font-size: 1.5em;
  line-height: 32px;
}

.story-slider-divider {
  width: 100%;
  height: 1px;
  margin-top: 40px;
  background-color: #c5c5c5;
}

.story-slider-controls {
  margin: 20px auto 0;
}

.story-slider-swiper .story-slider-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
}

.story-slider-swiper .story-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  border-radius: 999px;
  background: #191919;
  opacity: 0.35;
  transition: width 200ms ease, opacity 200ms ease;
}

.story-slider-swiper .story-slider-pagination .swiper-pagination-bullet-active {
  width: 56px;
  opacity: 1;
}

.sources-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.sources-section h3 {
  margin: 0 0 30px;
}

.sources-section p {
  margin: 0 0 30px;
  font-size: 1em;
  color: #6A6A6A;
}

.sources-section p:last-child {
  margin-bottom: 0;
}

.text-muted-custom {
  color: var(--color-dark);
}

.btn-base {
  display: block;
  width: fit-content;
  min-height: 48px;
  height: 48px;
  padding: 8px 16px;
  border: 1px solid var(--color-dark);
  border-radius: 32px;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 1.25em;
  font-weight: 350;
  line-height: 30px;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.btn-base::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  margin-left: 12px;
  vertical-align: middle;
  background-image: url("https://image.mc.lilly.com/lib/fe8c1273736c057477/m/1/45342309-fd15-469b-803b-f992d312a5b0.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.btn-base:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn-base:hover::after {
  filter: invert(1);
}

.btn-primary-custom {
  background: var(--color-white);
  color: var(--color-dark);
}

.media-frame {
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.site-footer {
  display: flex;
  align-items: center;
  width: 100%;
  height: 360px;
  background-color: var(--color-footer);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2rem, 6vw, 8rem);
}

.site-footer__logo {
  width: min(304px, 36vw);
  height: auto;
  flex-shrink: 0;
}

.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 760px;
  gap: 0.75rem;
}

.site-footer__title {
  margin: 0;
  color: var(--color-white);
}

.site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__menu li {
  margin: 0;
}

.site-footer__menu a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  color: var(--color-white);
}

.site-footer__menu,
.site-footer__menu a {
  font-family: 'Ringside-RegularLight', sans-serif;
  font-size: 1em;
  font-weight: 350;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--color-white);
}

.site-footer__note {
  margin: 0;
  font-family: var(--font-paragraph);
  font-size: 0.875em;
  font-weight: 350;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--color-white);
}

/* Bootstrap baseline override */
.container {
  max-width: var(--container-max-width);
}

@media (max-width: 991.98px) {
  .bmi-overview-header p:last-child {
    font-size: 1.25em;
    line-height: 28px;
  }
  .bmi-overview-content h3 {
    font-size: 3em;
    line-height: 58px;
  }
  .hero-copy h1{ line-height: 52px !important; }
  h1{ line-height: 45px; }
  p{ font-size: 1em; }
  ul{ font-size: 1.125em; }
  .section {
    padding: var(--section-padding-y-mobile) 0;
  }

  .site-footer {
    height: auto;
    min-height: 360px;
    padding: 2rem 0;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
  }

  .hero-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 48px;
  }

  .progress-support-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .progress-support-section h3 {
    margin-bottom: 35px;
  }

  .experts-intro-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .experts-intro-copy {
    margin-top: 35px;
    row-gap: 20px;
  }

  .bmi-overview-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .bmi-overview-header {
    margin-bottom: 35px;
  }

  .doctor-tips-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .doctor-tips-header {
    margin-bottom: 35px;
  }

  .doctor-tips-header .doctor-tips-lead {
    margin-top: 20px;
  }

  .doctor-tip-card {
    min-height: 260px;
    padding: 28px 24px 24px;
  }

  .doctor-tip-step {
    margin-bottom: 24px;
    font-size: 1em;
  }

  .doctor-tip-card h3 {
    margin-bottom: 20px;
    font-size: 1.875em;
  }

  .doctor-tip-card p {
    font-size: 1.125em;
  }

  .factors-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .factors-intro {
    margin-bottom: 35px;
    font-size: 1.25em;
  }

  .health-slider-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .health-slider-header {
    margin-bottom: 35px;
  }

  .story-slider-section {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 75px;
  }

  .story-slider-header {
    margin-bottom: 35px;
  }

  .story-slide-card p {
    font-size: 1.5em;
  }

  .story-slider-divider {
    margin-top: 35px;
  }

  .sources-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .site-footer__menu {
    gap: 0.75rem 1.25rem;
  }

  .site-footer__menu a {
    line-height: 24px;
  }

  .site-footer__note {
    line-height: 24px;
  }
}

@media (min-width: 991px) {
  h1 {
    font-size: 6.25em;
    font-weight: 900;
    line-height: 100px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 3.25em;
    line-height: 58px;
  }

  .health-slider-swiper .swiper-slide,
  .health-slider-swiper .swiper-slide-active,
  .health-slider-swiper .swiper-slide.is-wide {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-copy {
    padding-right: 36px;
  }
}

@media (max-width: 575.98px) {
  .hero-copy {
    padding-right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
