* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: #1c1c1c;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 100%;
}

body {
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

p,
ul,
ol {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

li {
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

a {
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.14em;
}

small {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.u-font-primary {
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.u-font-secondary {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.u-font-tertiary {
  font-family: "Spline Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.u-text-xs {
  font-size: 0.875rem;
}

.u-text-sm {
  font-size: 0.9375rem;
}

.u-text-base {
  font-size: 1rem;
}

.u-text-md {
  font-size: 1.125rem;
}

.u-text-lg {
  font-size: 1.25rem;
}

.u-text-xl {
  font-size: 1.5rem;
}

.u-text-2xl {
  font-size: 2rem;
}

.u-text-3xl {
  font-size: 2.5rem;
}

.u-weight-light {
  font-weight: 300;
}

.u-weight-regular {
  font-weight: 400;
}

.u-weight-medium {
  font-weight: 500;
}

.u-weight-semibold {
  font-weight: 600;
}

.u-weight-bold {
  font-weight: 700;
}

.u-italic {
  font-style: italic;
}

.u-not-italic {
  font-style: normal;
}

.u-text-uppercase {
  text-transform: uppercase;
}

.u-text-lowercase {
  text-transform: lowercase;
}

.u-text-capitalize {
  text-transform: capitalize;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-leading-tight {
  line-height: 1.1;
}

.u-leading-snug {
  line-height: 1.25;
}

.u-leading-normal {
  line-height: 1.5;
}

.u-leading-relaxed {
  line-height: 1.7;
}

.u-tracking-tight {
  letter-spacing: -0.02em;
}

.u-tracking-normal {
  letter-spacing: 0;
}

.u-tracking-wide {
  letter-spacing: 0.02em;
}

.site-main {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding: 0 1rem;
  margin: auto;
}

.prose {
  max-width: 760px;
}

.section {
  width: 100%;
  padding: clamp(2rem, 8vw, 6rem) 0;
}

.section--alt {
  background: #f7f7f9;
}

.u-row,
.u-stack,
.u-inline-row {
  display: flex;
}

.u-row,
.u-inline-row {
  flex-wrap: wrap;
  --helpse-row-gap: 0px;
  gap: var(--helpse-row-gap);
}

.u-inline-row {
  display: inline-flex;
}

.u-stack {
  flex-direction: column;
}

.u-flow-row {
  flex-direction: row;
}

.u-flow-col {
  flex-direction: column;
}

.u-flow-row-reverse {
  flex-direction: row-reverse;
}

.u-flow-col-reverse {
  flex-direction: column-reverse;
}

.u-wrap {
  flex-wrap: wrap;
}

.u-nowrap {
  flex-wrap: nowrap;
}

.u-justify-start {
  justify-content: flex-start;
}

.u-justify-center {
  justify-content: center;
}

.u-justify-end {
  justify-content: flex-end;
}

.u-justify-between {
  justify-content: space-between;
}

.u-justify-around {
  justify-content: space-around;
}

.u-align-start {
  align-items: flex-start;
}

.u-align-center {
  align-items: center;
}

.u-align-end {
  align-items: flex-end;
}

.u-align-stretch {
  align-items: stretch;
}

.u-gap-1 {
  --helpse-row-gap: 0.25rem;
  gap: 0.25rem;
}

.u-gap-2 {
  --helpse-row-gap: 0.5rem;
  gap: 0.5rem;
}

.u-gap-3 {
  --helpse-row-gap: 0.75rem;
  gap: 0.75rem;
}

.u-gap-4 {
  --helpse-row-gap: 1rem;
  gap: 1rem;
}

.u-gap-6 {
  --helpse-row-gap: 1.5rem;
  gap: 1.5rem;
}

.u-gap-8 {
  --helpse-row-gap: 2rem;
  gap: 2rem;
}

.u-gap-12 {
  --helpse-row-gap: 3rem;
  gap: 3rem;
}

.u-gap-16 {
  --helpse-row-gap: 4rem;
  gap: 4rem;
}

.u-gap-20 {
  --helpse-row-gap: 5rem;
  gap: 5rem;
}

.u-gap-24 {
  --helpse-row-gap: 6rem;
  gap: 6rem;
}

.u-span-full {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (1 - 1)) * 1 / 1 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (1 - 1)) * 1 / 1 + var(--helpse-row-gap, 0px) * (1 - 1));
}

.u-span-s-full {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (1 - 1)) * 1 / 1 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (1 - 1)) * 1 / 1 + var(--helpse-row-gap, 0px) * (1 - 1));
}

@media (min-width: 768px) {
  .u-span-m-full {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (1 - 1)) * 1 / 1 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (1 - 1)) * 1 / 1 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-full {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (1 - 1)) * 1 / 1 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (1 - 1)) * 1 / 1 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

.u-span-half {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (2 - 1)) * 1 / 2 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (2 - 1)) * 1 / 2 + var(--helpse-row-gap, 0px) * (1 - 1));
}

.u-span-s-half {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (2 - 1)) * 1 / 2 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (2 - 1)) * 1 / 2 + var(--helpse-row-gap, 0px) * (1 - 1));
}

@media (min-width: 768px) {
  .u-span-m-half {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (2 - 1)) * 1 / 2 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (2 - 1)) * 1 / 2 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-half {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (2 - 1)) * 1 / 2 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (2 - 1)) * 1 / 2 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

.u-span-third {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 1 / 3 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 1 / 3 + var(--helpse-row-gap, 0px) * (1 - 1));
}

.u-span-s-third {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 1 / 3 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 1 / 3 + var(--helpse-row-gap, 0px) * (1 - 1));
}

