/* Page-specific layouts — all matching Stitch screen 09359903ea7d4839820f74e67af44162 */

/* Give space below fixed nav */
main {
  padding-top: 6rem;
}

/* ---------------- Hero Section ---------------- */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
  background: var(--surface);
}

.hero__blob-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, rgba(255, 240, 245, 0) 70%);
  filter: blur(60px);
  opacity: 0.8;
  pointer-events: none;
}

.hero__blob-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, rgba(255, 240, 245, 0) 70%);
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__copy {
  order: 2;
}

.hero__visual {
  order: 1;
  position: relative;
}

.hero__title {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero__title-highlight {
  color: var(--primary);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(157, 0, 93, 0.8);
  max-width: 32rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.hero__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-hero);
  overflow: hidden;
  box-shadow: var(--barbie-glow);
  border: 8px solid var(--on-primary);
}

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

.hero__portrait-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 0, 127, 0.2), transparent);
}

.hero__portrait-glow {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 0, 127, 0.1);
  border-radius: var(--radius-full);
  filter: blur(60px);
  z-index: -1;
}

@media (min-width: 768px) {
  .hero {
    padding: 3rem 5rem;
  }
  .hero__inner {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
  .hero__copy {
    grid-column: span 6;
    order: 1;
  }
  .hero__visual {
    grid-column: span 6;
    order: 2;
  }
  .hero__title {
    font-size: 4.5rem;
  }
  .hero__subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 6rem;
  }
}

/* ---------------- Introduction "Shero Movement" ---------------- */

.intro {
  padding: 8rem 1.5rem;
  background: var(--on-primary);
}

.intro__inner {
  max-width: 1152px;
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.intro__visual {
  position: relative;
}

.intro__visual-card {
  aspect-ratio: 1 / 1;
  background: var(--surface-container);
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
  transform: rotate(3deg);
  position: relative;
  z-index: 10;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 127, 0.2);
}

.intro__visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.intro__visual-shadow {
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 127, 0.2);
  transform: rotate(-3deg);
  z-index: 1;
  border-radius: 1rem;
}

.intro__body h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.intro__paragraph {
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.intro__paragraph--last {
  margin-bottom: 2.5rem;
}

.intro__emphasis {
  font-style: italic;
  color: var(--primary);
  font-weight: 700;
}

.intro__divider {
  height: 0.5rem;
  width: 6rem;
  background: var(--primary);
  border-radius: var(--radius-full);
  margin-bottom: 2.5rem;
}

.intro__pullquote {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .intro__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .intro__body h2 {
    font-size: 3rem;
  }
}

/* ---------------- About Founder Section ---------------- */

.founder {
  padding: 8rem 1.5rem;
  background: var(--surface);
}

.founder__inner {
  max-width: 1152px;
  margin-inline: auto;
  display: grid;
  gap: 4rem;
  align-items: center;
}

.founder__body {
  order: 2;
}

.founder__visual {
  order: 1;
}

.founder__title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.founder__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder__paragraphs p {
  font-size: 1.125rem;
  color: rgba(157, 0, 93, 0.8);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

.founder__signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 0, 127, 0.2);
}

.founder__signature-name {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
}

.founder__signature-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 900;
  color: var(--secondary);
  margin: 0.25rem 0 0;
}

.founder__portrait-wrap {
  position: relative;
}

.founder__portrait-glow {
  position: absolute;
  inset: 0;
  background: var(--pink-glam-gradient);
  border-radius: var(--radius-full);
  filter: blur(60px);
  opacity: 0.2;
  transition: opacity 300ms ease;
}

.founder__portrait-wrap:hover .founder__portrait-glow {
  opacity: 0.4;
}

.founder__portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-full);
  border: 8px solid var(--on-primary);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .founder__inner {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }
  .founder__body {
    order: 1;
  }
  .founder__visual {
    order: 2;
  }
  .founder__title {
    font-size: 3rem;
  }
}

/* ---------------- VSL (Video message) Section ---------------- */

.vsl {
  padding: 8rem 1.5rem;
  background: var(--on-primary);
  position: relative;
  overflow: hidden;
}

.vsl__inner {
  max-width: 896px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.vsl__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.vsl__subtitle {
  font-size: 1.25rem;
  color: rgba(157, 0, 93, 0.7);
  font-weight: 500;
  margin: 0 auto 4rem;
  max-width: 42rem;
  line-height: 1.6;
}

.vsl__player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface-container);
  border: 4px solid var(--on-primary);
  box-shadow: var(--shadow-2xl);
  margin-bottom: 4rem;
  cursor: pointer;
  transition: transform 300ms ease;
}

.vsl__player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(0.2);
}

.vsl__play-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vsl__play {
  width: 6rem;
  height: 6rem;
  background: var(--pink-glam-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-primary);
  box-shadow: var(--shadow-2xl);
  border: 0;
  transition: transform 300ms ease;
}