@media (min-width: 768px) {
  .u-span-m-third {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 1 / 3 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 1 / 3 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-third {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 1 / 3 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 1 / 3 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

.u-span-two-thirds {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 2 / 3 + var(--helpse-row-gap, 0px) * (2 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 2 / 3 + var(--helpse-row-gap, 0px) * (2 - 1));
}

.u-span-s-two-thirds {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 2 / 3 + var(--helpse-row-gap, 0px) * (2 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 2 / 3 + var(--helpse-row-gap, 0px) * (2 - 1));
}

@media (min-width: 768px) {
  .u-span-m-two-thirds {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 2 / 3 + var(--helpse-row-gap, 0px) * (2 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 2 / 3 + var(--helpse-row-gap, 0px) * (2 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-two-thirds {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 2 / 3 + var(--helpse-row-gap, 0px) * (2 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (3 - 1)) * 2 / 3 + var(--helpse-row-gap, 0px) * (2 - 1));
  }
}

.u-span-quarter {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 1 / 4 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 1 / 4 + var(--helpse-row-gap, 0px) * (1 - 1));
}

.u-span-s-quarter {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 1 / 4 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 1 / 4 + var(--helpse-row-gap, 0px) * (1 - 1));
}

@media (min-width: 768px) {
  .u-span-m-quarter {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 1 / 4 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 1 / 4 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-quarter {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 1 / 4 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 1 / 4 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

.u-span-three-quarters {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 3 / 4 + var(--helpse-row-gap, 0px) * (3 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 3 / 4 + var(--helpse-row-gap, 0px) * (3 - 1));
}

.u-span-s-three-quarters {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 3 / 4 + var(--helpse-row-gap, 0px) * (3 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 3 / 4 + var(--helpse-row-gap, 0px) * (3 - 1));
}

@media (min-width: 768px) {
  .u-span-m-three-quarters {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 3 / 4 + var(--helpse-row-gap, 0px) * (3 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 3 / 4 + var(--helpse-row-gap, 0px) * (3 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-three-quarters {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 3 / 4 + var(--helpse-row-gap, 0px) * (3 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (4 - 1)) * 3 / 4 + var(--helpse-row-gap, 0px) * (3 - 1));
  }
}

.u-span-fifth {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 1 / 5 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 1 / 5 + var(--helpse-row-gap, 0px) * (1 - 1));
}

.u-span-s-fifth {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 1 / 5 + var(--helpse-row-gap, 0px) * (1 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 1 / 5 + var(--helpse-row-gap, 0px) * (1 - 1));
}

@media (min-width: 768px) {
  .u-span-m-fifth {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 1 / 5 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 1 / 5 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-fifth {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 1 / 5 + var(--helpse-row-gap, 0px) * (1 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 1 / 5 + var(--helpse-row-gap, 0px) * (1 - 1));
  }
}

.u-span-two-fifths {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 2 / 5 + var(--helpse-row-gap, 0px) * (2 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 2 / 5 + var(--helpse-row-gap, 0px) * (2 - 1));
}

.u-span-s-two-fifths {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 2 / 5 + var(--helpse-row-gap, 0px) * (2 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 2 / 5 + var(--helpse-row-gap, 0px) * (2 - 1));
}

@media (min-width: 768px) {
  .u-span-m-two-fifths {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 2 / 5 + var(--helpse-row-gap, 0px) * (2 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 2 / 5 + var(--helpse-row-gap, 0px) * (2 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-two-fifths {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 2 / 5 + var(--helpse-row-gap, 0px) * (2 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 2 / 5 + var(--helpse-row-gap, 0px) * (2 - 1));
  }
}

.u-span-three-fifths {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 3 / 5 + var(--helpse-row-gap, 0px) * (3 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 3 / 5 + var(--helpse-row-gap, 0px) * (3 - 1));
}

.u-span-s-three-fifths {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 3 / 5 + var(--helpse-row-gap, 0px) * (3 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 3 / 5 + var(--helpse-row-gap, 0px) * (3 - 1));
}

@media (min-width: 768px) {
  .u-span-m-three-fifths {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 3 / 5 + var(--helpse-row-gap, 0px) * (3 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 3 / 5 + var(--helpse-row-gap, 0px) * (3 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-three-fifths {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 3 / 5 + var(--helpse-row-gap, 0px) * (3 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 3 / 5 + var(--helpse-row-gap, 0px) * (3 - 1));
  }
}

.u-span-four-fifths {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 4 / 5 + var(--helpse-row-gap, 0px) * (4 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 4 / 5 + var(--helpse-row-gap, 0px) * (4 - 1));
}

.u-span-s-four-fifths {
  flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 4 / 5 + var(--helpse-row-gap, 0px) * (4 - 1));
  max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 4 / 5 + var(--helpse-row-gap, 0px) * (4 - 1));
}

@media (min-width: 768px) {
  .u-span-m-four-fifths {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 4 / 5 + var(--helpse-row-gap, 0px) * (4 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 4 / 5 + var(--helpse-row-gap, 0px) * (4 - 1));
  }
}

@media (min-width: 1024px) {
  .u-span-l-four-fifths {
    flex: 0 0 calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 4 / 5 + var(--helpse-row-gap, 0px) * (4 - 1));
    max-width: calc((100% - var(--helpse-row-gap, 0px) * (5 - 1)) * 4 / 5 + var(--helpse-row-gap, 0px) * (4 - 1));
  }
}

.site-header {
  position: fixed;
  top: 0.75rem;
  left: 0;
  z-index: 1000;
  width: 100%;
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #eb1d8c;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  pointer-events: all;
  width: 95%;
  max-width: 1440px;
  margin: auto;
}
@media (min-width: 1024px) {
  .site-header__inner {
    top: 1rem;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
  }
}

.site-header__brand,
.site-header__nav,
.site-header__cta {
  display: flex;
}
.site-header__brand .btn--header,
.site-header__nav .btn--header,
.site-header__cta .btn--header {
  color: #000;
}

.site-header__brand {
  flex: 1 1 auto;
  justify-content: flex-start;
}

.site-header__logo-wrap {
  display: inline-flex;
  max-width: 180px;
}
.site-header__logo-wrap .custom-logo-link,
.site-header__logo-wrap .custom-logo {
  display: block;
  height: auto;
  max-width: 100%;
}

.site-header__site-name {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-header__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__nav {
  position: fixed;
  inset: 0;
  width: 100vw;
  min-height: 100vh;
  padding: 2rem 1rem 1.5rem;
  background-color: #eb1d8c;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow-y: auto;
}

.site-header.is-menu-open .site-header__nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-header__menu-close {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.site-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.site-header__menu a {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-header__menu a:hover, .site-header__menu a:focus-visible {
  opacity: 0.8;
}

.site-header__mobile-cta {
  padding-top: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.site-header__cta {
  display: none;
}

body.has-mobile-menu-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .site-header {
    top: 1rem;
  }
  .site-header__brand,
  .site-header__nav,
  .site-header__cta {
    width: auto;
    flex: 1 1 0;
  }
  .site-header__toggle,
  .site-header__menu-close,
  .site-header__mobile-cta {
    display: none;
  }
  .site-header__nav {
    position: static;
    inset: auto;
    width: auto;
    min-width: fit-content;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    overflow: visible;
  }
  .site-header__menu {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    text-align: left;
  }
  .site-header__menu a {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
  .site-header__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
body.page-template-page-construcao {
  padding-top: 0;
}

body.page-template-page-home {
  padding-top: 0;
}

.site-footer {
  padding: 2rem 0 1rem;
  background: #f7f7f9;
  color: #6e6e6e;
}

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

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__logo-image {
  width: clamp(180px, 22vw, 240px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(84%) saturate(4385%) hue-rotate(311deg) brightness(94%) contrast(95%);
}

.site-footer__site-name {
  color: #eb1d8c;
  font-weight: 700;
  font-size: 1.5rem;
}

.site-footer__menu,
.site-footer__social-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.site-footer__menu a {
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__menu a:hover, .site-footer__menu a:focus-visible {
  color: #eb1d8c;
}

.site-footer__social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.site-footer__social-list .site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(235, 29, 140, 0.08);
  color: #eb1d8c;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-footer__social-list .site-footer__social-link:hover, .site-footer__social-list .site-footer__social-link:focus-visible {
  background: #eb1d8c;
  color: #fff;
}
.site-footer__social-list .site-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.site-footer__social-list .site-footer__social-icon svg {
  display: block;
  flex: 0 0 auto;
  overflow: visible;
}

.site-footer__bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(110, 110, 110, 0.24);
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 2rem 0 1.5rem;
  }
  .site-footer__top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 1.5rem;
  }
  .site-footer__menu,
  .site-footer__social-list {
    justify-content: flex-start;
  }
  .site-footer__menu a {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
  .site-footer__social {
    margin-left: auto;
  }
  .site-footer__bottom {
    text-align: left;
  }
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 1.75rem;
  background: #eb1d8c;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.btn--header {
  padding: 0.5rem 1rem;
  background: #fff;
  color: #eb1d8c;
  white-space: nowrap;
}

.cards-grid {
  --helpse-row-gap: 1.5rem;
}

.card {
  background: #f7f7f9;
  border-radius: 1.75rem;
  padding: 1.5rem;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section__subtitle {
  max-width: 42ch;
  margin: 0 0 1.5rem;
  color: #6e6e6e;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.5;
}

.site-pointer-accent {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eb1d8c;
  box-shadow: 0 0 0 6px rgba(235, 29, 140, 0.16);
  opacity: 0;
  transform: translate3d(-9999px, -9999px, 0);
  transition: opacity 180ms ease;
  pointer-events: none;
  z-index: 950;
  will-change: transform;
}

.site-pointer-accent.is-visible {
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .site-pointer-accent {
    display: none;
  }
}
.section--hero {
  display: flex;
  align-items: center;
  min-height: clamp(520px, 92vh, 900px);
  background: radial-gradient(circle at top right, #ffd4ed 0%, #fff 45%);
}

.section--cta {
  background: #eb1d8c;
  color: #fff;
}

.section--cta .btn {
  background: #fff;
  color: #eb1d8c;
}

.section--home-hero {
  padding: 0;
}

.home-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 100vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 12vw, 7rem) 1rem 3rem;
  background: linear-gradient(135deg, #2f2824, #181513);
  overflow: hidden;
  isolation: isolate;
}
.home-hero::before, .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 998;
}
.home-hero::before {
  background: rgba(0, 0, 0, 0.7);
}
.home-hero::after {
  background: radial-gradient(circle at top left, rgba(255, 189, 89, 0.16), transparent 28%), radial-gradient(circle at bottom right, rgba(235, 29, 140, 0.16), transparent 26%);
}

.home-hero__media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero__media--mobile {
  display: none;
}

.home-hero__video,
.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media-placeholder {
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(560px, 100% - 2rem);
  height: clamp(180px, 28vw, 320px);
  transform: translate(-50%, -50%);
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 600;
}

.home-hero__content {
  position: relative;
  z-index: 999;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.home-hero__content h1,
.home-hero__content h2,
.home-hero__content p {
  color: #fff;
}
.home-hero__content h1 {
  font-size: clamp(2rem, 8vw, 5.75rem);
  max-width: 15ch;
  margin: 0 auto;
  line-height: 0.98;
}

.home-eyebrow {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
}

.home-hero__subtitle {
  max-width: 40ch;
  font-size: clamp(1.125rem, 3.5vw, 2.1rem);
  margin: 0 auto;
}

.home-hero__description {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.78);
}

.home-hero__actions {
  margin-top: 0.75rem;
}

.btn--home-primary {
  border-radius: 999px;
}

@media (max-width: 781px) {
  .home-hero__media--desktop {
    display: none;
  }
  .home-hero__media--mobile {
    display: block;
  }
}
.section--home-intro-mosaic {
  padding-top: 5rem;
}
@media (min-width: 640px) {
  .section--home-intro-mosaic {
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .section--home-intro-mosaic {
    padding-bottom: 5.5rem;
  }
}

.home-intro-mosaic__panel {
  padding: 2rem 1.25rem;
  border-radius: 1.875rem;
  background: linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.home-intro-mosaic__panel,
.home-intro-mosaic__content,
.home-intro-mosaic__media,
.home-intro-mosaic__card,
.home-intro-mosaic__card-surface {
  min-width: 0;
}

.home-intro-mosaic__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.home-intro-mosaic__content {
  max-width: 35rem;
}

.home-intro-mosaic__eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(28, 28, 28, 0.14);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.56);
}

.home-intro-mosaic__title {
  margin: 1rem 0 0;
  font-size: 2.125rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #1c1c1c;
}

.home-intro-mosaic__description {
  margin: 1.5rem 0 0;
  max-width: 32.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.68);
}

.home-intro-mosaic__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.home-intro-mosaic__card {
  padding: 0.75rem;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.home-intro-mosaic__card-surface {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(28, 28, 28, 0.08);
  background: #f8f8f8;
}

.home-intro-mosaic__card-surface--tall {
  height: 17.5rem;
}

.home-intro-mosaic__card-surface--top,
.home-intro-mosaic__card-surface--bottom {
  height: 10.625rem;
}

.home-intro-mosaic__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 1 auto;
}

.home-intro-mosaic__placeholder {
  width: 100%;
  height: 100%;
}

.home-intro-mosaic__placeholder--tall {
  background: #dfd9d2;
}

.home-intro-mosaic__placeholder--top {
  background: #e9dfbf;
}

.home-intro-mosaic__placeholder--bottom {
  background: #e8c2d9;
}

.home-intro-mosaic__panel {
  padding: 2.5rem 1rem;
  border-radius: 2.25rem;
}

.home-intro-mosaic__eyebrow {
  font-size: 0.75rem;
}

.home-intro-mosaic__title {
  font-size: 2.875rem;
}

.home-intro-mosaic__description {
  font-size: 1.125rem;
}

.home-intro-mosaic__media {
  gap: 1.25rem;
}

.home-intro-mosaic__card {
  border-radius: 1.75rem;
}

.home-intro-mosaic__card-surface {
  border-radius: 1.5rem;
}

.home-intro-mosaic__card-surface--tall {
  height: 21.25rem;
}

.home-intro-mosaic__card-surface--top,
.home-intro-mosaic__card-surface--bottom {
  height: 11.875rem;
}

.home-intro-mosaic__card--top {
  display: none;
}

.home-intro-mosaic__card--bottom {
  display: none;
}

@media (min-width: 768px) {
  .home-intro-mosaic__title {
    font-size: 3.5rem;
  }
  .home-intro-mosaic__card--top {
    display: block;
  }
  .home-intro-mosaic__card--bottom {
    display: block;
  }
}
@media (min-width: 1024px) {
  .home-intro-mosaic__panel {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 3rem;
    align-items: center;
    padding: 3rem 3.5rem;
    border-radius: 2.75rem;
  }
  .home-intro-mosaic__title {
    font-size: 4.75rem;
  }
  .home-intro-mosaic__description {
    font-size: 1.3125rem;
  }
  .home-intro-mosaic__media {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .home-intro-mosaic__card--tall {
    grid-column: 1;
    grid-row: 1/span 2;
  }
  .home-intro-mosaic__card--top {
    grid-column: 2;
    grid-row: 1;
  }
  .home-intro-mosaic__card--bottom {
    grid-column: 2;
    grid-row: 2;
  }
  .home-intro-mosaic__card {
    height: 100%;
  }
  .home-intro-mosaic__card-surface--tall {
    height: 100%;
    min-height: 32.5rem;
  }
  .home-intro-mosaic__card-surface--top,
  .home-intro-mosaic__card-surface--bottom {
    height: 15.625rem;
  }
}
@media (min-width: 1280px) {
  .home-intro-mosaic__panel {
    gap: 4rem;
  }
  .home-intro-mosaic__title {
    font-size: 5.5rem;
  }
  .home-intro-mosaic__eyebrow {
    font-size: 0.8125rem;
  }
}
.section--home-central-message {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-central-message .container {
  max-width: 68.75rem;
  padding-inline: 1rem;
}
.section--home-central-message {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section--home-central-message .container {
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .section--home-central-message {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-central-message .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-central-message .container {
    padding-inline: 3rem;
  }
}

.home-central-message {
  text-align: center;
}

.home-central-message__card {
  padding: 1.5rem 2.5rem;
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.home-central-message__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.5);
}

.home-central-message__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: #1c1c1c;
}

.home-central-message__description {
  margin: 1.5rem auto 0;
  max-width: 50rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.68);
}

.home-central-message__card {
  padding: 2.5rem 3rem;
  border-radius: 2.125rem;
}

.home-central-message__eyebrow {
  font-size: 0.8125rem;
}

.home-central-message__title {
  font-size: 2.25rem;
}

.home-central-message__description {
  font-size: 1.125rem;
}

@media (min-width: 1024px) {
  .home-central-message__card {
    padding: 5rem 4rem;
    border-radius: 2.625rem;
  }
  .home-central-message__title {
    font-size: 3.625rem;
  }
  .home-central-message__description {
    font-size: 1.3125rem;
  }
}
.home-section-title,
.home-section-subtitle {
  text-align: center;
}

.home-section-subtitle {
  max-width: 65ch;
  margin: 0 auto 1.5rem;
  color: #6e6e6e;
}

.home-form-field,
.home-newsletter-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.home-form-field input,
.home-form-field textarea,
.home-newsletter-form__field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dfdde2;
  border-radius: 0.65rem;
  font: inherit;
  background: #fff;
}

.section--home-alert {
  padding-top: 6rem;
}
.section--home-alert .container {
  max-width: none;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .section--home-alert .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-alert .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-alert .container {
    padding-inline: 3rem;
  }
}

.home-alert {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  background: #ffbd59;
  border-radius: 1.75rem;
}

.home-alert__header {
  text-align: center;
  max-width: 61.25rem;
  margin: 0 auto;
}

.home-alert__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.home-alert__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.home-alert-card {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
  padding: 0;
}
.home-alert-card p {
  margin: 0;
}

.home-alert-card__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #eb1d8c;
}

.home-alert-card__value {
  font-size: 2.25rem;
  line-height: 0.96;
  font-weight: 900;
  margin: 0.75rem 0 0;
  letter-spacing: -0.05em;
  color: #1c1c1c;
}

.home-alert-card__text {
  margin-top: 0.5rem;
  max-width: 22.5rem;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(28, 28, 28, 0.8);
}

@media (max-width: calc(1024px - 0.02px)) {
  .home-alert {
    border-radius: 2.125rem;
  }
  .home-alert__grid {
    gap: 1.5rem;
  }
  .home-alert-card {
    padding: 0 0 1.5rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.14);
  }
  .home-alert-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .home-alert {
    padding: 3rem 2rem;
    border-radius: 2.125rem;
  }
  .home-alert-card__label {
    font-size: 0.875rem;
  }
  .home-alert__title {
    font-size: 2.25rem;
  }
  .home-alert-card__value {
    margin-top: 1rem;
    font-size: 2.75rem;
  }
  .home-alert-card__text {
    margin-top: 0.75rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .home-alert {
    padding: 4rem 3.5rem;
    border-radius: 2.625rem;
  }
  .home-alert__title {
    font-size: 3.625rem;
    white-space: nowrap;
  }
  .home-alert__grid {
    margin-top: 3rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
  .home-alert-card {
    padding: 0 2.5rem;
    border-right: 1px solid rgba(28, 28, 28, 0.14);
  }
  .home-alert-card:last-child {
    border-right: 0;
  }
  .home-alert-card__value {
    font-size: 3.25rem;
  }
  .home-alert-card__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 640px) and (max-width: 1023.98px) {
  .home-alert-card {
    padding-inline: 0.75rem;
  }
}
.section--home-steps {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-steps .container {
  max-width: 90rem;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .section--home-steps {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-steps .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-steps {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-steps .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-steps .container {
    padding-inline: 3rem;
  }
}

.home-steps__header {
  max-width: 57.5rem;
  margin: 0 auto;
  text-align: center;
}

.home-steps__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(28, 28, 28, 0.62);
}

.home-steps__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.home-steps__subtitle {
  max-width: 47.5rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.74);
}

.home-steps-grid {
  margin-top: 2.5rem;
  --helpse-row-gap: 1.25rem;
  gap: 1.25rem;
}

.home-steps__actions {
  margin-top: 2rem;
  text-align: center;
}

.home-step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.14);
  border-radius: 2.625rem;
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.05);
}
.home-step-card h3,
.home-step-card p {
  margin: 0;
}

.home-step-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.home-step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  background: #eb1d8c;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 900;
}

.home-step-card__stage {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(28, 28, 28, 0.18);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.6875rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: rgba(28, 28, 28, 0.6);
}

.home-step-card__title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.home-step-card__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.76);
}

@media (min-width: 640px) {
  .home-steps__eyebrow {
    font-size: 0.8125rem;
  }
  .home-steps__title {
    font-size: 2.25rem;
  }
  .home-steps__subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
  .home-steps-grid {
    margin-top: 3rem;
  }
  .home-step-card {
    padding: 1.75rem;
    border-radius: 2.875rem;
  }
  .home-step-card__top {
    gap: 1.5rem;
  }
  .home-step-card__number {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    font-size: 1.375rem;
  }
  .home-step-card__stage {
    font-size: 0.75rem;
  }
  .home-step-card__title {
    margin-top: 1.75rem;
    font-size: 1.75rem;
  }
  .home-step-card__text {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
  }
}
@media (min-width: 1024px) {
  .home-steps__title {
    font-size: 3.875rem;
  }
  .home-steps__subtitle {
    font-size: 1.25rem;
  }
  .home-steps-grid {
    margin-top: 3.5rem;
  }
  .home-step-card {
    padding: 2rem;
    border-radius: 3.125rem;
  }
  .home-step-card__title {
    margin-top: 2rem;
    font-size: 1.875rem;
  }
  .home-step-card__text {
    font-size: 1.125rem;
  }
}
.section--home-press {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-press .container {
  max-width: 90rem;
  padding-inline: 1rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .section--home-press {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-press .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-press {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-press .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-press .container {
    padding-inline: 3rem;
  }
}

.home-press-strip {
  background: #f1eee6;
  overflow: hidden;
  padding: 2.5rem 0;
  --home-press-columns: 1;
}

.home-press-strip__viewport {
  width: 100%;
  overflow: hidden;
}

.home-press-strip__track {
  display: flex;
  overflow: visible;
}

.home-press-strip__slide {
  flex: 0 0 calc(100% / var(--home-press-columns));
  max-width: calc(100% / var(--home-press-columns));
  min-width: 0;
}

.home-press-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  height: 100%;
  padding: 1.5rem;
  border-right: 1px solid rgba(28, 28, 28, 0.12);
  box-sizing: border-box;
}

.home-press-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #1c1c1c;
}

.home-press-card__text {
  margin: 1rem 0 0;
  max-width: 26.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.74);
}

.home-press-card__media {
  margin-top: auto;
  padding-top: 1.5rem;
  min-height: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.home-press-card__image {
  max-width: 11rem;
  max-height: 3rem;
  height: auto;
  width: auto;
  object-fit: contain;
}

.home-press-card__media.is-empty {
  min-height: 3rem;
}

.home-press-strip.is-carousel .home-press-strip__track {
  touch-action: pan-y;
  will-change: transform;
}

.home-press-strip.is-static {
  --home-press-columns: 1;
}

@media (min-width: 640px) {
  .home-press-strip.is-carousel {
    --home-press-columns: 3;
  }
  .home-press-strip.is-static.has-2-items {
    --home-press-columns: 2;
  }
  .home-press-strip.is-static.has-3-items {
    --home-press-columns: 3;
  }
}
@media (min-width: 1024px) {
  .home-press-strip.is-carousel {
    --home-press-columns: 4;
  }
  .home-press-strip.is-static.has-4-items {
    --home-press-columns: 4;
  }
}
@media (min-width: 640px) {
  .home-press-strip {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .home-press-card {
    min-height: 250px;
    padding-inline: 2rem;
  }
  .home-press-card__title {
    font-size: 1.125rem;
  }
  .home-press-card__text {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
  }
}
@media (min-width: 1024px) {
  .home-press-strip {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .home-press-card {
    min-height: 300px;
    padding-inline: 4rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .home-press-strip.is-static .home-press-strip__slide:last-child .home-press-card {
    border-right: 0;
  }
  .home-press-card__title {
    font-size: 1.375rem;
  }
  .home-press-card__text {
    font-size: 1.1875rem;
  }
  .home-press-card__image {
    max-width: 12.5rem;
    max-height: 3.5rem;
  }
  .home-press-strip.is-carousel {
    --home-press-columns: 4;
  }
  .home-press-strip.is-static.has-2-items {
    --home-press-columns: 2;
  }
  .home-press-strip.is-static.has-3-items {
    --home-press-columns: 3;
  }
  .home-press-strip.is-static.has-4-items {
    --home-press-columns: 4;
  }
}
.section--home-blog {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: #f1f1f1;
}
.section--home-blog .container {
  max-width: none;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .section--home-blog {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-blog .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-blog {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-blog .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-blog .container {
    padding-inline: 3rem;
  }
}

.home-blog {
  max-width: 90rem;
  margin: 0 auto;
}

.home-blog__header {
  max-width: 57.5rem;
  margin: 0 auto;
  text-align: center;
}

.home-blog__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.45);
}

.home-blog__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.home-blog__description {
  max-width: 47.5rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.65);
}

.home-blog__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 1.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.home-blog-card__media {
  position: relative;
  height: 16.25rem;
  background: linear-gradient(145deg, #dbcab8, #baa18c);
  overflow: hidden;
}

.home-blog-card__media.is-empty {
  background: #dfd4c8;
}

.home-blog-card__media-empty,
.home-blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
}

.home-blog-card__image {
  object-fit: cover;
}

.home-blog-card__category {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #ffbd59;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-blog-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.125rem 1rem 1.25rem;
}

.home-blog-card__meta {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.38);
}

.home-blog-card__title {
  margin: 0.875rem 0 0;
  font-size: 1.75rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.home-blog-card__excerpt {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(28, 28, 28, 0.64);
}

.home-blog-card__button {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 768px) {
  .home-blog__eyebrow {
    font-size: 0.8125rem;
  }
  .home-blog__title {
    font-size: 2.25rem;
  }
  .home-blog__description {
    font-size: 1.125rem;
  }
  .home-blog__grid {
    gap: 1.5rem;
  }
  .home-blog-card {
    border-radius: 1.875rem;
  }
  .home-blog-card__media {
    height: 18.75rem;
  }
  .home-blog-card__meta {
    font-size: 0.75rem;
  }
  .home-blog-card__title {
    font-size: 1.875rem;
  }
  .home-blog-card__excerpt {
    font-size: 1.0625rem;
  }
}
@media (min-width: 1024px) {
  .home-blog__title {
    font-size: 3.875rem;
  }
  .home-blog__description {
    font-size: 1.25rem;
  }
  .home-blog__grid {
    margin-top: 3rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
  .home-blog-card {
    border-radius: 2.125rem;
  }
  .home-blog-card__title {
    font-size: 2rem;
  }
  .home-blog-card__excerpt {
    font-size: 1.125rem;
  }
}
.section--home-benefits {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-benefits .container {
  max-width: 90rem;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .section--home-benefits {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-benefits .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-benefits {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-benefits .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-benefits .container {
    padding-inline: 3rem;
  }
}

.home-benefits {
  display: grid;
  gap: 1.5rem;
}

.home-benefits__list,
.home-benefits__highlight {
  padding: 1.25rem;
  border-radius: 1.75rem;
}

.home-benefits__list {
  background: #fff9f4;
  border: 1px solid rgba(28, 28, 28, 0.12);
}

.home-benefits__eyebrow,
.home-benefits__pill {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.62);
}

.home-benefits__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.home-benefits__items {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 1.25rem;
}

.home-benefits__check {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: #eb1d8c;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}

.home-benefits__item-text {
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 600;
  color: #1c1c1c;
}

.home-benefits__pill {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 189, 89, 0.35);
}

.home-benefits__highlight-title {
  margin: 1.5rem 0 0;
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.home-benefits__highlight-text {
  margin: 1.5rem 0 0;
  max-width: 33.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.74);
}

@media (min-width: 768px) {
  .home-benefits {
    gap: 2rem;
  }
  .home-benefits__list,
  .home-benefits__highlight {
    padding: 1.75rem;
    border-radius: 2.125rem;
  }
  .home-benefits__eyebrow,
  .home-benefits__pill {
    font-size: 0.8125rem;
  }
  .home-benefits__title {
    font-size: 2.25rem;
  }
  .home-benefits__items {
    margin-top: 2rem;
    gap: 1rem;
  }
  .home-benefits__item {
    gap: 1rem;
    border-radius: 1.375rem;
  }
  .home-benefits__item-text {
    font-size: 1.125rem;
  }
  .home-benefits__highlight-title,
  .home-benefits__highlight-text {
    margin-top: 2rem;
  }
  .home-benefits__highlight-title {
    font-size: 2.625rem;
  }
  .home-benefits__highlight-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .home-benefits {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 2.5rem;
  }
  .home-benefits__list,
  .home-benefits__highlight {
    padding: 3rem;
    border-radius: 2.375rem;
  }
  .home-benefits__title {
    font-size: 3.75rem;
  }
  .home-benefits__item-text {
    font-size: 1.25rem;
  }
  .home-benefits__highlight-title {
    font-size: 4.5rem;
  }
  .home-benefits__highlight-text {
    font-size: 1.3125rem;
  }
}
.section--home-values {
  padding: 3.5rem 1rem;
}
.section--home-values .container {
  max-width: none;
  padding-inline: 0;
}
@media (min-width: 640px) {
  .section--home-values {
    padding: 4rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-values {
    padding: 6rem 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-values {
    padding-inline: 3rem;
  }
}

.home-values {
  max-width: 90rem;
  margin: 0 auto;
  padding: 1.25rem;
  background: rgba(255, 189, 89, 0.36);
  border-radius: 1.75rem;
}

.home-values__header {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.home-values__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.68);
}

.home-values__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.home-values__description {
  max-width: 47.5rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.58;
  color: rgba(28, 28, 28, 0.74);
}

.home-values__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.home-values-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  background: #fbfaf7;
  border: 1px solid rgba(28, 28, 28, 0.11);
  border-radius: 1.5rem;
}

.home-values-card__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  color: #fff;
}

.home-values-card__icon-badge--pink {
  background: #eb1d8c;
}

.home-values-card__icon-badge--dark {
  background: #1f1f1f;
}

.home-values-card__icon-badge--amber {
  background: #ffbd59;
  color: #1f1f1f;
}

.home-values-card__icon-badge--lilac {
  background: #b6a4ff;
}

.home-values-card__icon {
  display: inline-flex;
  line-height: 1;
}
.home-values-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.home-values-card__title {
  margin: 1.25rem 0 0;
  font-size: 1.375rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.home-values-card__text {
  margin: 0.875rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.74);
}

@media (min-width: 640px) {
  .home-values {
    padding: 1.75rem;
    border-radius: 2.125rem;
  }
  .home-values__eyebrow {
    font-size: 0.8125rem;
  }
  .home-values__title {
    font-size: 2.25rem;
  }
  .home-values__description {
    font-size: 1.125rem;
  }
  .home-values__grid {
    margin-top: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .home-values-card {
    padding: 1.5rem;
    border-radius: 1.75rem;
  }
  .home-values-card__icon-badge {
    width: 3.75rem;
    height: 3.75rem;
  }
  .home-values-card__title {
    font-size: 1.5rem;
  }
  .home-values-card__text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .home-values {
    padding: 3rem;
    border-radius: 2.625rem;
  }
  .home-values__title {
    font-size: 3.875rem;
  }
  .home-values__description {
    font-size: 1.25rem;
  }
  .home-values__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home-values-card {
    padding: 1.75rem;
  }
  .home-values-card__title {
    font-size: 1.75rem;
  }
  .home-values-card__text {
    font-size: 1.0625rem;
  }
}
.section--home-programs {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-programs .container {
  max-width: none;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .section--home-programs {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-programs .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-programs {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-programs .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-programs .container {
    padding-inline: 3rem;
  }
}

.home-programs {
  max-width: 90rem;
  margin: 0 auto;
  background: rgba(255, 189, 89, 0.4);
  border-radius: 1.75rem;
}

.home-programs__header {
  max-width: 60rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 0;
  text-align: center;
}

.home-programs__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(28, 28, 28, 0.62);
}

.home-programs__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.home-programs__subtitle {
  max-width: 47.5rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.74);
}

.home-programs-grid {
  margin-top: 2.5rem;
  padding: 0 1.25rem 2.5rem;
  --helpse-row-gap: 1.25rem;
  gap: 1.25rem;
}

.home-program-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 2.5rem;
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.05);
}
.home-program-card h3 {
  margin: 1.5rem 0 0;
  font-size: 1.375rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.home-program-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-program-card__chip {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #eb1d8c;
}

.home-program-card:nth-child(even) .home-program-card__chip {
  background: #ffbd59;
}

.home-program-card__index {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(28, 28, 28, 0.62);
}

.home-program-card__description {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(28, 28, 28, 0.74);
}

.home-program-card__button {
  display: inline-flex;
  margin-top: 1.5rem;
  margin-right: auto;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(28, 28, 28, 0.18);
  border-radius: 999px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(28, 28, 28, 0.86);
}

.home-programs__actions {
  padding: 0 1.25rem 2.5rem;
  text-align: center;
}

.btn--home-programs-cta {
  padding: 0.875rem 1.75rem;
  border: 1px solid rgba(28, 28, 28, 0.2);
  border-radius: 999px;
  background: #fff;
  color: #1c1c1c;
  font-size: 0.9375rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .home-programs {
    border-radius: 2.125rem;
  }
  .home-programs__header {
    padding: 3rem 2rem 0;
  }
  .home-programs__eyebrow {
    font-size: 0.8125rem;
  }
  .home-programs__title {
    font-size: 2.25rem;
  }
  .home-programs__subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
  .home-programs-grid {
    margin-top: 3rem;
    padding-inline: 2rem;
    padding-bottom: 3rem;
    --helpse-row-gap: 1.5rem;
    gap: 1.5rem;
  }
  .home-program-card {
    padding: 1.75rem;
    border-radius: 2.75rem;
  }
  .home-program-card__chip {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
  }
  .home-program-card__index {
    font-size: 0.75rem;
  }
  .home-program-card h3 {
    margin-top: 1.75rem;
    font-size: 1.5rem;
  }
  .home-program-card__description {
    font-size: 1rem;
  }
  .home-program-card__button {
    margin-top: 1.75rem;
  }
  .home-programs__actions {
    padding: 0 2rem 3rem;
  }
  .btn--home-programs-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .home-programs {
    border-radius: 2.625rem;
  }
  .home-programs__header {
    padding: 4rem 3.5rem 0;
  }
  .home-programs__title {
    font-size: 3.875rem;
  }
  .home-programs__subtitle {
    font-size: 1.25rem;
  }
  .home-programs-grid {
    padding-inline: 3.5rem;
    padding-bottom: 4rem;
  }
  .home-program-card {
    padding: 2rem;
    border-radius: 2.875rem;
  }
  .home-program-card h3 {
    margin-top: 2rem;
    font-size: 1.75rem;
  }
  .home-program-card__description {
    font-size: 1.0625rem;
  }
  .home-programs__actions {
    padding: 0 3.5rem 4rem;
  }
}
.section--home-programs-vertical {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-programs-vertical .container {
  max-width: none;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .section--home-programs-vertical {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-programs-vertical .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-programs-vertical {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-programs-vertical .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-programs-vertical .container {
    padding-inline: 3rem;
  }
}

.home-programs-vertical {
  max-width: 90rem;
  margin: 0 auto;
  padding: 2.5rem 0;
  border-radius: 1.75rem;
  background: rgba(255, 189, 89, 0.38);
}

.home-programs-vertical__header {
  max-width: 60rem;
  margin: 0 auto;
  padding-inline: 1.25rem;
  text-align: center;
}

.home-programs-vertical__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(28, 28, 28, 0.62);
}

.home-programs-vertical__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.home-programs-vertical__description {
  max-width: 47.5rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.74);
}

.home-programs-vertical__cards {
  margin-top: 2.5rem;
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-programs-vertical-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.06);
}

.home-programs-vertical-card__media-shell {
  position: relative;
  padding: 0.5rem;
  border-radius: 1rem;
  background: #f4f1ec;
  border: 1px solid rgba(28, 28, 28, 0.08);
  height: 220px;
  overflow: hidden;
}

.home-programs-vertical-card__image,
.home-programs-vertical-card__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
}

.home-programs-vertical-card__image {
  object-fit: cover;
}

.home-programs-vertical-card__image-placeholder {
  background: linear-gradient(180deg, #ece7e1 0%, #e6e1db 100%);
}

.home-programs-vertical-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-programs-vertical-card__accent {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #eb1d8c;
}

.home-programs-vertical-card--accent-pink .home-programs-vertical-card__accent {
  background: #eb1d8c;
}

.home-programs-vertical-card--accent-amber .home-programs-vertical-card__accent {
  background: #ffbd59;
}

.home-programs-vertical-card--accent-violet .home-programs-vertical-card__accent {
  background: #8e6cff;
}

.home-programs-vertical-card__tag {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(28, 28, 28, 0.56);
}

.home-programs-vertical-card__title {
  margin: 1rem 0 0;
  font-size: 1.375rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.home-programs-vertical-card__description {
  margin: 0.875rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.74);
}

.home-programs-vertical-card__button {
  display: inline-flex;
  margin-top: 1.25rem;
  margin-right: auto;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 28, 28, 0.18);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(28, 28, 28, 0.85);
}

@media (min-width: 640px) {
  .home-programs-vertical {
    padding: 3rem 0;
    border-radius: 2.125rem;
  }
  .home-programs-vertical__header {
    padding-inline: 2rem;
  }
  .home-programs-vertical__eyebrow {
    font-size: 0.8125rem;
  }
  .home-programs-vertical__title {
    font-size: 2.25rem;
  }
  .home-programs-vertical__description {
    font-size: 1.125rem;
  }
  .home-programs-vertical__cards {
    margin-top: 3rem;
    padding-inline: 2rem;
    gap: 1.5rem;
  }
  .home-programs-vertical-card {
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 1.75rem;
  }
  .home-programs-vertical-card__image,
  .home-programs-vertical-card__image-placeholder,
  .home-programs-vertical-card__media-shell {
    height: 240px;
  }
  .home-programs-vertical-card__accent {
    width: 3rem;
    height: 3rem;
  }
  .home-programs-vertical-card__tag {
    font-size: 0.75rem;
  }
  .home-programs-vertical-card__title {
    font-size: 1.5rem;
  }
  .home-programs-vertical-card__description {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .home-programs-vertical {
    padding: 4rem 0;
    border-radius: 2.625rem;
  }
  .home-programs-vertical__header {
    padding-inline: 3.5rem;
  }
  .home-programs-vertical__title {
    font-size: 3.875rem;
  }
  .home-programs-vertical__description {
    font-size: 1.25rem;
  }
  .home-programs-vertical__cards {
    padding-inline: 3.5rem;
  }
  .home-programs-vertical-card {
    grid-template-columns: 17.5rem 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1.875rem;
  }
  .home-programs-vertical-card__image,
  .home-programs-vertical-card__image-placeholder,
  .home-programs-vertical-card__media-shell {
    height: 260px;
  }
  .home-programs-vertical-card__title {
    font-size: 2.125rem;
  }
  .home-programs-vertical-card__description {
    font-size: 1.125rem;
  }
}
.section--home-authority {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-authority .container {
  max-width: 90rem;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .section--home-authority {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-authority .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-authority {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-authority .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-authority .container {
    padding-inline: 3rem;
  }
}

.home-authority {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.home-authority__media,
.home-authority__content {
  min-width: 0;
}

.home-authority__media {
  height: 100%;
}

.home-authority__media-shell {
  width: 100%;
  padding: 1rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #f3e5d8 0%, #e7d4c7 100%);
}

.home-authority__media-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 300px;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.home-authority__image-placeholder {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  background: rgba(255, 249, 241, 0.32);
  color: rgba(28, 28, 28, 0.46);
}
.home-authority__image-placeholder span {
  font-size: 0.9375rem;
}

.home-authority__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-authority__content {
  padding: 1.25rem;
}

.home-authority__content .home-authority__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(28, 28, 28, 0.56);
}

.home-authority__content h2 {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.home-authority__content p {
  margin: 1.5rem 0 0;
  max-width: 43.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.68);
}

.home-authority__badges {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

.home-authority__badge {
  min-width: 0;
  padding: 1rem;
  background: #fff9f4;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 1.375rem;
  font-size: 1.125rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .home-authority {
    gap: 2rem;
  }
  .home-authority__media-shell {
    padding: 1.5rem;
    border-radius: 2.25rem;
  }
  .home-authority__media-slot {
    min-height: 420px;
    border-radius: 1.75rem;
  }
  .home-authority__image-placeholder {
    padding: 1.5rem;
  }
  .home-authority__content {
    padding: 1.5rem;
  }
  .home-authority__eyebrow {
    font-size: 0.8125rem;
  }
  .home-authority__content h2 {
    font-size: 2.25rem;
  }
  .home-authority__content p {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
  .home-authority__badges {
    margin-top: 2.5rem;
    gap: 1rem;
  }
  .home-authority__badge {
    padding: 1.25rem;
    border-radius: 1.625rem;
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .home-authority {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 2.5rem;
  }
  .home-authority__media {
    align-self: stretch;
    display: flex;
  }
  .home-authority__media-shell {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 2.25rem;
  }
  .home-authority__media-slot {
    min-height: 0;
    height: 100%;
    flex: 1 1 auto;
    border-radius: 1.875rem;
  }
  .home-authority__image-placeholder {
    min-height: 0;
    height: 100%;
    padding: 2rem;
  }
  .home-authority__content {
    padding: 2rem;
  }
  .home-authority__content h2 {
    font-size: 3.875rem;
  }
  .home-authority__content p {
    font-size: 1.3125rem;
  }
  .home-authority__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-authority__badge {
    font-size: 1.375rem;
  }
}
.section--home-team {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-team .container {
  max-width: none;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .section--home-team {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-team .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-team {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-team .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-team .container {
    padding-inline: 3rem;
  }
}

.home-team {
  max-width: 90rem;
  margin: 0 auto;
}

.home-team__header {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.home-team__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(28, 28, 28, 0.56);
}

.home-team__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.home-team__description {
  max-width: 47.5rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.68);
}

.home-team__rows {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-team__cards-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.home-team-card {
  padding: 1rem;
  background: #f4efea;
  border: 1px solid #e0d8d0;
  border-radius: 1.5rem;
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.06);
}

.home-team-card__media-wrap {
  padding: 0.4375rem;
  border-radius: 1.125rem;
  background: #f0ece8;
}

.home-team-card__media-slot {
  overflow: hidden;
  height: 17.5rem;
  border-radius: 0.9375rem;
  border: 1px solid #d8d7d5;
  background: #ebebeb;
}

.home-team-card__image,
.home-team-card__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.home-team-card__image {
  object-fit: cover;
}

.home-team-card__image-placeholder {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  font-size: 0.875rem;
  color: rgba(28, 28, 28, 0.46);
}

.home-team-card__tag {
  margin: 1.25rem 0 0;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #eb1d8c;
}

.home-team-card__title {
  margin: 0.625rem 0 0;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-team-card__text {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.72);
}

@media (min-width: 640px) {
  .home-team__eyebrow {
    font-size: 0.8125rem;
  }
  .home-team__title {
    font-size: 2.25rem;
  }
  .home-team__description {
    font-size: 1.125rem;
  }
  .home-team__rows {
    margin-top: 3rem;
    gap: 1.5rem;
  }
  .home-team__cards-row {
    gap: 1.5rem;
  }
  .home-team-card {
    padding: 1.25rem;
    border-radius: 1.75rem;
  }
  .home-team-card__media-wrap {
    padding: 0.5rem;
    border-radius: 1.25rem;
  }
  .home-team-card__media-slot {
    height: 20rem;
    border-radius: 1rem;
  }
  .home-team-card__title {
    font-size: 1.75rem;
  }
  .home-team-card__text {
    font-size: 1rem;
  }
  .home-team__cards-row--two,
  .home-team__cards-row--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .home-team__title {
    font-size: 3.875rem;
  }
  .home-team__description {
    font-size: 1.25rem;
  }
  .home-team-card {
    padding: 1.5rem;
  }
  .home-team-card__media-slot {
    height: 21.25rem;
  }
  .home-team-card__text {
    font-size: 1.0625rem;
  }
  .home-team__cards-row--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-team__cards-row--one .home-team-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    column-gap: 1.5rem;
    row-gap: 0;
    align-items: start;
  }
  .home-team__cards-row--one .home-team-card__media-wrap {
    grid-column: 1;
    grid-row: 1/span 3;
  }
  .home-team__cards-row--one .home-team-card__content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: start;
  }
  .home-team__cards-row--one .home-team-card__content > .home-team-card__tag,
  .home-team__cards-row--one .home-team-card__content > .home-team-card__title,
  .home-team__cards-row--one .home-team-card__content > .home-team-card__text {
    margin: 0;
  }
}
.section--home-security {
  padding: 3.5rem 1rem;
}
.section--home-security .container {
  max-width: none;
  padding-inline: 0;
}
@media (min-width: 640px) {
  .section--home-security {
    padding: 4rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-security {
    padding: 6rem 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-security {
    padding-inline: 3rem;
  }
}

.home-security {
  max-width: 90rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.home-security__editorial {
  max-width: 35rem;
}

.home-security__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(28, 28, 28, 0.56);
}

.home-security__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-security__description {
  max-width: 32.5rem;
  margin: 1.5rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.68);
}

.home-security__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.home-security-card {
  padding: 1.5rem;
  min-height: 100%;
  background: #f4efe9;
  border: 1px solid #ddd4cb;
  border-radius: 1.625rem;
  box-shadow: 0 12px 26px rgba(28, 28, 28, 0.05);
}

.home-security-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.home-security-card__badge--pink {
  background: #eb1d8c;
}

.home-security-card__badge--amber {
  background: #ffbd59;
}

.home-security-card__number {
  display: inline-flex;
  line-height: 1;
  margin: 0;
}

.home-security-card__title {
  margin: 1.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-security-card__text {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.7);
}

@media (min-width: 640px) {
  .home-security {
    gap: 2.5rem;
  }
  .home-security__eyebrow {
    font-size: 0.8125rem;
  }
  .home-security__title {
    font-size: 2.375rem;
  }
  .home-security__description {
    font-size: 1.125rem;
  }
  .home-security__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .home-security-card {
    padding: 1.75rem;
    border-radius: 1.875rem;
  }
  .home-security-card__badge {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.375rem;
  }
  .home-security-card__title {
    font-size: 1.75rem;
  }
  .home-security-card__text {
    font-size: 1.0625rem;
  }
}
@media (min-width: 1024px) {
  .home-security {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
  }
  .home-security__title {
    font-size: 4.5rem;
  }
  .home-security__description {
    font-size: 1.25rem;
  }
  .home-security-card {
    min-height: 15rem;
  }
  .home-security-card__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1280px) {
  .home-security {
    gap: 3rem;
  }
}
.section--home-feature-slider {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-feature-slider .container {
  max-width: 90rem;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .section--home-feature-slider {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-feature-slider .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-feature-slider {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-feature-slider .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-feature-slider .container {
    padding-inline: 3rem;
  }
}

.home-feature-slider {
  position: relative;
  padding: 1rem;
  background: #f2eee5;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 1.75rem;
  box-shadow: 0 18px 38px rgba(28, 28, 28, 0.06);
}

.home-feature-slider__shell {
  position: relative;
}

.home-feature-slider__viewport {
  overflow: hidden;
}

.home-feature-slider__track {
  display: flex;
  touch-action: pan-y;
}

.home-feature-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.home-feature-slider__slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.home-feature-slider__media-shell {
  min-width: 0;
}

.home-feature-slider__media-frame {
  padding: 0.4rem;
  border-radius: 1.75rem;
  background: linear-gradient(140deg, #2a2420 0%, #4a352c 55%, #610d3b 100%);
}

.home-feature-slider__media-inner {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #e8e4db;
  aspect-ratio: 4/3;
}

.home-feature-slider__image,
.home-feature-slider__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.home-feature-slider__image {
  object-fit: cover;
}

.home-feature-slider__image-placeholder {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(220, 214, 201, 0.88));
}

.home-feature-slider__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.home-feature-slider__ui {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.home-feature-slider__counter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #ff5a36;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #1c1c1c;
}

.home-feature-slider__copy {
  min-width: 0;
}

.home-feature-slider__title {
  margin: 0;
  font-size: clamp(1.75rem, 9vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  padding-top: 3rem;
}

.home-feature-slider__text {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.66);
}

.home-feature-slider__controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-feature-slider__controls--bullets {
  justify-content: flex-start;
}

.home-feature-slider__controls--arrows {
  justify-content: flex-end;
}

.home-feature-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.home-feature-slider__dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cac6c0;
  transition: width 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.home-feature-slider__dot.is-active {
  width: 2.2rem;
  background: #ff5a36;
}

.home-feature-slider__arrows {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.home-feature-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(28, 28, 28, 0.08);
  background: #fff;
  box-shadow: 0 10px 20px rgba(28, 28, 28, 0.08);
  color: #1c1c1c;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.home-feature-slider__arrow:disabled {
  opacity: 0.5;
  cursor: default;
}

@media (min-width: 640px) {
  .home-feature-slider {
    padding: 1.25rem;
    border-radius: 2.125rem;
  }
  .home-feature-slider__slide-inner {
    gap: 1.5rem;
  }
  .home-feature-slider__media-frame {
    padding: 0.5rem;
  }
  .home-feature-slider__title {
    font-size: 2.5rem;
  }
  .home-feature-slider__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .home-feature-slider {
    padding: 1.875rem;
    border-radius: 2.625rem;
  }
  .home-feature-slider__slide-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    align-items: stretch;
    gap: 2rem;
  }
  .home-feature-slider__media-frame {
    padding: 0.625rem;
    border-radius: 2.25rem;
  }
  .home-feature-slider__media-inner {
    border-radius: 1.9rem;
  }
  .home-feature-slider__content {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    gap: 1.25rem;
  }
  .home-feature-slider__shell {
    --feature-slider-gap: 2rem;
    --feature-slider-right-column-ratio: 0.86;
    --feature-slider-left-column-ratio: 1;
  }
  .home-feature-slider__ui {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc((100% - var(--feature-slider-gap)) * var(--feature-slider-left-column-ratio) / (var(--feature-slider-left-column-ratio) + var(--feature-slider-right-column-ratio)) + var(--feature-slider-gap));
    padding: 0.5rem 0.25rem;
    margin-top: 0;
    pointer-events: none;
    z-index: 2;
  }
  .home-feature-slider__controls,
  .home-feature-slider__dot,
  .home-feature-slider__arrow {
    pointer-events: auto;
  }
  .home-feature-slider__counter-badge {
    font-size: 1rem;
    padding: 0.45rem 0.95rem;
  }
  .home-feature-slider__title {
    font-size: 4rem;
  }
  .home-feature-slider__text {
    font-size: 1.25rem;
  }
  .home-feature-slider__arrow {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.section--home-editorial-split {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .section--home-editorial-split {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .section--home-editorial-split {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.home-editorial-split {
  padding: 1.25rem;
  border-radius: 1.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.home-editorial-split__intro {
  max-width: 56.25rem;
  margin-inline: auto;
  text-align: center;
}

.home-editorial-split__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.68);
}

.home-editorial-split__main-title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.home-editorial-split__intro-text {
  margin: 1.25rem auto 0;
  max-width: 50rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.74);
}

.home-editorial-split__split {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.home-editorial-split__media-shell {
  padding: 0.75rem;
  border-radius: 1.5rem;
  background: #FFF9F4;
}

.home-editorial-split__image,
.home-editorial-split__image-placeholder {
  display: block;
  width: 100%;
  height: 17.5rem;
  border-radius: 1rem;
}

.home-editorial-split__image {
  object-fit: cover;
}

.home-editorial-split__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(28, 28, 28, 0.18);
  color: rgba(28, 28, 28, 0.58);
  font-size: 0.875rem;
}

.home-editorial-split__card {
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: #F7F3EE;
}

.home-editorial-split__card-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.home-editorial-split__card-text {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.74);
}

@media (min-width: 768px) {
  .home-editorial-split {
    padding: 1.75rem;
    border-radius: 2.125rem;
  }
  .home-editorial-split__eyebrow {
    font-size: 0.8125rem;
  }
  .home-editorial-split__main-title {
    font-size: 2.25rem;
  }
  .home-editorial-split__intro-text {
    font-size: 1.125rem;
  }
  .home-editorial-split__split {
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
  .home-editorial-split__media-shell {
    border-radius: 1.75rem;
  }
  .home-editorial-split__image,
  .home-editorial-split__image-placeholder {
    height: 21.25rem;
    border-radius: 1.25rem;
  }
  .home-editorial-split__card {
    padding: 1.5rem;
    border-radius: 1.75rem;
  }
  .home-editorial-split__card-title {
    font-size: 1.75rem;
  }
  .home-editorial-split__card-text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .home-editorial-split {
    padding: 3rem;
    border-radius: 2.625rem;
  }
  .home-editorial-split__main-title {
    font-size: 3.625rem;
  }
  .home-editorial-split__intro-text {
    font-size: 1.25rem;
  }
  .home-editorial-split__split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
  }
  .home-editorial-split__image,
  .home-editorial-split__image-placeholder {
    height: 26.25rem;
  }
  .home-editorial-split__card {
    padding: 1.75rem;
  }
  .home-editorial-split__card-title {
    font-size: 2.125rem;
  }
  .home-editorial-split__card-text {
    font-size: 1.125rem;
  }
}
.section--home-quote {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.section--home-quote .container {
  max-width: 90rem;
  padding-inline: 1rem;
}

.home-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.25rem;
  background: #fff3d8;
  border-radius: 1.75rem;
}

.home-quote__intro {
  min-width: 0;
}

.home-quote__eyebrow {
  margin: 0;
  font-size: 0.675rem;
  color: color-mix(in oklab, #000 45%, transparent);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.62);
}

.home-quote__intro h2 {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.home-quote__subtitle {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.74);
}

.home-quote__items {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.home-quote__items li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(28, 28, 28, 0.92);
}

.home-quote__items li::before {
  content: "";
  flex: 0 0 0.625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #eb1d8c;
}

.home-quote__form-wrap {
  padding: 1.25rem;
  background: #fff;
  border-radius: 1.75rem;
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.08);
}

.helpsi-budget-form,
.helpsi-budget-form .wpcf7,
.helpsi-budget-form .wpcf7-form {
  min-width: 0;
}

.home-quote-form .helpsi-budget-form .wpcf7-form {
  display: block;
  margin: 0;
}

.home-quote-form .helpsi-budget-form .wpcf7-form > p {
  margin: 0;
}

.home-quote-form .helpsi-budget-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.home-quote-form .helpsi-budget-form__field,
.home-quote-form .helpsi-budget-form__actions {
  min-width: 0;
  margin: 0;
}

.home-quote-form .helpsi-budget-form__field {
  display: block;
}
.home-quote-form .helpsi-budget-form__field p {
  margin: 0px;
}

.home-quote-form .helpsi-budget-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}

.home-quote-form .helpsi-budget-form__field--full,
.home-quote-form .helpsi-budget-form__actions {
  grid-column: 1/-1;
}

.home-quote-form .helpsi-budget-form .wpcf7-form > p {
  min-width: 0;
}

.home-quote-form .helpsi-budget-form .wpcf7-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
}

.home-quote-form .helpsi-budget-form .wpcf7-form > p:last-of-type {
  margin-top: 0.5rem;
}

.helpsi-budget-form :is(input, textarea, select) {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(28, 28, 28, 0.16);
  border-radius: 1rem;
  background: #fff;
  font: inherit;
  color: #1c1c1c;
  box-sizing: border-box;
}

.helpsi-budget-form textarea {
  height: 7.813rem;
  min-height: 7.813rem;
  resize: vertical;
}

.helpsi-budget-form :is(input, textarea, select)::placeholder {
  color: rgba(28, 28, 28, 0.5);
}

.helpsi-budget-form .wpcf7-not-valid-tip {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
}

.helpsi-budget-form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}

.helpsi-budget-form .wpcf7-spinner {
  display: none;
  margin: 0.5rem 0 0;
}

.home-quote-form .helpsi-budget-form__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.home-quote-form .helpsi-budget-form__actions p {
  margin: 0px;
}

.helpsi-budget-form .wpcf7-submit,
.helpsi-budget-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin: 0.5rem 0 0;
  padding: 0.95rem 1.75rem;
  border: 0;
  border-radius: 999px;
  background: #eb1d8c;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(235, 29, 140, 0.22);
}

@media (min-width: 768px) {
  .section--home-quote {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--home-quote .container {
    padding-inline: 1.5rem;
  }
  .home-quote {
    padding: 1.75rem;
    border-radius: 2.125rem;
  }
  .home-quote__intro h2 {
    font-size: 2.25rem;
  }
  .home-quote__subtitle {
    font-size: 1.125rem;
  }
  .home-quote__items li {
    font-size: 1.0625rem;
  }
  .home-quote__form-wrap {
    padding: 1.5rem;
    border-radius: 2rem;
  }
}
@media (min-width: 1024px) {
  .section--home-quote {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--home-quote .container {
    padding-inline: 2.5rem;
  }
  .home-quote {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: stretch;
    gap: 2.5rem;
    padding: 3rem;
    border-radius: 2.625rem;
  }
  .home-quote__intro h2 {
    font-size: 3.625rem;
    padding-right: 5rem;
  }
  .home-quote__subtitle {
    font-size: 1.25rem;
  }
  .home-quote__form-wrap {
    padding: 2rem;
    border-radius: 2.125rem;
  }
  .home-quote-form .helpsi-budget-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.5rem;
    row-gap: 0.5rem;
  }
  .home-quote-form .helpsi-budget-form .wpcf7-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.5rem;
    row-gap: 0.5rem;
  }
  .home-quote-form .helpsi-budget-form .wpcf7-form > p:nth-child(7),
  .home-quote-form .helpsi-budget-form .wpcf7-form > p:nth-child(8),
  .home-quote-form .helpsi-budget-form .wpcf7-form > p:nth-child(9) {
    grid-column: 1/-1;
  }
}
@media (min-width: 1280px) {
  .section--home-quote .container {
    padding-inline: 3rem;
  }
}
.section--home-final-combined {
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}
.section--home-final-combined .container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .section--home-final-combined {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }
  .section--home-final-combined .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-final-combined {
    padding-top: 2.5rem;
    padding-bottom: 6rem;
  }
  .section--home-final-combined .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-final-combined .container {
    padding-inline: 3rem;
  }
}

.home-final-combined {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid #ebe6e0;
  background: #fff;
}
@media (min-width: 768px) {
  .home-final-combined {
    border-radius: 2.125rem;
  }
}
@media (min-width: 1024px) {
  .home-final-combined {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    border-radius: 2.625rem;
  }
}

.home-final-combined__newsletter {
  min-width: 0;
  width: 100%;
  align-self: stretch;
  padding: 1.25rem;
  background: #fff7e2;
  border-bottom: 1px solid #ebe6e0;
}
@media (min-width: 768px) {
  .home-final-combined__newsletter {
    padding: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .home-final-combined__newsletter {
    padding: 2.5rem;
    border-bottom: 0;
    border-right: 1px solid #ebe6e0;
  }
}

.home-final-combined__cta {
  position: relative;
  min-width: 0;
  width: 100%;
  align-self: stretch;
  padding: 1.25rem 1.25rem 2rem;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-color: #2a2420;
  background-image: var(--home-final-cta-image, none), radial-gradient(circle at top left, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 34%), radial-gradient(circle at bottom right, rgba(235, 29, 140, 0.14) 0%, rgba(235, 29, 140, 0) 30%), linear-gradient(140deg, #4f443d 0%, #322b27 52%, #1f1a18 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-final-combined__cta {
    padding: 1.75rem 1.75rem 2.25rem;
    min-height: 360px;
  }
}
@media (min-width: 1024px) {
  .home-final-combined__cta {
    padding: 3rem;
    min-height: 460px;
  }
}
.home-final-combined__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.55) 55%, rgba(8, 8, 8, 0.42) 100%);
  pointer-events: none;
}
.home-final-combined__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(7, 7, 7, 0.4) 100%);
  pointer-events: none;
}

.home-final-combined__cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: #fff;
}

.home-final-combined__eyebrow, .home-final-bullets__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.72);
}
@media (min-width: 768px) {
  .home-final-combined__eyebrow, .home-final-bullets__eyebrow {
    font-size: 0.8125rem;
  }
}

.home-final-combined__eyebrow--light {
  color: rgba(255, 255, 255, 0.76);
}

.home-final-combined__newsletter-title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #111;
}
@media (min-width: 768px) {
  .home-final-combined__newsletter-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .home-final-combined__newsletter-title {
    font-size: 2.75rem;
  }
}

.home-final-combined__newsletter-text {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.76);
}
@media (min-width: 768px) {
  .home-final-combined__newsletter-text {
    font-size: 1.125rem;
  }
}

.home-newsletter-form--final {
  margin-top: 2rem;
  width: 100%;
  gap: 0.75rem;
}
.home-newsletter-form--final .home-newsletter-form__field {
  gap: 0;
  margin: 0;
  font-size: 0;
}
.home-newsletter-form--final .home-newsletter-form__field input {
  padding: 0.75rem 1rem;
  border-color: #ddd6cf;
  border-radius: 0.8rem;
  font-size: 1rem;
  line-height: 1.2;
}
.home-newsletter-form--final .home-newsletter-form__field input::placeholder {
  color: rgba(28, 28, 28, 0.48);
}

.home-final-combined__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-newsletter-form__button,
.btn--home-final {
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 700;
}

.home-newsletter-form__button {
  width: 100%;
  padding-block: 0.85rem;
  background: #eb1d8c;
  color: #fff;
  border: 0px;
}

.btn--home-final {
  margin-top: 1.75rem;
  background: #fff;
  color: #1c1c1c;
  padding: 0.85rem 1.5rem;
}
@media (min-width: 768px) {
  .btn--home-final {
    margin-top: 2rem;
  }
}

.home-final-combined__cta-title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}
@media (min-width: 768px) {
  .home-final-combined__cta-title {
    font-size: 2.375rem;
  }
}
@media (min-width: 1024px) {
  .home-final-combined__cta-title {
    font-size: 3.875rem;
  }
}

.home-final-combined__cta-text {
  margin: 1.25rem 0 0;
  max-width: 35rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .home-final-combined__cta-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .home-final-combined__cta-text {
    font-size: 1.25rem;
  }
}

.home-final-combined__newsletter-embed {
  margin-top: 2rem;
}
.home-final-combined__newsletter-embed form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-final-combined__embed-preview {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(28, 28, 28, 0.28);
  font-size: 0.9rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.7);
}
.home-final-combined__embed-preview.is-empty {
  color: rgba(28, 28, 28, 0.7);
}

.section--home-final-bullets {
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}
.section--home-final-bullets .container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .section--home-final-bullets {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }
  .section--home-final-bullets .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--home-final-bullets {
    padding-top: 2.5rem;
    padding-bottom: 6rem;
  }
  .section--home-final-bullets .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--home-final-bullets .container {
    padding-inline: 3rem;
  }
}

.home-final-bullets {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid #ebe6e0;
  background: #fff;
}
@media (min-width: 768px) {
  .home-final-bullets {
    border-radius: 2.125rem;
  }
}
@media (min-width: 1024px) {
  .home-final-bullets {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    border-radius: 2.625rem;
  }
}

.home-final-bullets__left {
  min-width: 0;
  width: 100%;
  align-self: stretch;
  padding: 1.25rem;
  background: #fff7e2;
  border-bottom: 1px solid #ebe6e0;
}
@media (min-width: 768px) {
  .home-final-bullets__left {
    padding: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .home-final-bullets__left {
    padding: 2.5rem;
    border-bottom: 0;
    border-right: 1px solid #ebe6e0;
  }
}

.home-final-bullets__left-title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #111;
}
@media (min-width: 768px) {
  .home-final-bullets__left-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .home-final-bullets__left-title {
    font-size: 3rem;
  }
}

.home-final-bullets__left-text {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(28, 28, 28, 0.76);
}
@media (min-width: 768px) {
  .home-final-bullets__left-text {
    font-size: 1.125rem;
  }
}

.home-final-bullets__items {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .home-final-bullets__items {
    gap: 1rem;
  }
}

.home-final-bullets__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
}

.home-final-bullets__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #eb1d8c;
  flex: 0 0 0.75rem;
}

.home-final-bullets__item-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(28, 28, 28, 0.94);
}

.section--programas-archive-intro {
  padding-top: 3rem;
  padding-bottom: 0;
}

.programas-archive__header {
  padding-inline: 0;
}

.section--programas-archive-cards {
  padding-top: 2rem;
}

.section--programas-archive-cards .home-programs {
  padding-top: 2.5rem;
}

.programas-empty {
  margin: 0;
  padding: 0 1.25rem 2.5rem;
  font-size: 1rem;
  color: rgba(28, 28, 28, 0.74);
}

.section--programa-single {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.programa-single {
  max-width: 52rem;
  margin: 0 auto;
}

.programa-single__tag {
  display: inline-flex;
  margin: 0;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(28, 28, 28, 0.18);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.62);
}

.programa-single__title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.programa-single__media {
  margin: 2rem 0 0;
}

.programa-single__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2.5rem;
}

.programa-single__content {
  margin-top: 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.programa-single__actions {
  margin-top: 2rem;
}

.post-archive-page {
  background: #f7f3ee;
  padding-top: 5.5rem;
}

.section--post-archive-featured .container,
.section--post-archive-list .container,
.section--post-archive-final-cta .container {
  max-width: 1440px;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .section--post-archive-featured .container,
  .section--post-archive-list .container,
  .section--post-archive-final-cta .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--post-archive-featured .container,
  .section--post-archive-list .container,
  .section--post-archive-final-cta .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--post-archive-featured .container,
  .section--post-archive-list .container,
  .section--post-archive-final-cta .container {
    padding-inline: 3rem;
  }
}

.section--post-archive-featured {
  padding-top: 3.5rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .section--post-archive-featured {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .section--post-archive-featured {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }
}

.post-archive-featured-intro {
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
}

.post-archive-featured-intro__eyebrow,
.post-archive-filter__eyebrow,
.post-archive-final-cta__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.45);
}
@media (min-width: 768px) {
  .post-archive-featured-intro__eyebrow,
  .post-archive-filter__eyebrow,
  .post-archive-final-cta__eyebrow {
    font-size: 0.8125rem;
  }
}

.post-archive-featured-intro__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
@media (min-width: 768px) {
  .post-archive-featured-intro__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .post-archive-featured-intro__title {
    font-size: 3.75rem;
  }
}

.post-archive-featured {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 1.875rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .post-archive-featured {
    border-radius: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .post-archive-featured {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    border-radius: 2.625rem;
  }
}

.post-archive-featured__media {
  position: relative;
  min-height: 20rem;
}
.post-archive-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.08) 0%, rgba(16, 16, 16, 0.4) 100%);
  pointer-events: none;
}

.post-archive-featured__image,
.post-archive-featured__media-empty {
  display: block;
  width: 100%;
  height: 100%;
}

.post-archive-featured__image {
  object-fit: cover;
}

.post-archive-featured__media-empty {
  background: linear-gradient(130deg, #d8d2cb, #bbb4ad);
}

.post-archive-featured__content {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .post-archive-featured__content {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .post-archive-featured__content {
    padding: 2.5rem 3rem;
  }
}

.post-archive-featured__category,
.post-archive-card__category {
  display: inline-flex;
  margin: 0;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #ffbd59;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-archive-featured__meta,
.post-archive-card__meta {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.62);
}

.post-archive-featured__title {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 4vw, 3.125rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.post-archive-featured__author,
.post-archive-featured__helper {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: rgba(28, 28, 28, 0.74);
}

.post-archive-featured__excerpt {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.78);
}

.post-archive-featured__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.post-archive-featured__secondary {
  display: inline-flex;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 28, 28, 0.2);
  background: #fff;
  color: rgba(28, 28, 28, 0.88);
  font-weight: 700;
}

.section--post-archive-list {
  padding-top: 0;
  padding-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .section--post-archive-list {
    padding-bottom: 2rem;
  }
}

.post-archive-filter {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(28, 28, 28, 0.08);
  background: #f4efe9;
}
@media (min-width: 1024px) {
  .post-archive-filter {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.post-archive-filter__intro {
  flex: 1 1 auto;
  min-width: 0;
}

.post-archive-filter__title {
  margin: 0.9rem 0 0;
  max-width: 56rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(28, 28, 28, 0.78);
}

.post-archive-filter__chips-wrap {
  display: flex;
}
@media (min-width: 1024px) {
  .post-archive-filter__chips-wrap {
    flex: 0 0 auto;
    margin-left: auto;
    justify-content: flex-end;
  }
}

.post-archive-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
@media (min-width: 1024px) {
  .post-archive-filter__chips {
    justify-content: flex-end;
  }
}

.post-archive-filter__chip {
  display: inline-flex;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 28, 28, 0.16);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(28, 28, 28, 0.85);
  text-decoration: none;
}
.post-archive-filter__chip.is-active {
  background: #eb1d8c;
  border-color: #eb1d8c;
  color: #fff;
}

.post-archive-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .post-archive-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .post-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .post-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.post-archive-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.08);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .post-archive-card {
    border-radius: 1.875rem;
  }
}

.post-archive-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-archive-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 30%, rgba(13, 13, 13, 0.35) 100%);
  pointer-events: none;
}

.post-archive-card__image,
.post-archive-card__media-empty {
  display: block;
  width: 100%;
  height: 100%;
}

.post-archive-card__image {
  object-fit: cover;
}

.post-archive-card__media-empty {
  background: linear-gradient(130deg, #ddd7d0, #bdb6af);
}

.post-archive-card__category {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.post-archive-card__content {
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .post-archive-card__content {
    padding: 1.5rem;
  }
}

.post-archive-card__title {
  margin: 0.9rem 0 0;
  font-size: 1.5rem;
  line-height: 1.03;
  letter-spacing: -0.028em;
  font-weight: 900;
}
@media (min-width: 768px) {
  .post-archive-card__title {
    font-size: 1.75rem;
  }
}

.post-archive-card__excerpt {
  margin: 0.85rem 0 0;
  font-size: 0.96875rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.76);
}

.post-archive-card__button {
  margin-top: 1.25rem;
  border-radius: 999px;
}

.post-archive-empty {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(28, 28, 28, 0.12);
  background: #fff;
  color: rgba(28, 28, 28, 0.7);
}

.post-archive-pagination {
  margin-top: 1.5rem;
  padding: 0.75rem;
  border-radius: 1.375rem;
  border: 1px solid rgba(28, 28, 28, 0.1);
  background: #f6f0eb;
}

.post-archive-pagination__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-archive-pagination__item .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 28, 28, 0.16);
  background: #fff;
  color: rgba(28, 28, 28, 0.86);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.post-archive-pagination__item .current {
  background: #eb1d8c;
  border-color: #eb1d8c;
  color: #fff;
}
.post-archive-pagination__item.is-prev {
  margin-right: auto;
}
.post-archive-pagination__item.is-next {
  margin-left: auto;
}

.section--post-archive-final-cta {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .section--post-archive-final-cta {
    padding-top: 1rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .section--post-archive-final-cta {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
}

.post-archive-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.08);
  background: #fff;
}
@media (min-width: 768px) {
  .post-archive-final-cta {
    border-radius: 2.125rem;
  }
}
@media (min-width: 1024px) {
  .post-archive-final-cta {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    border-radius: 2.625rem;
  }
}

.post-archive-final-cta__left {
  padding: 1.25rem;
  background: #fff7e2;
}
@media (min-width: 768px) {
  .post-archive-final-cta__left {
    padding: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .post-archive-final-cta__left {
    padding: 2.5rem;
  }
}

.post-archive-final-cta__right {
  position: relative;
  padding: 1.25rem;
  background-image: url("../../assets/image/pessoas.jpeg");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
}
@media (min-width: 768px) {
  .post-archive-final-cta__right {
    padding: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .post-archive-final-cta__right {
    padding: 3rem;
  }
}
.post-archive-final-cta__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.55) 55%, rgba(8, 8, 8, 0.42) 100%);
}
.post-archive-final-cta__right > * {
  position: relative;
  z-index: 1;
}