.vsl__player:hover .vsl__play {
  transform: scale(1.1);
}

.vsl__play .material-symbols-outlined {
  font-size: 2.25rem;
  translate: 2px 0;
}

.vsl__blob {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, rgba(255, 240, 245, 0) 70%);
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
}

/* ---------------- Philosophy Section (full primary bg) ---------------- */

.philosophy {
  padding: 10rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.philosophy__texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.2;
  pointer-events: none;
}

.philosophy__inner {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin-inline: auto;
  text-align: center;
}

.philosophy__icon {
  color: var(--on-primary);
  font-size: 4.5rem;
  margin-bottom: 3rem;
  display: block;
}

.philosophy__quote {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  color: var(--on-primary);
  font-style: italic;
  line-height: 1.15;
  font-weight: 300;
  margin: 0;
}

.philosophy__quote-accent {
  font-style: normal;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.philosophy__attribution {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.philosophy__rule {
  display: block;
  height: 4px;
  width: 4rem;
  background: rgba(255, 255, 255, 0.4);
}

.philosophy__name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--on-primary);
  font-weight: 900;
}

@media (min-width: 768px) {
  .philosophy__quote {
    font-size: 4.5rem;
  }
}

/* ---------------- Services Section ---------------- */

.services {
  padding: 8rem 1.5rem;
  background: var(--surface);
}

.services__inner {
  max-width: 1280px;
  margin-inline: auto;
}

.services__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6rem;
  gap: 2rem;
}

.services__title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 36rem;
}

.services__subtitle {
  color: var(--secondary);
  font-size: 1.125rem;
  font-weight: 600;
  max-width: 20rem;
  opacity: 0.7;
  margin: 0;
}

.services__grid {
  display: grid;
  gap: 3rem;
}

.service-card {
  background: var(--on-primary);
  padding: 2.5rem;
  border-radius: var(--radius-card);
  border-bottom: 8px solid var(--primary);
  box-shadow: var(--shadow-xl);
  transition: transform 500ms ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card__number {
  display: block;
  font-size: 3.75rem;
  font-weight: 900;
  color: rgba(255, 0, 127, 0.2);
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-card__title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--on-surface);
  letter-spacing: -0.02em;
}

.service-card__body {
  color: var(--secondary);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 2.5rem;
  font-size: 1.125rem;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--on-surface);
  font-weight: 700;
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-card__feature .material-symbols-outlined {
  color: var(--primary);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@media (min-width: 768px) {
  .services__header {
    flex-direction: row;
    align-items: flex-end;
  }
  .services__title {
    font-size: 3.75rem;
  }
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------------- The Decision Section ---------------- */

.decision {
  padding: 8rem 1.5rem;
  background: var(--on-primary);
  position: relative;
  overflow: hidden;
}

.decision__inner {
  max-width: 1152px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}

.decision__header {
  text-align: center;
  margin-bottom: 5rem;
}

.decision__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.decision__lede {
  font-size: 1.25rem;
  color: var(--secondary);
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
}

.decision__grid {
  display: grid;
  gap: 1.5rem;
}

.decision-card {
  padding: 2.5rem;
  border-radius: var(--radius-card);
  background: var(--on-primary);
  border-bottom: 8px solid var(--primary);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 14rem;
  transition: transform 500ms ease;
}

.decision-card p {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--secondary);
  margin: 0;
}

.decision-card:hover {
  transform: translateY(-10px);
}

@media (min-width: 768px) {
  .decision__title {
    font-size: 4.5rem;
  }
  .decision__lede {
    font-size: 1.5rem;
  }
  .decision__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .decision__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------- Testimonials Section ---------------- */

.testimonials {
  padding: 8rem 1.5rem;
  background: var(--surface-container);
  position: relative;
}

.testimonials__inner {
  max-width: 1280px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}

.testimonials__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 6rem;
  font-style: italic;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.testimonials__grid {
  display: grid;
  gap: 3rem;
  max-width: 1152px;
  margin-inline: auto;
}

.testimonial-card {
  background: var(--on-primary);
  padding: 4rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-2xl);
  position: relative;
  border: 1px solid rgba(255, 0, 127, 0.1);
}

.testimonial-card__mark {
  color: var(--primary);
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3.75rem;
  opacity: 0.2;
}

.testimonial-card__quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--on-surface);
  margin: 0 0 2.5rem;
  line-height: 1.55;
  font-weight: 600;
}

.testimonial-card__name {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 900;
  color: var(--primary);
  margin: 0;
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
  opacity: 0.6;
  margin: 0.25rem 0 0;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card--offset {
    margin-top: 4rem;
  }
}

/* ---------------- FAQ Section ---------------- */

.faq {
  padding: 8rem 1.5rem;
  background: var(--on-primary);
}

.faq__inner {
  max-width: 768px;
  margin-inline: auto;
}