.post-archive-final-cta__title {
  margin: 1rem 0 0;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
}
@media (min-width: 1024px) {
  .post-archive-final-cta__title {
    font-size: 2.75rem;
  }
}

.post-archive-final-cta__title--light,
.post-archive-final-cta__text--light {
  color: #fff;
}

.post-archive-final-cta__text {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.58;
  color: rgba(28, 28, 28, 0.76);
}

.post-archive-final-cta__text--light {
  color: rgba(255, 255, 255, 0.9);
}

.post-archive-final-cta__eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.post-archive-final-cta__bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.post-archive-final-cta__bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(28, 28, 28, 0.82);
}
.post-archive-final-cta__bullets li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #eb1d8c;
  flex-shrink: 0;
}

.single-post-page {
  background: #f7f3ee;
  padding-top: 5.5rem;
}

.section--single-post-hero .container,
.section--single-post-shell .container,
.section--single-post-more .container {
  max-width: 1440px;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .section--single-post-hero .container,
  .section--single-post-shell .container,
  .section--single-post-more .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section--single-post-hero .container,
  .section--single-post-shell .container,
  .section--single-post-more .container {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .section--single-post-hero .container,
  .section--single-post-shell .container,
  .section--single-post-more .container {
    padding-inline: 3rem;
  }
}

.section--single-post-hero {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section--single-post-hero {
    padding-top: 4rem;
  }
}
@media (min-width: 1024px) {
  .section--single-post-hero {
    padding-top: 5rem;
  }
}

.single-post-hero {
  border-radius: 1.75rem;
  padding: 2rem 1.25rem;
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 42%), radial-gradient(circle at bottom right, rgba(235, 29, 140, 0.2) 0%, rgba(235, 29, 140, 0) 42%), linear-gradient(140deg, #4f443d 0%, #322b27 52%, #1f1a18 100%);
}
@media (min-width: 768px) {
  .single-post-hero {
    border-radius: 2.125rem;
    padding: 2.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .single-post-hero {
    border-radius: 2.625rem;
    padding: 3.5rem 3rem;
  }
}

.single-post-hero__intro {
  max-width: 61.25rem;
}

.single-post-hero__eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
}

.single-post-hero__title {
  margin: 1rem 0 0;
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #fff;
}
@media (min-width: 768px) {
  .single-post-hero__title {
    font-size: 2.875rem;
  }
}
@media (min-width: 1024px) {
  .single-post-hero__title {
    font-size: 4.625rem;
  }
}

.single-post-hero__author {
  display: inline-flex;
  margin: 1.5rem 0 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.875rem;
  font-weight: 600;
}

.section--single-post-shell {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.single-post-shell {
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid rgba(28, 28, 28, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  background: #fff;
}
@media (min-width: 768px) {
  .single-post-shell {
    border-radius: 2.125rem;
  }
}
@media (min-width: 1024px) {
  .single-post-shell {
    border-radius: 2.625rem;
  }
}

.single-post-media {
  position: relative;
  height: 16.25rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .single-post-media {
    height: 23.75rem;
  }
}
@media (min-width: 1024px) {
  .single-post-media {
    height: 35rem;
  }
}
.single-post-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.08) 0%, rgba(16, 16, 16, 0.32) 100%);
  pointer-events: none;
}