.faq__title {
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: -0.02em;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--surface);
  border-radius: 2rem;
  border: 1px solid rgba(255, 0, 127, 0.1);
  overflow: hidden;
}

.faq__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__question {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--on-surface);
  letter-spacing: -0.01em;
}

.faq__indicator {
  color: var(--primary);
  transition: transform 300ms ease;
}

.faq__item[open] .faq__indicator {
  transform: rotate(180deg);
}

.faq__body {
  padding: 0 2rem 2rem;
  color: var(--secondary);
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq__title {
    font-size: 3rem;
  }
}

/* ---------------- Newsletter Section ---------------- */

.newsletter {
  padding: 8rem 1.5rem;
  background: var(--on-primary);
}

.newsletter__inner {
  max-width: 1152px;
  margin-inline: auto;
}

.newsletter__card {
  background: var(--pink-glam-gradient);
  border-radius: var(--radius-hero);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(255, 0, 127, 0.4);
}

.newsletter__texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/glam-checkerboard.png");
  opacity: 0.1;
  pointer-events: none;
}

.newsletter__body {
  position: relative;
  z-index: 10;
}

.newsletter__title {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--on-primary);
}

.newsletter__lede {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 1.125rem;
  max-width: 28rem;
  margin: 0 auto 3rem;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  padding: 1.25rem 2rem;
  color: var(--on-primary);
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  outline: none;
  transition: border-color 200ms ease;
  font-family: inherit;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter__input:focus {
  border-color: var(--on-primary);
}

.newsletter__privacy {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 2rem 0 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (min-width: 768px) {
  .newsletter__card {
    padding: 6rem;
  }
  .newsletter__title {
    font-size: 3.75rem;
  }
  .newsletter__form {
    flex-direction: row;
  }
}

/* ---------------- Page Intro (shared across /about /coaching /shero /contact) ---------------- */

.page-intro {
  padding: 6rem 1.5rem 4rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.page-intro__blob {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, rgba(255, 240, 245, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.page-intro__inner {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin-inline: auto;
}

.page-intro h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.page-intro__lede {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: rgba(157, 0, 93, 0.8);
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-intro {
    padding: 8rem 2rem 6rem;
  }
  .page-intro h1 {
    font-size: 4.5rem;
  }
}

/* ---------------- Contact page (split: book call + info) ---------------- */

.contact-grid {
  padding: 0 1.5rem 8rem;
  background: var(--on-primary);
}

.contact-grid__inner {
  max-width: 1152px;
  margin-inline: auto;
  display: grid;
  gap: 3rem;
}

.contact-book-card {
  padding: 3rem 2rem;
  border-radius: var(--radius-hero);
  background: var(--pink-glam-gradient);
  color: var(--on-primary);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 25px 50px -12px rgba(255, 0, 127, 0.4);
}

.contact-book-card h2 {
  font-size: 2.5rem;
  color: var(--on-primary);
  margin: 0;
  letter-spacing: -0.04em;
}

.contact-book-card p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin: 0;
  max-width: 36ch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__block {
  background: var(--surface);
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 0, 127, 0.1);
}

.contact-info__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 900;
  color: var(--secondary);
  margin: 0 0 0.75rem;
}

.contact-info__value {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--on-surface);
  margin: 0;
}

.contact-info__value a {
  color: inherit;
}

.contact-info__value a:hover {
  color: var(--primary);
}

@media (min-width: 900px) {
  .contact-grid__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
  .contact-book-card {
    padding: 5rem 4rem;
  }
  .contact-book-card h2 {
    font-size: 3rem;
  }
}

/* ---------------- Legal pages (Privacy, Terms, Imprint) ---------------- */

.legal {
  padding: 0 1.5rem 8rem;
  background: var(--on-primary);
}

.legal__inner {
  max-width: 768px;
  margin-inline: auto;
  color: var(--on-surface);
  font-size: 1rem;
  line-height: 1.7;
}

.legal__updated {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0 0 3rem;
  font-weight: 500;
}

.legal__inner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 3rem 0 1rem;
  color: var(--on-surface);
}

.legal__inner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--on-surface);
}

.legal__inner p,
.legal__inner ul,
.legal__inner ol,
.legal__inner dl {
  margin: 0 0 1rem;
}

.legal__inner ul,
.legal__inner ol {
  padding-left: 1.5rem;
}

.legal__inner li {
  margin-bottom: 0.5rem;
}

.legal__inner dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1.5rem;
}

.legal__inner dt {
  font-weight: 700;
}

.legal__inner dd {
  margin: 0;
}

.legal__inner a {
  color: var(--primary);
  text-decoration: underline;
}

.legal__inner a:hover {
  color: var(--on-surface);
}

@media (min-width: 768px) {
  .legal__inner {
    font-size: 1.0625rem;
  }
  .legal__inner h2 {
    font-size: 1.75rem;
  }
}