.single-post-media__image,
.single-post-media__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.single-post-media__image {
  object-fit: cover;
}

.single-post-media__placeholder {
  background: linear-gradient(130deg, #d8d2cb, #bbb4ad);
}

.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  padding: 1.5rem 1.25rem 2rem;
}
@media (min-width: 768px) {
  .single-post-layout {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-post-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(16rem, 0.3fr);
    gap: 2rem;
    padding: 2.5rem 3rem;
  }
}

.single-post-content {
  max-width: 47.5rem;
}

.single-post-content .entry-content > p:first-child {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.88);
}

.single-post-content .entry-content p {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(28, 28, 28, 0.84);
}

.single-post-content .entry-content h2,
.single-post-content .entry-content h3 {
  margin: 2rem 0 1rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.single-post-content .entry-content h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 900;
}

.single-post-content .entry-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
}

.single-post-content .entry-content ul,
.single-post-content .entry-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.single-post-content .entry-content li {
  margin-bottom: 0.45rem;
  line-height: 1.7;
}

.single-post-content .entry-content blockquote {
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 3px solid rgba(235, 29, 140, 0.5);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(28, 28, 28, 0.8);
}

.single-post-content .entry-content figure,
.single-post-content .entry-content .wp-block-image {
  margin: 1.75rem 0;
}

.single-post-content .entry-content img {
  border-radius: 1rem;
  height: auto;
}

@media (min-width: 1024px) {
  .single-post-sidebar {
    position: sticky;
    top: 7rem;
    height: fit-content;
  }
}

.single-post-sidebar__card {
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(28, 28, 28, 0.08);
  background: #fff7e2;
}
@media (min-width: 768px) {
  .single-post-sidebar__card {
    padding: 1.5rem;
    border-radius: 1.75rem;
  }
}

.single-post-sidebar__eyebrow,
.single-post-newsletter__eyebrow,
.single-post-more__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.58);
}

.single-post-sidebar__title {
  margin: 0.9rem 0 0;
  font-size: 1.625rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.single-post-sidebar__text,
.single-post-newsletter__text,
.single-post-more__text {
  margin: 1rem 0 0;
  font-size: 0.96875rem;
  line-height: 1.62;
  color: rgba(28, 28, 28, 0.76);
}

.single-post-newsletter {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(28, 28, 28, 0.08);
  background: #fff;
}

.single-post-newsletter__title {
  margin: 0.8rem 0 0;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.single-post-newsletter__form {
  margin-top: 1rem;
}

.single-post-newsletter__field-group {
  margin-top: 1rem;
  width: 100%;
}
.single-post-newsletter__field-group:first-child {
  margin-top: 0;
}
.single-post-newsletter__field-group label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.55);
}
.single-post-newsletter__field-group .asterisk {
  color: #eb1d8c;
}
.single-post-newsletter__field-group input[type=text],
.single-post-newsletter__field-group input[type=email] {
  width: 100%;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.875rem 1.125rem;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 999px;
  background: #f7f3ee;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #111;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.single-post-newsletter__field-group input[type=text]::placeholder,
.single-post-newsletter__field-group input[type=email]::placeholder {
  color: rgba(28, 28, 28, 0.42);
}
.single-post-newsletter__field-group input[type=text]:focus,
.single-post-newsletter__field-group input[type=email]:focus {
  border-color: rgba(235, 29, 140, 0.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(235, 29, 140, 0.08);
}

.single-post-newsletter__field-error {
  display: none;
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
  color: #c0265f;
}

.single-post-newsletter__responses {
  margin-top: 1rem;
}

.single-post-newsletter__response {
  display: none;
  margin: 0;
  padding: 0.875rem 1rem;
  border-radius: 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.55;
}
.single-post-newsletter__response--error {
  border: 1px solid rgba(192, 38, 95, 0.18);
  background: rgba(235, 29, 140, 0.08);
  color: #a61c56;
}
.single-post-newsletter__response--success {
  border: 1px solid rgba(28, 124, 84, 0.18);
  background: rgba(28, 124, 84, 0.08);
  color: #166a47;
}

.single-post-newsletter__bot-field {
  position: absolute;
  left: -5000px;
}

.single-post-newsletter__submit-wrap {
  margin-top: 1.125rem;
}

.single-post-newsletter__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.875rem 1.375rem;
  border: 0;
  border-radius: 999px;
  background: #eb1d8c;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(235, 29, 140, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  appearance: none;
}
.single-post-newsletter__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(235, 29, 140, 0.22);
}
.single-post-newsletter__submit:active {
  transform: translateY(0);
}
.single-post-newsletter__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (min-width: 640px) {
  .single-post-newsletter__field-group input[type=text],
  .single-post-newsletter__field-group input[type=email] {
    min-height: 3.375rem;
  }
  .single-post-newsletter__submit {
    min-height: 3.375rem;
  }
}
.single-post-sidebar__button {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  border-radius: 999px;
}

.single-post-newsletter__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section--single-post-more {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .section--single-post-more {
    padding-top: 1.25rem;
    padding-bottom: 5rem;
  }
}

.single-post-more {
  padding: 1.25rem;
  border-radius: 1.75rem;
  background: #fff9f1;
  border: 1px solid rgba(28, 28, 28, 0.06);
}
@media (min-width: 768px) {
  .single-post-more {
    padding: 1.75rem;
    border-radius: 2.125rem;
  }
}
@media (min-width: 1024px) {
  .single-post-more {
    padding: 2.5rem;
    border-radius: 2.625rem;
  }
}

.single-post-more__intro {
  max-width: 47.5rem;
}

.single-post-more__title {
  margin: 0.9rem 0 0;
  font-size: clamp(1.75rem, 3.8vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.single-post-more__grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .single-post-more__grid {
    gap: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .single-post-more__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.single-post-more .post-archive-card {
  height: 100%;
}

.single-post-more .post-archive-card__media {
  height: 15rem;
  aspect-ratio: auto;
}
@media (min-width: 768px) {
  .single-post-more .post-archive-card__media {
    height: 16.875rem;
  }
}
@media (min-width: 1024px) {
  .single-post-more .post-archive-card__media {
    height: 18.75rem;
  }
}

body.page-template-page-construcao .construcao-page__progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(100%, 420px);
}
body.page-template-page-construcao .construcao-page__progress-value {
  margin: 0;
  font-family: "Spline Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
}
body.page-template-page-construcao .construcao-page__progress {
  position: relative;
  width: 100%;
  height: 14px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  overflow: hidden;
}
body.page-template-page-construcao .construcao-page__progress-fill {
  position: relative;
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 999px;
}
body.page-template-page-construcao .construcao-page__progress.is-loading .construcao-page__progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(235, 29, 140, 0) 0%, rgba(235, 29, 140, 0.14) 32%, rgba(235, 29, 140, 0.28) 50%, rgba(235, 29, 140, 0.14) 68%, rgba(235, 29, 140, 0) 100%);
  background-size: 200% 100%;
  animation: construcao-progress-shimmer 1.6s linear infinite;
  pointer-events: none;
}
@media (max-width: calc(768px - 0.02px)) {
  body.page-template-page-construcao .construcao-page__progress-value {
    font-size: 1rem;
  }
  body.page-template-page-construcao .construcao-page__progress {
    height: 12px;
  }
}

@keyframes construcao-progress-shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.page-template-page-construcao .construcao-page__progress.is-loading .construcao-page__progress-fill::after {
    animation: none;
    content: none;
  }
}

/*# sourceMappingURL=main.css.map */
