.error-shell {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.latest-news-taxonomy,
.news-overview-taxonomy {
  background: linear-gradient(180deg, #f7fbff 0%, #f7fbff 56%, rgba(247, 251, 255, 0.62) 78%, rgba(255, 255, 255, 0) 100%);
  padding: 52px 0 18px;
}

.latest-news-taxonomy__header,
.news-overview-taxonomy__header {
  margin-bottom: 20px;
}

.latest-news-taxonomy__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.latest-news-taxonomy__copy,
.news-overview-taxonomy__header {
  max-width: 720px;
}

.latest-news-taxonomy h2,
.news-overview-taxonomy h2 {
  margin: 0 0 10px;
  color: #15324b;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

.latest-news-taxonomy p,
.news-overview-taxonomy__header p {
  margin: 0;
  color: #465b6f;
  font-size: 18px;
  line-height: 1.55;
}

.latest-news-taxonomy__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}

.latest-news-taxonomy__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  min-width: 168px;
  padding: 0 15px 0 17px;
  border: 0;
  border-radius: 9px;
  background: #df1b30;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: none;
}

.latest-news-taxonomy__cta span:last-child {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 160ms ease;
}

.latest-news-taxonomy__cta:hover span:last-child {
  transform: translate(5px, -1px);
}

.latest-news-taxonomy__nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
}

.latest-news-taxonomy__nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ead9dc;
  border-radius: 8px;
  background: #fff;
  color: #152236;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.latest-news-taxonomy__nav button span {
  display: block;
  line-height: 0.75;
  transform: translateY(-2px);
}

.latest-news-taxonomy__nav button:hover:not(:disabled),
.latest-news-taxonomy__nav button:focus-visible {
  border-color: rgba(223, 27, 48, 0.42);
  box-shadow: none;
  transform: translateY(-1px);
  outline: none;
}

.latest-news-taxonomy__nav button:disabled {
  color: #9aa8b4;
  cursor: default;
  opacity: 0.65;
  box-shadow: none;
}

.latest-news-taxonomy__nav [data-news-counter] {
  min-width: 40px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.latest-news-taxonomy__viewport {
  overflow: hidden;
  padding: 0 0 6px;
}

.latest-news-taxonomy__track {
  display: grid;
  align-items: stretch;
  grid-auto-columns: calc((100% - 60px) / 4);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 20px;
  transition: transform 220ms ease;
  will-change: transform;
}

.latest-news-taxonomy[data-carousel-enabled="0"] .latest-news-taxonomy__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
}

.news-overview-taxonomy__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-overview-taxonomy__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 24px;
}

.news-overview-taxonomy__chips button {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border: 0;
  border-radius: 999px;
  background: #dbe8f7;
  color: #15324b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.news-overview-taxonomy__chips button:hover,
.news-overview-taxonomy__chips button:focus-visible {
  background: #c8dbef;
  outline: none;
  transform: translateY(-1px);
}

.news-overview-taxonomy__chips button.is-active {
  background: #ef3040;
  color: #fff;
}

.news-taxonomy-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(38, 72, 102, 0.035);
}

.news-taxonomy-card[hidden] {
  display: none;
}

.news-taxonomy-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbe8f7;
}

.news-taxonomy-card__media picture,
.news-taxonomy-card__media img,
.news-taxonomy-card__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.news-taxonomy-card__media img {
  object-fit: cover;
  transition: transform 220ms ease;
}

.news-taxonomy-card:hover .news-taxonomy-card__media img {
  transform: scale(1.035);
}

.news-taxonomy-card__image-placeholder {
  background: linear-gradient(135deg, #dbe8f7, #ffffff);
}

.news-taxonomy-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 26px;
}

.news-taxonomy-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #8b95a3;
  font-size: 15px;
  line-height: 1.3;
}

.news-taxonomy-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 14px;
  border-radius: 8px;
  background: #ef3040;
  color: #fff;
  font-weight: 700;
}

.news-taxonomy-card__category--soft {
  background: #dbe8f7;
  color: #52687d;
}

.news-taxonomy-card__title {
  margin: 0 0 18px;
  color: #111827;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0;
}

.news-taxonomy-card__title a {
  color: inherit;
  text-decoration: none;
}

.news-taxonomy-card__excerpt {
  margin: 0 0 14px;
  color: #556575;
  font-size: 18px;
  line-height: 1.48;
}

.news-taxonomy-card__link {
  margin-top: auto;
  color: #ef3040 !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
}

.news-taxonomy-card__link span {
  display: inline-block;
  transition: transform 160ms ease;
}

.news-taxonomy-card__link:hover span {
  transform: translateX(3px);
}

.news-overview-taxonomy__pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.news-overview-taxonomy__pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid #dbe8f7;
  border-radius: 6px;
  background: #fff;
  color: #15324b;
  font-weight: 700;
  text-decoration: none !important;
}

.news-overview-taxonomy__pagination a.is-current {
  border-color: #df1b30;
  background: #df1b30;
  color: #fff;
}

@media (max-width: 1100px) {
  .latest-news-taxonomy__track {
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
  }

  .latest-news-taxonomy[data-carousel-enabled="0"] .latest-news-taxonomy__track,
  .news-overview-taxonomy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .latest-news-taxonomy,
  .news-overview-taxonomy {
    padding: 36px 0 16px;
  }

  .latest-news-taxonomy__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .latest-news-taxonomy__controls {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .latest-news-taxonomy__cta {
    min-width: 0;
    width: 100%;
    padding: 0 18px;
  }

  .latest-news-taxonomy__nav {
    gap: 10px;
  }

  .latest-news-taxonomy__nav button {
    width: 38px;
    height: 38px;
  }

  .latest-news-taxonomy h2,
  .news-overview-taxonomy h2 {
    font-size: 28px;
  }

  .latest-news-taxonomy__track {
    grid-auto-columns: 100%;
  }

  .latest-news-taxonomy[data-carousel-enabled="0"] .latest-news-taxonomy__track,
  .news-overview-taxonomy__grid {
    grid-template-columns: 1fr;
  }
}

body.ltih-add-to-cart-popup-open {
  overflow: hidden;
}

.ltih-cart-popup {
  --ltih-cart-popup-accent: #ef3f5e;
  --ltih-cart-popup-accent-deep: #d62e4d;
  --ltih-cart-popup-accent-soft: rgba(239, 63, 94, 0.08);
  --ltih-cart-popup-on-accent: #fff;
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.56);
  color: #111827;
  font-family: campton-book, Arial, sans-serif;
}

body.front-end.theme-thh .ltih-cart-popup,
body.front-end.theme-ltih .ltih-cart-popup {
  --ltih-cart-popup-accent: var(--blue);
  --ltih-cart-popup-accent-deep: var(--blue-deep);
}

body.front-end.theme-thh .ltih-cart-popup {
  --ltih-cart-popup-accent-soft: rgba(45, 140, 200, 0.1);
}

body.front-end.theme-ltih .ltih-cart-popup {
  --ltih-cart-popup-accent-soft: rgba(239, 63, 94, 0.08);
}

.ltih-cart-popup[hidden] {
  display: none;
}

.ltih-cart-popup__dialog {
  width: min(700px, 100%);
  max-height: calc(100vh - 52px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.32);
}

.ltih-cart-popup__dialog:focus {
  outline: none;
}

.ltih-cart-popup__hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 0;
  padding: 26px 56px 26px 28px;
  background: var(--ltih-cart-popup-accent);
}

.ltih-cart-popup__hero-main {
  display: flex;
  min-width: 0;
  gap: 20px;
  align-items: flex-start;
}

.ltih-cart-popup__check {
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ltih-cart-popup-on-accent);
}

.ltih-cart-popup__check svg {
  width: 32px;
  height: 32px;
}

.ltih-cart-popup__copy {
  min-width: 0;
}

.ltih-cart-popup__copy h2 {
  margin: 0 0 10px;
  color: var(--ltih-cart-popup-on-accent);
  font-family: campton-bold, Arial, sans-serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0;
}

.ltih-cart-popup__product-line {
  margin: 0;
  color: var(--ltih-cart-popup-on-accent);
  font-size: 19px;
  line-height: 1.35;
}

.ltih-cart-popup__button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 2px solid var(--ltih-cart-popup-accent);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--ltih-cart-popup-accent) !important;
  background: #fff;
  font-family: campton-bold, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.1;
  text-decoration: none !important;
  cursor: pointer;
}

.ltih-cart-popup__button svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.ltih-cart-popup__button span {
  min-width: 0;
}

.ltih-cart-popup__button--primary {
  min-height: 64px;
  color: var(--ltih-cart-popup-on-accent) !important;
  border-color: var(--ltih-cart-popup-accent);
  background: var(--ltih-cart-popup-accent);
}

.ltih-cart-popup__button--primary:hover,
.ltih-cart-popup__button--primary:focus-visible {
  color: var(--ltih-cart-popup-on-accent) !important;
  background: var(--ltih-cart-popup-accent-deep);
  border-color: var(--ltih-cart-popup-accent-deep);
}

.ltih-cart-popup__button--outline {
  min-height: 58px;
  background: #fff;
}

.ltih-cart-popup__button--outline:hover,
.ltih-cart-popup__button--outline:focus-visible {
  color: var(--ltih-cart-popup-accent-deep) !important;
  background: var(--ltih-cart-popup-accent-soft);
  border-color: var(--ltih-cart-popup-accent-deep);
}

.ltih-cart-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ltih-cart-popup-on-accent);
  font: 700 28px/1 Arial, sans-serif;
  cursor: pointer;
}

.ltih-cart-popup__close:hover,
.ltih-cart-popup__close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.ltih-cart-popup__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  padding: 24px 28px 28px;
  border-top: 1px solid #d8d8d8;
  background: #fff;
}

.ltih-cart-popup__footer .ltih-cart-popup__button {
  min-width: 0;
  min-height: 64px;
  width: 100%;
}

@media (max-width: 980px) {
  .ltih-cart-popup {
    align-items: stretch;
    padding: 14px;
  }

  .ltih-cart-popup__dialog {
    max-height: calc(100vh - 28px);
    border-radius: 20px;
  }

  .ltih-cart-popup__hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 56px 26px 24px;
  }

  .ltih-cart-popup__button,
  .ltih-cart-popup__button--primary,
  .ltih-cart-popup__button--outline {
    min-height: 58px;
    font-size: 21px;
  }

  .ltih-cart-popup__footer {
    padding: 28px 24px;
  }

  .ltih-cart-popup__footer {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .ltih-cart-popup__copy h2 {
    font-size: 25px;
  }

  .ltih-cart-popup__product-line {
    font-size: 20px;
  }

  .ltih-cart-popup__check,
  .ltih-cart-popup__check svg {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .ltih-cart-popup__hero-main {
    gap: 14px;
  }

  .ltih-cart-popup__footer {
    gap: 10px;
  }

  .ltih-cart-popup__footer .ltih-cart-popup__button {
    min-height: 52px;
    padding: 8px;
    font-size: 14px;
    gap: 6px;
  }

  .ltih-cart-popup__footer .ltih-cart-popup__button svg {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }
}

.ltih-exit-popup-open {
  overflow: hidden;
}

.ltih-exit-popup[hidden] {
  display: none !important;
}

.ltih-exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow-y: auto;
  padding: clamp(12px, 3vh, 28px) clamp(12px, 4vw, 36px);
}

.ltih-exit-popup__backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 32%),
    rgba(18, 35, 47, 0.56);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.ltih-exit-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: calc(100vh - 56px);
  max-height: calc(100dvh - 56px);
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(18, 35, 47, 0.28);
  padding: clamp(24px, 4vw, 44px);
  color: #183241;
  margin: 0;
}

.ltih-exit-popup__dialog:focus {
  outline: 3px solid rgba(239, 77, 90, 0.35);
  outline-offset: 4px;
}

.ltih-exit-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 50, 65, 0.1);
  color: #183241;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ltih-exit-popup__close:hover,
.ltih-exit-popup__close:focus {
  background: #183241;
  color: #fff;
}

.ltih-exit-popup__title {
  max-width: 18ch;
  margin: 0;
  color: #183241;
  font-family: campton-semibold, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.ltih-exit-popup__body {
  max-width: 54ch;
  margin: 18px 0 0;
  color: #365667;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.55;
}

.ltih-exit-popup__urgency {
  display: inline-flex;
  margin: 20px 0 0;
  border-radius: 999px;
  background: rgba(239, 77, 90, 0.12);
  padding: 8px 14px;
  color: #9f2834;
  font-weight: 700;
}

.ltih-exit-popup__form {
  margin-top: 28px;
}

.ltih-exit-popup__form .ltih-form-block {
  margin: 0;
}

.ltih-exit-popup__form .newsletter {
  display: grid;
  gap: 14px;
}

.ltih-exit-popup__form .gform_fields {
  margin: 0;
  padding: 0;
}

.ltih-exit-popup__form .gfield {
  list-style: none;
}

.ltih-exit-popup__form input[type="text"],
.ltih-exit-popup__form input[type="email"],
.ltih-exit-popup__form input[type="tel"],
.ltih-exit-popup__form textarea,
.ltih-exit-popup__form select {
  width: 100%;
}

.ltih-exit-popup__form .gform_button {
  width: 100%;
}

@media (min-width: 760px) {
  .ltih-exit-popup__dialog {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
  }

  .ltih-exit-popup__form {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .ltih-exit-popup {
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    padding: 0;
  }

  .ltih-exit-popup__backdrop {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .ltih-exit-popup__dialog {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    padding: 22px 18px max(18px, env(safe-area-inset-bottom));
  }

  .ltih-exit-popup__close {
    top: max(10px, env(safe-area-inset-top));
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .ltih-exit-popup__title {
    padding-right: 38px;
    font-size: 1.65rem;
  }

  .ltih-exit-popup__body {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .ltih-exit-popup__urgency {
    margin-top: 14px;
  }

  .ltih-exit-popup__form {
    margin-top: 18px;
  }
}

.voordeel-deals {
  padding: 48px 0 42px;
}

.voordeel-deals--lightBlue {
  background: #e8f6ff;
}

.voordeel-deals--white {
  background: #fff;
}

.voordeel-deals--transparent {
  background: transparent;
}

.voordeel-deals__header {
  max-width: 820px;
  margin-bottom: 22px;
}

.voordeel-deals__header h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 34px;
  line-height: 1.15;
}

.voordeel-deals__intro p {
  margin: 0 0 8px;
  color: #334155;
  font-size: 18px;
  line-height: 1.55;
}

.voordeel-deals__filters {
  display: flex;
  gap: 14px;
  margin: 0 0 28px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.voordeel-deals__filter {
  flex: 0 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #171717;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  padding: 10px 22px;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.voordeel-deals__filter.is-active {
  border-color: #e81322;
  background: #e81322;
  color: #fff;
}

.voordeel-deals__filter:focus-visible,
.voordeel-deals__cta:focus-visible,
.voordeel-deals__conditions:focus-visible,
.voordeel-deals__conditions-detail summary:focus-visible {
  outline: 3px solid rgba(39, 170, 225, 0.9);
  outline-offset: 3px;
}

.voordeel-deals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  justify-items: center;
}

.voordeel-deals--threeColumn .voordeel-deals__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voordeel-deals__card {
  display: flex;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.voordeel-deals__card[hidden] {
  display: none;
}

.voordeel-deals__image-wrap {
  aspect-ratio: 16 / 9;
  height: clamp(180px, 15vw, 260px);
  background: #eef2f7;
}

.voordeel-deals__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voordeel-deals__body {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 26px 26px;
}

.voordeel-deals__body:has(.voordeel-deals__offer) .voordeel-deals__copy {
  padding-right: 104px;
}

.voordeel-deals__category {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 24px !important;
  border-radius: 999px;
  padding: 3px 12px !important;
  background: #ffe0e3;
  color: #d71928;
  font-size: 12pt !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
}

.voordeel-deals__category--services {
  background: #e3f0db;
  color: #447d31;
}

.voordeel-deals__category--hulpmiddelen {
  background: #e0f1ff;
  color: #176b9b;
}

.voordeel-deals__card h3 {
  margin: 0 0 0 !important;
  color: #050505;
  font-size: 20px !important;
  line-height: 1.22 !important;
}

.voordeel-deals__text {
  margin: 0 0 18px !important;
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
}

.voordeel-deals__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border-radius: 6px;
  background: #e81322;
  color: #fff !important;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 5px 12px rgba(232, 19, 34, 0.22);
  transform: translateY(0);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.voordeel-deals__cta span {
  display: inline-block;
  transition: transform 0.18s ease;
}

.voordeel-deals__cta:hover,
.voordeel-deals__cta:focus,
.voordeel-deals__cta:active,
.voordeel-deals__cta:visited {
  background: #c90f1c;
  color: #fff !important;
  text-decoration: none !important;
}

.voordeel-deals__cta:hover,
.voordeel-deals__cta:focus {
  box-shadow: 0 8px 18px rgba(232, 19, 34, 0.28);
  transform: translateY(-2px);
}

.voordeel-deals__cta:hover span,
.voordeel-deals__cta:focus span {
  transform: translateX(3px);
}

.voordeel-deals__card .voordeel-deals__conditions,
.voordeel-deals__card .voordeel-deals__conditions-detail summary {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: #64748b !important;
  font-size: 8pt !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}

.voordeel-deals__conditions-detail div {
  margin-top: 10px;
  color: #334155;
  font-size: 15px;
  line-height: 1.5;
}

.voordeel-deals__offer {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 98px;
  min-width: 98px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  padding: 13px;
  font-size: clamp(12px, 1.15vw, 16px);
  font-weight: 800;
  line-height: 1.05;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.voordeel-deals__offer--red {
  background: #e81322;
}

.voordeel-deals__offer--green {
  background: #5aa342;
}

.voordeel-deals__offer--blue {
  background: #27aae1;
}

.voordeel-deals__offer--neutral {
  background: #475569;
}

@media (max-width: 1180px) {
  .voordeel-deals__grid,
  .voordeel-deals--threeColumn .voordeel-deals__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voordeel-deals__card h3 {
    font-size: 20px !important;
  }

  .voordeel-deals__offer {
    width: 82px;
    min-width: 82px;
    padding: 10px;
    font-size: clamp(12px, 1.8vw, 15px);
  }
}

@media (max-width: 760px) {
  .voordeel-deals {
    padding: 34px 0;
  }

  .voordeel-deals__grid,
  .voordeel-deals--threeColumn .voordeel-deals__grid {
    grid-template-columns: 1fr;
  }

  .voordeel-deals__body {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .voordeel-deals__body:has(.voordeel-deals__offer) .voordeel-deals__copy {
    padding-right: 0;
  }

  .voordeel-deals__image-wrap {
    height: clamp(210px, 58vw, 320px);
  }

  .voordeel-deals__offer {
    position: static;
    width: 96px;
    min-width: 96px;
    padding: 12px;
    font-size: clamp(12px, 4vw, 16px);
    align-self: flex-end;
    margin-top: 24px;
    margin-bottom: 10px;
  }

  .voordeel-deals__card h3 {
    font-size: 20px !important;
  }

  .voordeel-deals__text {
    font-size: 16px;
  }
}

.ltih-route-map-block {
  --route-map-bg: #ffffff;
  --route-map-border: #f3d6d8;
  --route-map-soft-bg: #fff7f8;
  --route-map-header-bg: #fdecee;
  --route-map-primary: #e0445f;
  --route-map-primary-dark: #b92f46;
  --route-map-text: #162033;
  --route-map-muted: #53627a;
  --route-map-row-border: #f4e1e3;
  --route-map-icon-bg: #fdecee;
  --route-map-shadow: 0 18px 50px rgba(22, 32, 51, 0.08);
  padding: clamp(2.25rem, 5vw, 4.5rem) 0;
}

.ltih-route-map-block--neutral {
  --route-map-border: #dbe2ea;
  --route-map-soft-bg: #f7f9fb;
  --route-map-header-bg: #eef2f6;
  --route-map-primary: #385069;
  --route-map-primary-dark: #24384f;
  --route-map-row-border: #e4e9ef;
  --route-map-icon-bg: #eef2f6;
}

.ltih-route-map-block--blue {
  --route-map-border: #cddff3;
  --route-map-soft-bg: #f5f9ff;
  --route-map-header-bg: #eaf3ff;
  --route-map-primary: #1d66b2;
  --route-map-primary-dark: #164d86;
  --route-map-row-border: #dce9f7;
  --route-map-icon-bg: #eaf3ff;
}

.ltih-route-map-block--green {
  --route-map-border: #cfe8dc;
  --route-map-soft-bg: #f6fbf8;
  --route-map-header-bg: #eaf7f0;
  --route-map-primary: #237a56;
  --route-map-primary-dark: #175a3f;
  --route-map-row-border: #ddefe6;
  --route-map-icon-bg: #eaf7f0;
}

.ltih-route-map-block--compact {
  padding: 1.5rem 0;
}

.ltih-route-map {
  background: var(--route-map-bg);
  border: 1px solid var(--route-map-border);
  border-radius: 28px;
  box-shadow: var(--route-map-shadow);
  color: var(--route-map-text);
  padding: clamp(1.5rem, 4vw, 3.25rem);
}

.ltih-route-map-block--compact .ltih-route-map {
  border-radius: 18px;
  padding: clamp(1rem, 2.5vw, 1.75rem);
}

.ltih-route-map__header {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.ltih-route-map__header-icon,
.ltih-route-map__icon,
.ltih-route-map__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--route-map-icon-bg);
  color: var(--route-map-primary);
}

.ltih-route-map__header-icon {
  width: 64px;
  height: 64px;
}

.ltih-route-map__icon,
.ltih-route-map__number {
  width: 42px;
  height: 42px;
}

.ltih-route-map__number {
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
}

.ltih-route-map__icon-glyph,
.ltih-route-map__cta-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: currentColor;
}

.ltih-route-map__icon-glyph {
  -webkit-mask: var(--route-map-icon-url) center / contain no-repeat;
  mask: var(--route-map-icon-url) center / contain no-repeat;
}

.ltih-route-map__cta-icon {
  width: 18px;
  height: 18px;
  -webkit-mask: url("https://cdn.jsdelivr.net/npm/lucide-static@0.468.0/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("https://cdn.jsdelivr.net/npm/lucide-static@0.468.0/icons/arrow-right.svg") center / contain no-repeat;
}

.ltih-route-map__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--route-map-primary);
  font-family: campton-bold, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ltih-route-map__title {
  margin: 0;
  color: var(--route-map-text);
  font-family: campton-bold, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.ltih-route-map__intro {
  margin-top: 1rem;
  max-width: 64rem;
  color: var(--route-map-muted);
  font-family: campton-book, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.ltih-route-map__intro p,
.ltih-route-map__footer-note p {
  margin: 0;
}

.ltih-route-map__table-wrap {
  overflow: hidden;
  border: 1px solid var(--route-map-row-border);
  border-radius: 16px;
}

.ltih-route-map__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.ltih-route-map__table th,
.ltih-route-map__table td {
  padding: 1.15rem 1.6rem;
  text-align: left;
  vertical-align: middle;
}

.ltih-route-map__table th {
  background: var(--route-map-header-bg);
  color: var(--route-map-primary);
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
}

.ltih-route-map__table td {
  border-top: 1px solid var(--route-map-row-border);
  color: var(--route-map-text);
  font-family: campton-book, sans-serif;
  font-size: 1.03rem;
  line-height: 1.45;
}

.ltih-route-map__table tr.is-highlighted td,
.ltih-route-map__mobile-card.is-highlighted {
  background: var(--route-map-soft-bg);
}

.ltih-route-map__table th + th,
.ltih-route-map__table td + td {
  border-left: 1px solid var(--route-map-row-border);
}

.ltih-route-map__cell--center {
  text-align: center !important;
}

.ltih-route-map__cell--right {
  text-align: right !important;
}

.ltih-route-map__first-cell,
.ltih-route-map__row-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.ltih-route-map__row-link {
  color: inherit;
  text-decoration: none;
}

.ltih-route-map__cell-text {
  display: inline;
}

.ltih-route-map__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--route-map-header-bg);
  color: var(--route-map-primary-dark);
  font-family: campton-semibold, sans-serif;
  font-size: 0.78rem;
  line-height: 1.2;
}

.ltih-route-map__row-link:hover,
.ltih-route-map__row-link:focus-visible {
  color: var(--route-map-primary-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.ltih-route-map__row-link:focus-visible,
.ltih-route-map__cta:focus-visible {
  outline: 3px solid rgba(224, 68, 95, 0.35);
  outline-offset: 3px;
}

.ltih-route-map__mobile-cards {
  display: none;
}

.ltih-route-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.ltih-route-map__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 8px;
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none !important;
}

.ltih-route-map__cta--primary {
  background: var(--route-map-primary);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(224, 68, 95, 0.24);
}

.ltih-route-map__cta--primary:hover {
  background: var(--route-map-primary-dark);
}

.ltih-route-map__cta--secondary {
  border: 1px solid var(--route-map-border);
  background: #fff;
  color: var(--route-map-primary-dark) !important;
}

.ltih-route-map__footer-note,
.ltih-route-map__sources {
  margin-top: 1.15rem;
  color: var(--route-map-muted);
  font-family: campton-book, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ltih-route-map__sources {
  border-top: 1px solid var(--route-map-row-border);
  padding-top: 1rem;
}

.ltih-route-map__sources h3 {
  margin: 0 0 0.45rem;
  color: var(--route-map-text);
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
}

.ltih-route-map__sources ul {
  margin: 0;
  padding-left: 1.2rem;
}

.ltih-route-map__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.ltih-route-map-block--fallback p {
  margin: 0;
  color: #53627a;
}

@media (max-width: 760px) {
  .ltih-route-map {
    border-radius: 20px;
    padding: 1.25rem;
  }

  .ltih-route-map__header {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
  }

  .ltih-route-map__header-icon {
    width: 54px;
    height: 54px;
  }

  .ltih-route-map__table-wrap {
    display: none;
  }

  .ltih-route-map__mobile-cards {
    display: grid;
    gap: 0.8rem;
  }

  .ltih-route-map__mobile-card {
    border: 1px solid var(--route-map-row-border);
    border-radius: 14px;
    background: var(--route-map-soft-bg);
    padding: 1rem;
  }

  .ltih-route-map__mobile-card-head {
    margin-bottom: 0.85rem;
  }

  .ltih-route-map__mobile-field + .ltih-route-map__mobile-field {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--route-map-row-border);
  }

  .ltih-route-map__mobile-label {
    margin-bottom: 0.2rem;
    color: var(--route-map-primary-dark);
    font-family: campton-semibold, sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
  }

  .ltih-route-map__mobile-value {
    color: var(--route-map-text);
    font-family: campton-book, sans-serif;
    font-size: 1rem;
    line-height: 1.45;
  }

  .ltih-route-map__mobile-value .ltih-route-map__row-link {
    display: inline;
  }

  .ltih-route-map__actions {
    flex-direction: column;
  }

  .ltih-route-map__cta {
    width: 100%;
  }
}

.error-card {
    max-width: 720px;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px;
}

.error-title {
    margin: 0 0 8px;
    font-size: 28px;
}

.error-sub {
    margin: 0 0 16px;
    color: #444;
}

.error-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.error-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #ddd;
    color: #111;
}

.error-btn-primary {
    background: #d63e4d;
    border-color: #d63e4d;
    color: #fff;
}

.error-btn-primary:hover {
    opacity: 0.95;
}

.error-card--404 {
    border: 0;
}

.error-muted {
    color: #666;
    font-size: 14px;
}

@media (max-width: 900px) {
    .site-footer__cols {
        grid-template-columns: 1fr;
    }
}

.ltih-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ltih-form-message {
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.ltih-form-message--error {
    background: #d63e4d;
    border: 1px solid #c13543;
    color: #fff;
}

.ltih-form-message--success {
    background: #e6f6ee;
    border: 1px solid #bfe7d2;
    color: #0f5132;
}

.ltih-form-missing {
    padding: 10px 12px;
    border: 1px dashed #d63e4d;
    color: #d63e4d;
    background: #fff5f5;
    border-radius: 8px;
    margin-bottom: 12px;
}

.ltih-form-block .form-text,
.ltih-form-block .form-text h2,
.ltih-form-block .form-text h3,
.ltih-form-block .form-text p,
.ltih-form-block .form-text span {
    color: #000;
}

.ltih-form-block .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px;
}

.ltih-form-block .gfield--width-quarter {
    grid-column: span 1 !important;
}

.ltih-form-block .gfield--width-half {
    grid-column: span 2 !important;
}

.ltih-form-block .gfield--width-three-quarter {
    grid-column: span 3 !important;
}

.ltih-form-block .gfield--width-full {
    grid-column: 1 / -1 !important;
}

@media (max-width: 640px) {
    .ltih-form-block .gfield--width-quarter,
    .ltih-form-block .gfield--width-half,
    .ltih-form-block .gfield--width-three-quarter,
    .ltih-form-block .gfield--width-full {
        grid-column: 1 / -1 !important;
    }
}

.ltih-form-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 12px;
    font-size: 14px;
    color: #0b1f2a;
}

.ltih-form-loading[hidden] {
    display: none !important;
}

.ltih-form-loading::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid #c6d7de;
    border-top-color: #d63e4d;
    border-radius: 50%;
    animation: ltih-spin 0.8s linear infinite;
}

.ltih-form-block form.is-submitting .gform_button.button {
    opacity: 0.75;
    cursor: not-allowed;
}

.ltih-recaptcha-disclosure {
    margin: 0;
    padding-top: 16px;
    display: block !important;
    width: 100% !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    color: #9aa0a6 !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    text-align: right !important;
}

.ltih-recaptcha-disclosure a {
    color: inherit !important;
    text-decoration: underline;
}

.ltih-form-block .ltih-recaptcha-disclosure,
.newsletter_wrapper .ltih-recaptcha-disclosure,
.newsletter .ltih-recaptcha-disclosure,
.home-hero-routes__newsletter-form .ltih-recaptcha-disclosure {
    display: block !important;
    width: 100% !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    color: #9aa0a6 !important;
    font-weight: 400 !important;
    text-align: right !important;
}

@keyframes ltih-spin {
    to {
        transform: rotate(360deg);
    }
}

.facetwp-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.facetwp-icon.locate-me {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    user-select: none;
}

.facetwp-location {
    flex: 1 1 auto;
}

.facetwp-icon.locate-me {
    background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'><path d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/></svg>");
}

.facetwp-facet-pager_ {
    margin-top: 20px;
}

.facetwp-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.facetwp-pager .facetwp-page {
    display: inline-block;
    line-height: 1.15;
    color: inherit;
    text-decoration: none;
}

.facetwp-pager .facetwp-page:hover:not(.dots) {
    text-decoration: underline;
}

.facetwp-pager .facetwp-page.active {
    font-weight: 700;
}

.facetwp-pager .facetwp-page.dots {
    cursor: default;
    text-decoration: none;
}

.ltih-auto-h1 h1 {
    font-family: campton-bold, sans-serif;
    font-weight: 700;
}

.form-container--compact {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.form--compact .form-container {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.form--compact {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.form--compact .inner-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.no-top-padding {
  padding-top: 0 !important;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

.form--compact .form-text,
.form--compact .form-text p,
.form--compact .form-text span {
  color: #000 !important;
}

.form--compact .form-text h2,
.form--compact .form-text h3 {
  color: #d63e4d !important;
}

.form--standalone {
  padding-top: 24px;
  padding-bottom: 24px;
}

.form--standalone .form-container {
  background: #dbeaf7;
  border-radius: 0;
  padding: 56px 88px 52px;
}

.form--standalone .ltih-form-block {
  max-width: 640px;
  margin: 0;
}

.form--standalone .ltih-form-block .form-text {
  margin-bottom: 28px;
}

.form--standalone .ltih-form-block .gform_title,
.form--standalone .ltih-form-block .gform_title strong {
  margin: 0 0 8px;
  color: #000;
  font-family: campton-bold, sans-serif;
  font-size: 28px;
  line-height: 1.22;
  font-weight: 700;
}

.form--standalone .ltih-form-block .ltih-form-description,
.form--standalone .ltih-form-block .ltih-form-description p,
.form--standalone .ltih-form-block .ltih-form-description span {
  color: #111827;
  font-family: campton-book, sans-serif;
  font-size: 24px;
  line-height: 1.38;
}

.form--standalone .ltih-form-block .ltih-form-description p {
  margin: 0;
}

.form--standalone .ltih-form-block .gfield_label {
  display: block;
  margin: 0 0 8px;
  color: #223542;
  font-family: campton-book, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.form--standalone .ltih-form-block .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px;
}

.form--standalone .ltih-form-block .gfield {
  margin: 0;
}

.form--standalone .ltih-form-block input.medium,
.form--standalone .ltih-form-block textarea.medium,
.form--standalone .ltih-form-block select.medium {
  width: 100%;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  color: #223542;
  font-family: campton-book, sans-serif;
  font-size: 18px;
}

.form--standalone .ltih-form-block input.medium::placeholder,
.form--standalone .ltih-form-block textarea.medium::placeholder {
  color: #98a3b3;
  opacity: 1;
}

.form--standalone .ltih-form-block .ginput_container_email,
.form--standalone .ltih-form-block .ginput_container_text {
  position: relative;
}

.form--standalone .ltih-form-block .gform-footer {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.form--standalone .ltih-form-block .gform_button.button {
  min-width: 302px;
  min-height: 60px;
  padding: 0 28px;
  border: 0;
  border-radius: 6px;
  background: #f44352;
  color: #fff;
  font-family: campton-bold, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.form--standalone .ltih-form-block .gfield_description {
  display: none;
}

.form--standalone .ltih-form-block .gfield_required {
  display: inline;
  color: #223542;
}

.form--regular {
  padding-top: 48px;
  padding-bottom: 48px;
}

.form--regular .inner-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form--regular .form-text {
  color: #000;
}

.form--regular .form-text p,
.form--regular .form-text span {
  color: #000;
}

.form--regular .form-text .gform_title,
.form--regular .form-text h2,
.form--regular .form-text h3 {
  margin: 0 0 12px;
  color: #000;
  font-family: campton-bold, sans-serif;
  font-size: 32px;
  line-height: 1.15;
}

.form--regular .form-text .gform_title strong {
  font-weight: 700;
}

.form--regular .form-text p {
  margin: 0;
}

.form--regular .form-text p + p {
  margin-top: 12px;
}

.form--regular .form-container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 31, 42, 0.12);
  padding: 32px;
}

@media screen and (max-width: 768px) {
  .form--standalone .form-container {
    padding: 32px 24px;
  }

  .form--standalone .ltih-form-block {
    max-width: none;
  }

  .ltih-form-block .gform_fields,
  .form--standalone .ltih-form-block .gform_fields {
    grid-template-columns: 1fr !important;
  }

  .form--standalone .ltih-form-block .gform_title,
  .form--standalone .ltih-form-block .gform_title strong {
    font-size: 24px;
  }

  .form--standalone .ltih-form-block .ltih-form-description,
  .form--standalone .ltih-form-block .ltih-form-description p,
  .form--standalone .ltih-form-block .ltih-form-description span {
    font-size: 18px;
  }

  .form--standalone .ltih-form-block .gform_button.button {
    width: 100%;
    min-width: 0;
  }

  .form--regular .form-text .gform_title,
  .form--regular .form-text h2,
  .form--regular .form-text h3 {
    font-size: 28px;
  }

  .form--regular .form-container {
    padding: 24px;
  }
}

body.front-end .ltih-cegg-clear {
  clear: both;
}

body.front-end .ltih-offers-list-block {
  display: flex;
  justify-content: center;
  width: 100%;
  clear: both;
}

body.front-end .ltih-offers-list-block > .inner-container {
  margin-left: auto;
  margin-right: auto;
}

body.front-end .ltih-offers-list-block .cegg5-container {
  display: block;
  width: 100%;
  clear: both;
}

body.front-end .ltih-offers-list-block + * {
  clear: both;
}


/* Mega menu panel */
.bottom-menu{position:relative;z-index:30;background-color:#f1f7f7;border-top:1px solid #d7e4e3}
.bottom-menu .bottom-menu-panel{padding:32px 0}
.bottom-menu .menu-columns{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:48px}
.bottom-menu .menu-column-title{font-family:campton-semibold;font-size:20px;color:#0f6b62;padding-bottom:8px;margin-bottom:12px;border-bottom:1px dashed rgba(15,107,98,0.35)}
.bottom-menu .menu-column-title a{color:inherit;text-decoration:none}
.bottom-menu .menu-column-list{list-style:none;margin:0;padding:0}
.bottom-menu .menu-column-list li{margin:0 0 12px}
.bottom-menu .menu-column-list a{color:#0b1f2a;text-decoration:none;font-family:campton-light;font-size:18px;line-height:26px}
.bottom-menu .menu-column-list a:hover{text-decoration:underline}

.bottom-menu-backdrop{position:fixed;left:0;right:0;top:0;bottom:0;background:rgba(0,0,0,0.35);opacity:0;pointer-events:none;transition:opacity .25s ease;z-index:20}
.bottom-menu:hover + .bottom-menu-backdrop,
.bottom-menu:focus-within + .bottom-menu-backdrop{opacity:1;pointer-events:auto}

@media screen and (max-width: 900px){
  .bottom-menu{display:none}
  .bottom-menu-backdrop{display:none}
}


/* Mega submenu overlay */
.bottom-menu{position:relative;overflow:visible;z-index:30;border-bottom:0}
.bottom-menu .blog-categories{position:relative;overflow:visible}
.bottom-menu .menu-item{position:static}

.mega-submenu-container{position:fixed;left:0;right:0;top:auto;z-index:9999}
.mega-submenu{display:none;width:100vw;background-color:#e6f4fe}
.mega-submenu.is-open{display:block}
.mega-submenu-panel{background:#e6f4fe;border-top:0;padding:28px 0 36px;min-height:40vh;max-height:calc(100vh - 160px);overflow:auto;border-bottom:1px solid #d7e4e3}
.mega-submenu-columns{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:48px;max-width:1300px;margin:0 auto;padding:0 18px}
.mega-submenu-title{display:block;font-family:campton-semibold;font-size:18px;color:#d63e4d;text-decoration:none;padding-bottom:8px;margin-bottom:12px;border-bottom:1px dashed rgba(214,62,77,0.5)}
.mega-submenu-title--has-children{font-family:campton-bold;font-weight:700}
.mega-submenu-list{list-style:none;margin:0;padding:0}
.mega-submenu-list li{margin:0 0 12px}
.mega-submenu-list a{color:#0b1f2a;text-decoration:none;font-family:campton-light;font-size:18px;line-height:26px}
.mega-submenu-list a:hover{text-decoration:underline}

@media screen and (max-width: 900px){
  .mega-submenu-container{position:static}
}

body.front-end{
  --site-header-expanded-height: 156px;
  --site-header-compact-height: 76px;
  --site-header-top-offset: 0px;
  --site-header-active-height: var(--site-header-expanded-height);
}

body.front-end.ltih-admin-quickbar-enabled{
  --site-header-top-offset: 37px;
}

body.front-end.header-is-scrolled{
  --site-header-active-height: var(--site-header-compact-height);
}

body.front-end header.headroom{
  position: fixed !important;
  top: var(--site-header-top-offset) !important;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--site-header-active-height) !important;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(15, 38, 67, 0);
  box-shadow: 0 0 0 rgba(15, 38, 67, 0);
  transform: translateY(0) !important;
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  transition: height 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

body.front-end header.headroom.headroom--top{
  transform: translateY(0) !important;
}

body.front-end header.headroom.is-scrolled{
  border-bottom-color: rgba(15, 38, 67, 0.08);
  box-shadow: 0 12px 30px rgba(15, 38, 67, 0.08);
}

body.front-end .header-placeholder{
  display: block !important;
  height: var(--site-header-expanded-height) !important;
  margin-bottom: -1px;
}

body.front-end header.headroom .top-menu{
  display: flex;
  align-items: center;
  min-height: 90px;
  background: transparent;
  transition: min-height 0.24s ease;
}

body.front-end header.headroom.is-scrolled .top-menu{
  min-height: 76px;
}

body.front-end header.headroom .top-menu .inner-container{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0 minmax(0, 1fr);
  align-items: center;
  gap: 1rem 1.25rem;
  width: min(1280px, calc(100% - 2.5rem));
  min-height: inherit;
  margin: 0 auto;
  position: relative;
}

body.front-end .header-utilities{
  grid-column: 1;
  display: flex !important;
  align-items: center;
  justify-self: start;
  width: auto !important;
  max-width: none;
  flex: 1 1 auto;
  gap: 1.25rem;
  min-width: 0;
}

body.front-end .header-utility-links{
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 0 0 auto;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

body.front-end header.headroom.is-scrolled .header-utility-links{
  opacity: 0;
  max-width: 0;
  margin-right: 0;
  transform: translateY(-4px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, max-width 0.18s ease, visibility 0s linear 0.18s;
}

body.front-end .header-search{
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: min(100%, 28rem);
  max-width: 28rem;
  min-width: 0;
  height: 2.95rem;
  min-height: 2.95rem;
  padding: 0 0.38rem 0 1.05rem;
  border: 1px solid #d8e0e7;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 38, 67, 0.04), 0 5px 14px rgba(15, 38, 67, 0.05);
  transition: width 0.24s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.front-end header.headroom.is-scrolled .header-search{
  width: min(100%, 19rem);
  max-width: 19rem;
}

body.front-end .header-search:hover{
  border-color: #cfd8e1;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(15, 38, 67, 0.05), 0 8px 18px rgba(15, 38, 67, 0.06);
}

body.front-end .header-search:focus-within{
  border-color: #cfd8e1;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(34, 51, 69, 0.06), 0 8px 20px rgba(15, 38, 67, 0.08);
}

body.front-end .header-search__input{
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 2.95rem;
  min-height: 2.95rem;
  padding: 0 0.65rem 0 0;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  color: #223345;
  font-family: campton-book, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none !important;
  outline-offset: 0 !important;
  -webkit-appearance: none;
  appearance: none;
  border-width: 0 !important;
  border-style: solid;
  background-clip: padding-box;
  -webkit-user-select: text;
  user-select: text;
}

body.front-end .header-search__input::placeholder{
  color: #8997a7;
  opacity: 1;
}

body.front-end .header-search__input:focus{
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  background: transparent !important;
}

body.front-end .header-search__input:focus-visible{
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  background: transparent !important;
}

body.front-end .header-search__input::selection{
  background: rgba(215, 62, 77, 0.22);
  color: #223345;
}

body.front-end .header-search__input::-moz-selection{
  background: rgba(215, 62, 77, 0.22);
  color: #223345;
}

body.front-end .header-search__input:-webkit-autofill,
body.front-end .header-search__input:-webkit-autofill:hover,
body.front-end .header-search__input:-webkit-autofill:focus,
body.front-end .header-search__input:-webkit-autofill:active{
  -webkit-text-fill-color: #223345;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

body.front-end .header-search__submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 12px;
  color: #d73e4d;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.front-end .header-search__submit:hover{
  background: rgba(215, 62, 77, 0.08);
  transform: translateY(-1px);
}

body.front-end .header-search__submit:focus-visible{
  outline: none;
  background: rgba(215, 62, 77, 0.1);
}

body.front-end .header-search__icon{
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  color: #d73e4d;
}

body.front-end .header-search__icon path{
  fill: currentColor !important;
}

body.front-end .icon-contrast{
  display: block;
  overflow: visible;
}

body.high-contrast header .icon-contrast circle{
  fill: #ffffff !important;
  stroke: #000000 !important;
}

body.high-contrast header .icon-contrast path{
  fill: #000000 !important;
}

body.front-end header.headroom .logo{
  justify-self: auto;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

body.front-end header.headroom .logo svg{
  display: block;
  width: 10.25rem;
  height: auto;
  transition: width 0.24s ease, transform 0.24s ease;
}

body.front-end header.headroom.is-scrolled .logo{
  align-self: auto;
  margin-bottom: 0;
}

body.front-end header.headroom.is-scrolled .logo svg{
  width: 7.8rem;
  transform: none;
}

body.front-end .header-actions{
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.18rem;
}

body.front-end .menu.menu--right{
  display: flex;
  align-items: center;
  gap: 0;
}

body.front-end .header-primary-cta{
  --header-primary-cta-offset: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.8rem;
  min-height: 2.8rem;
  padding: 0.64rem 1.18rem;
  border-radius: 16px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(35, 176, 83, 0.16);
  font-size: 1rem;
  transform: translateX(var(--header-primary-cta-offset));
  transition: min-height 0.24s ease, padding 0.24s ease, font-size 0.24s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.front-end .header-primary-cta:hover{
  transform: translateX(var(--header-primary-cta-offset)) translateY(-1px);
  box-shadow: 0 14px 28px rgba(35, 176, 83, 0.2);
}

body.front-end header.headroom.is-scrolled .header-primary-cta{
  height: 2.48rem;
  min-height: 2.48rem;
  padding: 0.54rem 0.9rem;
  font-size: 0.94rem;
}

body.front-end .header-menu-trigger,
body.front-end .mobile-menu-trigger{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 2.9rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(11, 34, 70, 0.12);
  border-radius: 16px;
  background: #fff;
  color: #0b2246;
  font-family: campton-semibold, sans-serif;
  font-size: 0.98rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

body.front-end .header-menu-trigger{
  border-color: rgba(147, 169, 188, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  box-shadow: 0 4px 12px rgba(15, 38, 67, 0.05);
  color: #17324d;
  font-size: 1rem;
}

body.front-end .header-menu-trigger:hover,
body.front-end .mobile-menu-trigger:hover{
  border-color: rgba(11, 34, 70, 0.18);
  box-shadow: 0 10px 22px rgba(15, 38, 67, 0.08);
}

body.front-end .header-menu-trigger:hover{
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
}

body.front-end .header-menu-trigger:focus-visible,
body.front-end .mobile-menu-trigger:focus-visible,
body.front-end .header-primary-cta:focus-visible,
body.front-end .header-search button:focus-visible{
  outline: 3px solid rgba(239, 63, 75, 0.18);
  outline-offset: 2px;
}

body.front-end .header-menu-trigger__icon,
body.front-end .mobile-menu-trigger .hamburger-menu{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
}

body.front-end .header-menu-trigger__icon span,
body.front-end .mobile-menu-trigger .hamburger-menu span{
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.front-end .header-menu-trigger--desktop{
  width: 0;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-6px);
}

body.front-end header.headroom.is-scrolled .header-menu-trigger--desktop{
  width: auto;
  min-width: 0;
  padding-left: 0.95rem;
  padding-right: 0.95rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.front-end .mobile-menu-trigger{
  display: none;
}

body.front-end .mobile-menu-trigger.is-open .hamburger-menu span:nth-child(1){
  transform: translateY(4px) rotate(45deg);
}

body.front-end .mobile-menu-trigger.is-open .hamburger-menu span:nth-child(2){
  opacity: 0;
}

body.front-end .mobile-menu-trigger.is-open .hamburger-menu span:nth-child(3){
  transform: translateY(-4px) rotate(-45deg);
}

body.front-end .header-contrast-toggle{
  display: none;
}

body.front-end .header-mobile-actions{
  display: none;
}

body.front-end header.headroom .bottom-menu{
  max-height: 66px;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  background: #eaf4ff;
  border-top: 1px solid rgba(215, 228, 227, 0.92);
  transform: translateY(0);
  transition: max-height 0.24s ease, opacity 0.18s ease, transform 0.24s ease, border-color 0.24s ease, visibility 0s linear 0s;
}

body.front-end header.headroom .bottom-menu .inner-container{
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
}

body.front-end header.headroom .bottom-menu .blog-categories{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
}

body.front-end header.headroom .bottom-menu .blog-categories a{
  display: inline-flex;
  align-items: center;
  min-height: 66px;
  font-family: campton-book, sans-serif;
  font-size: 1.05rem;
  line-height: 1.15;
}

body.front-end header.headroom.is-scrolled .bottom-menu{
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-top-color: rgba(215, 228, 227, 0);
  transform: translateY(-8px);
  transition: max-height 0.24s ease, opacity 0.14s ease, transform 0.24s ease, border-color 0.24s ease, visibility 0s linear 0.24s;
}

body.front-end header.headroom.is-scrolled .mega-submenu-container{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.front-end .mobile-menu-bg{
  display: block !important;
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(15, 23, 42, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

body.front-end .mobile-menu-bg:not(.mobile-menu-bg--hidden){
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

body.front-end .mobile-menu-viewport{
  display: block;
  position: fixed !important;
  top: calc(var(--site-header-top-offset) + var(--site-header-active-height)) !important;
  right: 0;
  left: auto;
  z-index: 1095;
  width: min(420px, 100vw);
  height: calc(100dvh - (var(--site-header-top-offset) + var(--site-header-active-height))) !important;
  background-color: #fff !important;
  border-left: 1px solid rgba(15, 38, 67, 0.08);
  box-shadow: -18px 0 44px rgba(15, 38, 67, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(1.2rem);
  transition: top 0.24s ease, height 0.24s ease, opacity 0.2s ease, transform 0.24s ease, visibility 0s linear 0.24s;
}

body.front-end .mobile-menu-viewport[hidden]{
  display: none !important;
}

body.front-end .mobile-menu-viewport.mobile-menu-viewport--active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: top 0.24s ease, height 0.24s ease, opacity 0.2s ease, transform 0.24s ease;
}

body.front-end .mobile-menu-viewport .mobile-menu-container{
  height: 100%;
  overflow-y: auto;
  padding: 1.25rem 1.5rem 1.5rem;
}

body.front-end .mobile-menu-viewport .mobile-menu-container--show{
  padding-top: 1.25rem !important;
}

body.front-end .mobile-menu-viewport .mobile-menu-container .search-form.header-search{
  width: 100%;
  margin-bottom: 1.1rem;
}

body.front-end .mobile-menu-viewport .mobile-menu-container .search-form.header-search .header-search__input{
  min-height: 3.1rem;
  padding-right: 0.4rem;
  font-size: 0.98rem;
}

body.front-end .mobile-menu-viewport .mobile-menu-container .search-form.header-search .header-search__submit{
  width: 2.3rem;
  height: 2.3rem;
}

body.front-end .mobile-menu-viewport .mobile-menu{
  display: grid;
  gap: 0;
}

body.front-end .mobile-menu-viewport .mobile-menu-layers{
  position: relative;
}

body.front-end .mobile-menu-viewport .mobile-menu-layer{
  display: none;
}

body.front-end .mobile-menu-viewport .mobile-menu-layer.is-active{
  display: block;
}

body.front-end .mobile-menu-viewport .mobile-menu-layer__header{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.6rem;
  -webkit-user-select: none;
  user-select: none;
}

body.front-end .mobile-menu-viewport .mobile-menu-layer__header *{
  -webkit-user-select: none;
  user-select: none;
}

body.front-end .mobile-menu-viewport .mobile-menu-layer__back{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(15, 38, 67, 0.14);
  background: #ffffff;
  color: #22304f;
  font-family: campton-semibold, sans-serif;
  font-size: 0.93rem;
  line-height: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 4px 12px rgba(15, 38, 67, 0.06);
}

body.front-end .mobile-menu-viewport .mobile-menu-layer__back:hover,
body.front-end .mobile-menu-viewport .mobile-menu-layer__back:focus-visible{
  border-color: rgba(15, 38, 67, 0.24);
  box-shadow: 0 6px 14px rgba(15, 38, 67, 0.1);
}

body.front-end .mobile-menu-viewport .mobile-menu li{
  border-bottom: 1px solid rgba(15, 38, 67, 0.08);
}

body.front-end .mobile-menu-viewport .mobile-menu a{
  display: flex;
  align-items: center;
  min-height: 3.4rem;
  font-family: campton-book, sans-serif;
  font-size: 1.03rem !important;
  line-height: 1.35;
}

body.front-end .mobile-menu-viewport .mobile-menu .cat-item{
  width: 100%;
  min-height: 3.4rem;
  font-size: 1.03rem !important;
}

body.front-end .mobile-menu-viewport .mobile-menu .cat-item--next{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.4rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: #22304f;
  font-family: campton-book, sans-serif;
  font-size: 1.03rem !important;
  line-height: 1.35;
  padding: 0;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

body.front-end .mobile-menu-viewport .mobile-menu .cat-item__chevron{
  color: #6d8298;
  font-size: 1.4rem;
  line-height: 1;
}

body.front-end .mobile-menu-viewport .mobile-menu .cat-item--layer-parent-link{
  color: #31536e;
  font-family: campton-semibold, sans-serif;
}

body.front-end .mobile-menu-viewport .mobile-menu li.red-item a{
  color: #d63e4d;
  font-family: campton-semibold, sans-serif;
}

body.front-end .mobile-menu-viewport .mobile-menu-container > .tw-fixed{
  position: sticky !important;
  left: auto !important;
  bottom: 0 !important;
  width: 100% !important;
  margin-top: 1.25rem;
  padding: 1rem 0 0 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 24%);
}

body.front-end .mobile-menu-viewport .mobile-menu-container > .tw-h-\[77px\]{
  display: none !important;
}

body.front-end .mobile-menu-viewport .mobile-menu-container > .tw-fixed a{
  border-radius: 16px;
  min-height: 3.15rem;
  box-shadow: 0 12px 26px rgba(35, 176, 83, 0.16);
}

@media only screen and (max-width:899px){
  body.front-end{
    --site-header-expanded-height: 0px;
    --site-header-compact-height: 0px;
    --mobile-header-logo-width: 7rem;
    --mobile-header-logo-height: calc(var(--mobile-header-logo-width) * 151 / 234.2);
    --mobile-header-row-height: 5rem;
  }

  body.front-end .header-placeholder{
    display: none !important;
    height: 0 !important;
  }

  body.front-end header.headroom,
  body.front-end header.headroom.headroom--top,
  body.front-end header.headroom.is-scrolled{
    position: relative !important;
    top: auto !important;
    height: auto !important;
    transform: none !important;
    z-index: 1101;
    background: #fff;
    border-bottom-color: rgba(15, 38, 67, 0.06);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.front-end header.headroom .top-menu{
    display: block;
    min-height: var(--mobile-header-row-height);
    height: var(--mobile-header-row-height);
    padding: 0;
  }

  body.front-end header.headroom.is-scrolled .top-menu{
    min-height: var(--mobile-header-row-height);
    height: var(--mobile-header-row-height);
  }

  body.front-end header.headroom .top-menu .inner-container{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: min(100%, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 0;
    min-height: var(--mobile-header-row-height);
    height: var(--mobile-header-row-height);
    min-width: 0;
    box-sizing: border-box;
  }

  body.front-end .header-utilities,
  body.front-end .header-menu-trigger--desktop,
  body.front-end .header-actions,
  body.front-end header.headroom .bottom-menu,
  body.front-end .mega-submenu-container{
    display: none !important;
  }

  body.front-end header.headroom .logo,
  body.front-end header.headroom .header-mobile-logo{
    justify-self: auto;
    align-self: flex-start;
    display: block;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
    line-height: 0;
    flex: 0 0 auto;
  }

  body.front-end header.headroom .logo svg,
  body.front-end header.headroom .header-mobile-logo svg{
    width: var(--mobile-header-logo-width);
    height: var(--mobile-header-logo-height);
    display: block;
    transform: none;
  }

  body.front-end header.headroom.is-scrolled .logo svg,
  body.front-end header.headroom.is-scrolled .header-mobile-logo svg{
    width: var(--mobile-header-logo-width);
    height: var(--mobile-header-logo-height);
    display: block;
    transform: none;
  }

  body.front-end .header-mobile-controls{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
    margin-left: auto;
    gap: 0.375rem;
    padding: 0;
    min-height: 100%;
    min-width: 0;
    max-width: calc(100% - var(--mobile-header-logo-width) - 0.5rem);
    flex: 0 1 auto;
    height: 100%;
    box-sizing: border-box;
  }

  body.front-end .header-mobile-contrast-button,
  body.front-end .header-mobile-search-button,
  body.front-end .header-mobile-search-close,
  body.front-end .header-mobile-menu-button{
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    font: inherit;
    letter-spacing: inherit;
    text-decoration: none;
    box-sizing: border-box;
  }

  body.front-end .header-mobile-menu-button{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    max-width: min(100%, 7.25rem);
    inline-size: auto;
    min-width: 0;
    min-height: 2.625rem;
    padding: 0.52rem 0.62rem;
    gap: 0.32rem;
    border: 1px solid rgba(215, 228, 227, 0.9);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: none;
    color: #d73e4d;
    font-family: campton-semibold, sans-serif;
    font-size: 1rem;
    line-height: 1;
    flex: 0 1 auto;
    white-space: nowrap;
    overflow: hidden;
  }

  body.front-end .header-mobile-search-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    min-width: 2.625rem;
    height: 2.625rem;
    padding: 0;
    border: 1px solid rgba(215, 228, 227, 0.9);
    border-radius: 12px;
    background: #ffffff;
    color: #d73e4d;
    box-shadow: none;
    flex: 0 0 auto;
  }

  body.front-end .header-mobile-search-close{
    display: none;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 2.625rem;
    padding: 0.52rem 0.78rem;
    gap: 0.42rem;
    border: 1px solid rgba(215, 62, 77, 0.18);
    border-radius: 12px;
    background: #ffffff;
    color: #d73e4d;
    box-shadow: 0 10px 24px rgba(15, 38, 67, 0.08);
    font-family: campton-semibold, sans-serif;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  body.front-end .header-mobile-search-close[hidden]{
    display: none !important;
  }

  body.front-end .header-mobile-search-button__icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
  }

  body.front-end .header-mobile-search-button__svg{
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    color: currentColor;
  }

  body.front-end .header-mobile-search-close__label{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.front-end .header-mobile-search-close__icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
  }

  body.front-end .header-mobile-contrast-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #d73e4d;
    margin-top: 0;
    line-height: 1;
    flex: 0 0 auto;
  }

  body.front-end .header-mobile-contrast-button .icon-contrast{
    width: 20px;
    height: 20px;
  }

  body.front-end .header-mobile-contrast-button:hover,
  body.front-end .header-mobile-contrast-button:focus-visible{
    background: transparent;
    box-shadow: none;
  }

  body.front-end .header-mobile-menu-button:hover,
  body.front-end .header-mobile-menu-button:focus-visible{
    border-color: rgba(215, 228, 227, 1);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.92);
    outline-offset: 4px;
  }

  body.front-end .header-mobile-search-button:hover,
  body.front-end .header-mobile-search-button:focus-visible,
  body.front-end .header-mobile-search-close:hover,
  body.front-end .header-mobile-search-close:focus-visible{
    border-color: rgba(215, 62, 77, 0.28);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 28px rgba(15, 38, 67, 0.1);
    outline-offset: 4px;
  }

  body.front-end .header-mobile-controls.is-search-open .header-mobile-contrast-button,
  body.front-end .header-mobile-controls.is-search-open .header-mobile-search-button,
  body.front-end .header-mobile-controls.is-search-open .header-mobile-menu-button{
    display: none;
  }

  body.front-end .header-mobile-controls.is-search-open .header-mobile-search-close{
    display: inline-flex;
  }

  body.front-end .header-mobile-menu-button__icon{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 0.82rem;
    height: 0.82rem;
    gap: 0.16rem;
    flex: 0 0 0.82rem;
    position: relative;
  }

  body.front-end .header-mobile-menu-button__icon span{
    display: block;
    width: 0.82rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  body.front-end .header-mobile-menu-button.is-open .header-mobile-menu-button__icon,
  body.front-end .header-mobile-menu-button[aria-expanded="true"] .header-mobile-menu-button__icon{
    gap: 0;
  }

  body.front-end .header-mobile-menu-button.is-open .header-mobile-menu-button__icon span,
  body.front-end .header-mobile-menu-button[aria-expanded="true"] .header-mobile-menu-button__icon span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.82rem;
    height: 2.4px;
    margin: 0;
    border-radius: 999px;
    transform-origin: center;
  }

  body.front-end .header-mobile-menu-button.is-open .header-mobile-menu-button__icon span:nth-child(1),
  body.front-end .header-mobile-menu-button[aria-expanded="true"] .header-mobile-menu-button__icon span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.front-end .header-mobile-menu-button.is-open .header-mobile-menu-button__icon span:nth-child(2),
  body.front-end .header-mobile-menu-button[aria-expanded="true"] .header-mobile-menu-button__icon span:nth-child(2){
    opacity: 0;
  }

  body.front-end .header-mobile-menu-button.is-open .header-mobile-menu-button__icon span:nth-child(3),
  body.front-end .header-mobile-menu-button[aria-expanded="true"] .header-mobile-menu-button__icon span:nth-child(3){
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  body.front-end .header-mobile-menu-button__label{
    display: none;
    align-items: center;
    justify-content: center;
    font-family: campton-semibold, sans-serif;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    min-width: 0;
    flex: 0 1 auto;
  }

  body.front-end .header-search{
    height: 2.9rem;
    min-height: 2.9rem;
    padding-left: 0.84rem;
    border-radius: 15px;
  }

  body.front-end .header-search__input{
    height: 2.9rem;
    min-height: 2.9rem;
    font-size: 0.96rem;
  }

  body.front-end .mobile-header-search-panel{
    position: fixed;
    top: var(--ltih-mobile-header-offset, var(--mobile-header-row-height));
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--ltih-mobile-header-offset, var(--mobile-header-row-height)));
    padding: 0.25rem 0 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 24%, #f7fafc 100%);
    border-top: 1px solid rgba(15, 38, 67, 0.08);
    box-shadow: 0 20px 40px rgba(15, 38, 67, 0.08);
    overflow-y: auto;
    z-index: 1100;
    opacity: 0;
    transform: translateY(-0.5rem);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  body.front-end .mobile-header-search-panel.mobile-header-search-panel--active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.front-end .mobile-header-search-panel__inner{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 0.75rem;
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom));
  }

  body.front-end .mobile-header-search-form{
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
    border: 1px solid rgba(215, 62, 77, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 28px rgba(15, 38, 67, 0.08);
  }

  body.front-end .mobile-header-search-form:focus-within{
    border-color: #cfd8e1;
    box-shadow: 0 0 0 3px rgba(34, 51, 69, 0.06), 0 14px 30px rgba(15, 38, 67, 0.09);
  }

  body.front-end .mobile-header-search-form__input{
    height: 3.3rem;
    min-height: 3.3rem;
    padding-right: 0.75rem;
    font-size: 1.04rem;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    outline-offset: 0 !important;
    -webkit-appearance: none;
    appearance: none;
    border-width: 0 !important;
    border-style: solid;
    background-clip: padding-box;
  }

  body.front-end .mobile-header-search-form__input:focus,
  body.front-end .mobile-header-search-form__input:focus-visible{
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    outline-offset: 0 !important;
  }

  body.front-end .mobile-header-search-form__submit{
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: #f03e4b;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(240, 62, 75, 0.22);
  }

  body.front-end .mobile-header-search-form__submit:hover,
  body.front-end .mobile-header-search-form__submit:focus-visible{
    background: #de3340;
    box-shadow: 0 14px 28px rgba(240, 62, 75, 0.26);
    transform: none;
  }

  body.front-end .mobile-header-search-form__submit .header-search__icon{
    color: currentColor;
  }

  body.front-end .mobile-header-search-panel__suggestions{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  body.front-end .mobile-header-search-panel__suggestions-title{
    margin: 0;
    color: #5f6f80;
    font-family: campton-semibold, sans-serif;
    font-size: 0.96rem;
    line-height: 1.2;
  }

  body.front-end .mobile-header-search-panel__suggestions-list{
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body.front-end .mobile-header-search-panel__suggestion-link{
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.92rem 1rem;
    border: 1px solid rgba(215, 228, 227, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(15, 38, 67, 0.05);
    color: #223345;
    font-family: campton-book, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  }

  body.front-end .mobile-header-search-panel__suggestion-link:hover,
  body.front-end .mobile-header-search-panel__suggestion-link:focus-visible{
    border-color: rgba(215, 62, 77, 0.24);
    box-shadow: 0 14px 28px rgba(15, 38, 67, 0.08);
    transform: translateY(-1px);
  }

  body.front-end .mobile-header-search-panel__suggestion-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(215, 62, 77, 0.08);
    color: #d73e4d;
    flex: 0 0 auto;
  }

  body.front-end .mobile-header-search-panel__suggestion-svg{
    display: block;
    width: 1rem;
    height: 1rem;
    color: currentColor;
  }

  body.front-end .mobile-menu-viewport{
    top: var(--ltih-mobile-header-offset, var(--mobile-header-row-height)) !important;
    left: 0;
    width: 100vw;
    height: calc(100dvh - var(--ltih-mobile-header-offset, var(--mobile-header-row-height))) !important;
    border-left: 0;
    box-shadow: none;
    transform: translateY(-0.8rem);
  }

  body.front-end .mobile-menu-viewport.mobile-menu-viewport--active{
    transform: translateY(0);
  }

  body.front-end .mobile-menu-viewport .mobile-menu-container{
    padding: 1rem 1rem 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce){
  body.front-end header.headroom,
  body.front-end header.headroom *,
  body.front-end .mobile-menu-bg,
  body.front-end .mobile-menu-viewport,
  body.front-end .mobile-header-search-panel{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

body.front-end footer .footer-bottom .left{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
}

body.front-end footer .footer-bottom .left > a,
body.front-end footer .footer-bottom .left > .footer-bottom-text{
  display:flex;
  align-items:center;
  line-height:1.2;
}

body.front-end footer .footer-bottom .left .footer-bottom-text{
  white-space:nowrap;
}

body.front-end h1{
  font-size:32px;
  line-height:1.2;
}

body.front-end .block.blog-block.blog-text h1{
  font-size:32px;
  text-align:left;
  margin-left:0;
  margin-right:0;
  max-width:none;
  width:100%;
}

body.front-end.theme-thh .block.blog-block.blog-text.ltih-auto-h1 .inner-container--medium{
  max-width:1300px;
}

body.front-end .tiny-content .ltih-toc-list{
  list-style:none!important;
  margin:10px 0 0;
  padding-left:0!important;
}
body.front-end .ltih-toc-section{
  padding-bottom:48px;
}
body.front-end .tiny-content .ltih-toc-card{
  background:#fff;
  border:1px solid #d3d9e3;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(21, 40, 62, 0.08);
}
body.front-end .tiny-content .ltih-toc-card > summary{
  position:relative;
  list-style:none;
  cursor:pointer;
  padding:1.1rem 4.25rem 1.1rem 2.15rem;
  font-family:campton-bold,sans-serif;
  font-size:1.2rem;
  line-height:1.2;
  font-weight:700;
  color:#000;
}
body.front-end .tiny-content .ltih-toc-card > summary::-webkit-details-marker{
  display:none;
}
body.front-end .tiny-content .ltih-toc-card > summary::after{
  content:"+";
  position:absolute;
  right:1.9rem;
  top:50%;
  transform:translateY(-50%);
  color:#d63e4d;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:2.4rem;
  line-height:1;
  font-weight:700;
}
body.front-end .tiny-content .ltih-toc-card[open] > summary::after{
  content:"−";
}
body.front-end .tiny-content .ltih-toc-card-body{
  padding:0 1.65rem 1.25rem;
}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-item{
  list-style:none!important;
  margin:0;
  padding-left:0;
  border-top:1px solid #d8dde5;
  position:relative;
}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-level-2{padding-left:16px}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-level-3{padding-left:32px}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-level-4{padding-left:48px}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-level-5{padding-left:64px}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-level-6{padding-left:80px}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-item a{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:66px;
  padding:0.2rem 3.5rem 0.2rem 0;
  color:#000;
  font-family:campton-book,sans-serif;
  font-size:1.2rem;
  line-height:1.3;
  text-decoration:none;
  position:relative;
  border-radius:14px;
  transition:none;
}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-item a::before{
  content:"";
  width:16px;
  height:16px;
  flex:0 0 16px;
  border-radius:999px;
  background:#ef3f5d;
  box-shadow:0 0 0 4px rgba(239,63,93,0.08);
}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-item a::after{
  content:"›";
  position:absolute;
  right:0.95rem;
  top:50%;
  transform:translateY(-50%);
  color:#9ab0c2;
  font-size:2.9rem;
  line-height:1;
  font-weight:400;
}
body.front-end .tiny-content .ltih-toc-list .ltih-toc-item a:hover,
body.front-end .tiny-content .ltih-toc-list .ltih-toc-item a:focus-visible{
  color:#000;
  outline:none;
}

body.front-end .ltih-product-order-card{
  background:transparent;
}
body.front-end .ltih-product-order-layout{
  display:grid;
  grid-template-columns:minmax(320px, 1fr) minmax(420px, 1fr);
  gap:56px;
  align-items:start;
}
body.front-end .ltih-product-order-media picture,
body.front-end .ltih-product-order-media img{
  display:block;
  width:100%;
  height:auto;
}
body.front-end .ltih-product-order-card-title{
  margin:0 0 8px;
  font-family:campton-bold,sans-serif;
  font-size:32px;
  line-height:1.08;
  color:#000;
}
body.front-end .ltih-product-order-card-rating{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:26px;
}
body.front-end .ltih-product-order-stars{
  color:#f4b400;
  letter-spacing:6px;
  font-size:34px;
  line-height:1;
}
body.front-end .ltih-product-order-card-rating img{
  max-width:170px;
  height:auto;
}
body.front-end .ltih-product-order-card-rating-meta{
  font-family:campton-book,sans-serif;
  color:#111;
  font-size:20px;
  line-height:1;
}
body.front-end .ltih-product-order-card-rating-meta a{
  color:#ef3f5d;
}
body.front-end .ltih-product-order-card-description{
  margin-bottom:28px;
}
body.front-end .ltih-product-order-mini-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
  gap:16px;
  margin-top:24px;
}
body.front-end .ltih-product-order-mini-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:#fff;
  border:1px solid #d7e4e3;
  border-radius:8px;
}
body.front-end .ltih-product-order-mini-card__image{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:150px;
  padding:12px;
  background:#f8fbfb;
}
body.front-end .ltih-product-order-mini-card__image img{
  display:block;
  width:100%;
  height:130px;
  object-fit:contain;
}
body.front-end .ltih-product-order-mini-card__body{
  display:flex;
  flex:1;
  flex-direction:column;
  gap:8px;
  padding:14px;
}
body.front-end .ltih-product-order-mini-card__body h3{
  margin:0;
  font-family:campton-semibold,sans-serif;
  font-size:18px;
  line-height:1.25;
  height:66px;
  min-height:66px;
}
body.front-end .ltih-product-order-mini-card__body h3 a{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  color:inherit;
  text-decoration:none;
}
body.front-end .ltih-product-order-mini-card__body h3 a:hover,
body.front-end .ltih-product-order-mini-card__body h3 a:focus-visible{
  color:#d63e4d;
}
body.front-end .ltih-product-order-mini-card__rating{
  font-size:14px;
}
body.front-end .ltih-product-order-mini-card__price{
  color:#d63e4d;
  font-family:campton-semibold,sans-serif;
  font-size:20px;
}
body.front-end .ltih-product-order-mini-card__price span{
  color:#7a8b8b;
  font-size:0.85em;
  font-weight:500;
  text-decoration:line-through;
}
body.front-end .ltih-product-order-mini-card__cart-form{
  margin-top:auto;
}
body.front-end .ltih-product-order-mini-card__cta{
  width:100%;
  margin-top:auto;
  text-align:center;
  border:0;
  cursor:pointer;
}
body.front-end .ltih-product-order-card-product-label{
  font-family:campton-semibold,sans-serif;
  font-size:20px;
  margin-bottom:8px;
}
body.front-end .ltih-product-order-card-price-label,
body.front-end .ltih-product-order-card-total-label{
  display:block;
  font-family:campton-semibold,sans-serif;
  font-size:20px;
  margin:0 0 8px;
  color:#000;
}
body.front-end .ltih-product-order-card-price-field,
body.front-end .ltih-product-order-card-total-field{
  background:#efefef;
  border-radius:12px;
  padding:18px 22px;
  font-family:campton-book,sans-serif;
  font-size:20px;
  line-height:1.1;
  margin-bottom:8px;
}
body.front-end .ltih-product-order-card-price-note{
  color:#000;
  font-family:campton-book,sans-serif;
  font-size:20px;
  margin:0 0 18px;
}
body.front-end .ltih-product-order-card-addon-group{
  margin-bottom:16px;
}
body.front-end .ltih-product-order-card-addon{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:0 0 20px;
  font-family:campton-book,sans-serif;
  font-size:20px;
  line-height:1.3;
}
body.front-end .ltih-product-order-card-addon strong{
  font-family:campton-semibold,sans-serif;
}
body.front-end .ltih-product-order-card-addon input{
  width:26px;
  height:26px;
  margin-top:6px;
}
body.front-end .ltih-product-order-card-button{
  display:inline-block;
  margin-top:10px;
}
@media only screen and (max-width: 1100px){
  body.front-end .ltih-product-order-layout{
    grid-template-columns:1fr;
    gap:24px;
  }
  body.front-end .ltih-product-order-content{
    order:1;
  }
  body.front-end .ltih-product-order-media{
    order:2;
  }
}

/* Assessment + Valrisk */
.assessment-intro {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.assessment-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.assessment-room-card {
  display: block;
  border: 1px solid #d7e4e3;
  border-radius: 10px;
  background: #fff;
  padding: 1rem;
  color: #0f2f4f;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

.assessment-room-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  transform: translateY(-1px);
}

.assessment-room-card h3 {
  margin: 0 0 .4rem;
}

.assessment-room-card p {
  margin: 0 0 .85rem;
}

.assessment-panel {
  border: 1px solid #d7e4e3;
  border-radius: 10px;
  background: #fff;
  padding: 1.25rem;
}

.assessment-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.assessment-form {
  display: grid;
  gap: .85rem;
}

.assessment-consent {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.assessment-error {
  color: #b91c1c;
  font-weight: 600;
}

.assessment-score {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.assessment-score strong {
  font-size: 2rem;
}

.assessment-risk-badge {
  background: #fde68a;
  color: #7c2d12;
  border-radius: 999px;
  padding: .2rem .7rem;
  font-weight: 700;
}

.assessment-issues {
  display: grid;
  gap: .8rem;
}

.assessment-issue-card {
  border: 1px solid #e5e7eb;
  border-radius: .6rem;
  padding: .8rem;
}

@media (max-width: 900px) {
  .assessment-two-col {
    grid-template-columns: 1fr;
  }
}

.ltih-product-cards-header {
  margin-bottom: 28px;
}

.ltih-product-cards-title {
  margin-bottom: 0;
}

.ltih-product-cards-description {
  margin-top: 12px;
}

.ltih-product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.ltih-product-card {
  background: #fff;
  border: 1px solid #d7e4e3;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ltih-product-card-image-wrap {
  display: block;
  background: #f8fbfb;
  padding: 12px;
  min-height: 180px;
}

.ltih-product-card-image-wrap img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.ltih-product-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.ltih-product-card-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  min-height: 2.6em;
}

.ltih-product-card-body h3 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.ltih-product-card-body h3 a:hover,
.ltih-product-card-body h3 a:focus-visible {
  color: #d63e4d;
}

.ltih-product-brand {
  margin: 0;
  color: #666;
}

.ltih-product-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.ltih-product-price {
  color: #d63e4d;
}

.ltih-product-price-old {
  color: #7a8b8b;
  font-size: 0.9em;
  font-weight: 500;
  text-decoration: line-through;
}

.ltih-product-cta {
  margin-top: auto;
  text-align: center;
}

.ltih-product-cta-form {
  margin-top: auto;
}

.ltih-product-cards-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.ltih-offer-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cegg-list .cegg-list-card{
  background:#fff;
  border:1px solid #d7e4e3;
  border-radius:10px;
}
.cegg-item_simple .cegg-item-card{
  background:#fff;
  border:1px solid #d7e4e3;
  border-radius:10px;
}
.cegg-list .row{display:flex;flex-wrap:wrap}
.cegg-list .col-3{width:25%}
.cegg-list .col-9{width:75%}
.cegg-list .col-md-2,.cegg-list .col-md-3,.cegg-list .col-md-7{width:100%}
.cegg-list .offset-3{margin-left:25%}
.cegg-list .offset-md-0{margin-left:0}
.cegg-list .p-2{padding:.5rem}
.cegg-list .p-md-3{padding:1rem}
.cegg-list .pt-3{padding-top:1rem}

/* AOW intro fine-tuning */
.block.text-image {
  padding-top: 36px;
  padding-bottom: 36px;
}

.text-image.block--bg-primary-i .inner-container,
.text-image.block--bg-secondary-i .inner-container,
.text-image.block--bg-tertiary-i .inner-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  background: transparent;
}

.text-image .text-image-wrapper {
  display: flex;
  align-items: stretch;
  min-height: clamp(430px, 29vw, 520px);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 227, 237, 0.92);
  border-radius: 34px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbfe 100%);
  box-shadow: 0 18px 42px rgba(18, 64, 104, 0.08);
}

.text-image .text-image-wrapper--text-left {
  flex-direction: row;
}

.text-image .text-image-wrapper--text-right {
  flex-direction: row-reverse;
}

.text-image .text-image-wrapper .spacer {
  display: none;
}

.text-image .text-container,
.text-image .image {
  display: flex;
  width: 50%;
  flex: 0 0 50%;
  min-width: 0;
}

.text-image .text-container {
  padding: clamp(0.7rem, 1.2vw, 1.05rem) clamp(2rem, 3.4vw, 3.5rem) clamp(0.65rem, 1.1vw, 0.95rem);
}

.text-image .text-container .text-container-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 34rem;
}

.text-image .text-container .text-container-inner > :first-child {
  margin-top: 0;
}

.text-image .text-container .text-container-inner > :last-child {
  margin-bottom: 0;
}

.text-image .text-container .text-container-inner h2 {
  margin-bottom: 0.2rem;
  font-size: clamp(1.58rem, 2.08vw, 2.54rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.text-image .text-container .text-container-inner p {
  font-size: clamp(1.02rem, 1.22vw, 1.24rem);
  line-height: 1.54;
  color: #1e3a53;
}

.text-image .text-container .text-container-inner strong {
  color: #081f38;
}

.text-image .text-container .text-image-cta-row {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.text-image .text-container .text-image-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4d5a 0%, #d73e4d 100%);
  color: #fff;
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(215, 62, 77, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.text-image .text-container .text-image-cta:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(215, 62, 77, 0.2);
}

.text-image .text-container .text-image-cta:focus-visible {
  outline: 3px solid rgba(239, 63, 75, 0.18);
  outline-offset: 3px;
  text-decoration: none;
}

.text-image .image {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  background: #d8e6f2;
}

.text-image .image picture,
.text-image .image .text-image-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.text-image .image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.text-image.text-image--no-media .text-container {
  width: 100%;
  flex-basis: 100%;
  max-width: none;
}

.text-image.text-image--no-media .image {
  display: none;
}

.text-image.aow-intro-block .text-container-inner .aow-intro-lead-copy {
  margin-top: 1rem;
}

.text-image.aow-intro-block .text-container-inner .aow-intro-cta-row {
  padding-top: 1.1rem !important;
}

.text-image.aow-intro-block .text-container-inner .aow-intro-cta-row .cta {
  padding: 12px 28px;
  font-size: 18px;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .text-image .text-image-wrapper,
  .text-image .text-image-wrapper--text-left,
  .text-image .text-image-wrapper--text-right {
    flex-direction: column-reverse;
    min-height: 0;
    border-radius: 26px;
  }

  .text-image .text-container,
  .text-image .image {
    width: 100% !important;
    flex: 0 0 auto;
  }

  .text-image .text-container {
    padding: 0.8rem 1.3rem 0.75rem;
  }

  .text-image .text-container .text-container-inner {
    max-width: none;
  }

  .text-image .image {
    min-height: clamp(240px, 52vw, 360px);
  }

  .text-image .image picture,
  .text-image .image .text-image-picture,
  .text-image .image img {
    inset: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

@media (max-width: 641px) {
  .block.text-image {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .text-image.block--bg-primary-i .inner-container,
  .text-image.block--bg-secondary-i .inner-container,
  .text-image.block--bg-tertiary-i .inner-container {
    padding: 0 20px;
  }

  .text-image .text-image-wrapper {
    border-radius: 22px;
  }

  .text-image .text-container {
    padding: 0.7rem 1.15rem 0.65rem;
  }

  .text-image .text-container .text-container-inner h2 {
    font-size: clamp(1.46rem, 5.2vw, 1.84rem);
  }

  .text-image .text-container .text-image-cta {
    width: 100%;
  }

  .text-image .image {
    min-height: 220px;
  }

  .text-image .image img {
    object-position: center center !important;
    transform: scale(1.06);
    transform-origin: center center;
  }
}

#aow-calculator .tiny-content .aow-calc-title {
  margin-bottom: 1.1rem;
}

#aow-calculator .tiny-content .aow-calc-intro {
  margin-bottom: 1.35rem;
}

#aow-calculator .aow-calc-form .aow-calc-field {
  margin-bottom: 0.9rem;
}

#aow-calculator .aow-calc-input-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

#aow-calculator .aow-calc-date-input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 56px;
  min-height: 56px;
  box-sizing: border-box;
  min-width: 0;
  padding: 0 4.25rem 0 1rem;
  line-height: 56px;
}

#aow-calculator .aow-calc-picker-btn {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 12px;
  background: #eef5fb center / 1.2rem 1.2rem no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2317324d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.25' y='3.5' width='11.5' height='10.25' rx='1.75'/%3E%3Cpath d='M5 2.25v2.5M11 2.25v2.5M2.5 6.5h11'/%3E%3C/svg%3E");
  cursor: pointer;
  z-index: 2;
}

#aow-calculator .aow-calc-picker-btn:focus-visible {
  outline: 3px solid #ef3f4b;
  outline-offset: 2px;
}

#aow-calculator .aow-calc-date-input::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0;
  transform: translateY(-50%);
  opacity: 0;
  cursor: pointer;
}

#aow-calculator .aow-calc-input-wrap.use-native-picker-indicator .aow-calc-picker-btn {
  pointer-events: none;
}

#aow-calculator .aow-calc-result-title {
  margin-top: 1.2rem;
  margin-bottom: 0.65rem;
}

#aow-calculator .aow-calc-result-line {
  margin: 0 0 0.38rem;
  line-height: 1.35;
}

#aow-calculator .aow-calc-result-note {
  margin-top: 0.9rem;
}

#aow-betaaldagen .aow-payment-intro {
  margin-top: 0.65rem;
}

#aow-betaaldagen .aow-payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.82fr);
  gap: 1.5rem;
  align-items: start;
}

#aow-betaaldagen .aow-payment-main {
  min-width: 0;
}

#aow-betaaldagen .aow-payment-note-box {
  margin-top: 1.5rem;
  border: 1px solid #d6e3ed;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbfe 0%, #f1f7fc 100%);
  padding: 1.15rem 1.25rem;
}

#aow-betaaldagen .aow-payment-note-box h3 {
  margin: 0 0 0.65rem;
  color: #1f4258;
  font-size: 1.18rem;
  line-height: 1.3;
}

#aow-betaaldagen .aow-payment-note-box p {
  margin: 0 0 0.85rem;
  color: #315067;
}

#aow-betaaldagen .aow-payment-note-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #315067;
}

#aow-betaaldagen .aow-payment-note-list li + li {
  margin-top: 0.55rem;
}

#aow-betaaldagen .aow-payment-download-card {
  align-self: start;
  border: 1px solid #d6e3ed;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f9fcff 72%, #eef5fb 100%);
  box-shadow: 0 8px 20px rgba(45, 79, 104, 0.07);
  padding: 1.35rem 1.4rem;
}

#aow-betaaldagen .aow-payment-download-card h3 {
  margin: 0 0 0.75rem;
  color: #1f4258;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.22;
}

#aow-betaaldagen .aow-payment-download-card p {
  margin: 0 0 0.85rem;
}

#aow-betaaldagen .aow-payment-download-form .ltih-form-block {
  margin-top: 1rem;
}

#aow-betaaldagen .aow-payment-download-form .gform_wrapper {
  padding: 0;
  margin: 0;
  background: transparent;
}

#aow-betaaldagen .aow-payment-download-form .gform-body,
#aow-betaaldagen .aow-payment-download-form .gform-footer {
  width: 100%;
}

#aow-betaaldagen .aow-payment-download-form .gform_fields {
  display: grid;
  gap: 0.95rem;
}

#aow-betaaldagen .aow-payment-download-form .gfield {
  margin: 0;
}

#aow-betaaldagen .aow-payment-download-form .gfield_label {
  display: block;
  margin-bottom: 0.35rem;
  color: #1f4258;
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

#aow-betaaldagen .aow-payment-download-form input[type=text],
#aow-betaaldagen .aow-payment-download-form input[type=email] {
  height: 56px;
  border-radius: 10px;
}

#aow-betaaldagen .aow-payment-download-form .gform-footer {
  margin-top: 1rem;
}

#aow-betaaldagen .aow-payment-download-form .gform_button {
  width: 100%;
}

#aow-betaaldagen .aow-payment-download-message {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.97rem;
  line-height: 1.5;
}

#aow-betaaldagen .aow-payment-download-message--error {
  border: 1px solid #f3b9c0;
  background: #fff3f5;
  color: #8a2430;
}

#aow-betaaldagen .aow-payment-download-message--success {
  border: 1px solid #b8dfc0;
  background: #f3fff5;
  color: #1f6b31;
}
#aow-betaaldagen .aow-payment-download-message-detail {
  display: inline;
}

#aow-betaaldagen .aow-payment-download-auto {
  display: none;
}
#aow-betaaldagen .aow-payment-download-cta {
  margin-top: 1.1rem;
}

#aow-betaaldagen .aow-payment-download-cta .cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

#aow-betaaldagen .aow-payment-download-note {
  margin-bottom: 0;
  color: #4b6a7d;
  font-size: 0.98rem;
  line-height: 1.55;
}

.ltih-faq {
  max-width: 980px;
  margin-inline: auto;
}

.ltih-faq__title {
  margin-bottom: 2rem;
}

.ltih-faq__intro {
  margin-bottom: 1rem;
  color: #2d4f61;
}

.ltih-faq__intro p:last-child {
  margin-bottom: 0;
}

.ltih-faq__list {
  display: grid;
  gap: 0.75rem;
}

.ltih-faq__title + .ltih-faq__list {
  margin-top: 1.5rem;
}

.ltih-faq__intro + .ltih-faq__list {
  margin-top: 1rem;
}

.ltih-faq__item {
  background: #ffffff;
  border: 1px solid #c9dce6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(13, 54, 75, 0.06);
}

.ltih-faq__heading {
  margin: 0;
}

.ltih-faq__trigger {
  width: 100%;
  border: 0;
  background: #fff;
  cursor: pointer;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.ltih-faq__trigger:focus-visible {
  outline: 3px solid #e46d47;
  outline-offset: -3px;
}

.ltih-faq__question {
  flex: 1 1 auto;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 600;
  color: #173848;
}

.ltih-faq__icon {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: #e7f3f8;
  color: #173848;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
}

.ltih-faq__icon::before {
  content: "+";
}

.ltih-faq__trigger[aria-expanded="true"] .ltih-faq__icon::before {
  content: "−";
}

.ltih-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}

.ltih-faq__panel.is-open {
  grid-template-rows: 1fr;
}

.ltih-faq__panel-inner {
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.ltih-faq__panel.is-open .ltih-faq__panel-inner {
  visibility: visible;
}

.ltih-faq__answer {
  padding: 0 1.1rem 1.1rem;
}

.ltih-faq__answer p,
.ltih-faq__answer ul,
.ltih-faq__answer ol {
  margin: 0 0 0.9rem;
  color: #2d4f61;
}

.ltih-faq__answer p:last-child,
.ltih-faq__answer ul:last-child,
.ltih-faq__answer ol:last-child {
  margin-bottom: 0;
}

.ltih-faq__answer a {
  color: #0c6a85;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ltih-faq__answer strong {
  color: #173848;
}

.editorial-trust-block {
  --editorial-trust-border: #dde5ea;
  --editorial-trust-border-strong: #d1dce3;
  --editorial-trust-surface: #ffffff;
  --editorial-trust-surface-soft: #fcfdfd;
  --editorial-trust-ink: #173848;
  --editorial-trust-muted: #506f80;
  --editorial-trust-accent: #cf3b4f;
}

body.front-end .editorial-trust-block,
body.front-end .editorial-trust-block h2,
body.front-end .editorial-trust-block h3,
body.front-end .editorial-trust-block p,
body.front-end .editorial-trust-block a,
body.front-end .editorial-trust-block li,
body.front-end .editorial-trust-block div,
body.front-end .editorial-trust-block span,
body.front-end .editorial-trust-block time,
body.front-end .editorial-trust-block .editorial-trust-block__source-item::before {
  font-family: campton-book, sans-serif !important;
}

.editorial-trust-block .tiny-content {
  max-width: 980px;
  margin-inline: auto;
}

.editorial-trust-block__shell {
  display: grid;
  gap: 1.2rem;
}

.editorial-trust-block__header {
  margin-bottom: 0.1rem;
}

body.front-end .editorial-trust-block__heading {
  margin: 0;
  color: var(--editorial-trust-ink);
  font-size: clamp(1.45rem, 1.2rem + 0.7vw, 1.9rem) !important;
  line-height: 1.1;
}

.editorial-trust-block__cards {
  display: grid;
  gap: 1.1rem;
}

.editorial-trust-block__lower-grid {
  display: grid;
  gap: 1.1rem;
}

.editorial-trust-block__card {
  background: var(--editorial-trust-surface);
  border: 1px solid var(--editorial-trust-border);
  border-radius: 22px;
  box-shadow: 0 3px 16px rgba(24, 61, 81, 0.04);
}

.editorial-trust-block__card--author {
  border-color: var(--editorial-trust-border-strong);
  box-shadow: 0 8px 24px rgba(24, 61, 81, 0.05);
}

.editorial-trust-block__author-layout {
  display: grid;
  gap: 1.25rem;
  padding: 1.2rem;
  align-items: start;
}

.editorial-trust-block__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  border-radius: 24px;
  overflow: hidden;
}

.editorial-trust-block__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-position: center;
  border-radius: inherit;
}

.editorial-trust-block__media--contain img {
  object-fit: contain;
}

.editorial-trust-block__media--cover img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 214px;
  object-fit: cover;
}

.editorial-trust-block__body {
  padding: 1.2rem;
}

.editorial-trust-block__card--author .editorial-trust-block__body {
  padding: 0;
}

.editorial-trust-block__author-header {
  display: grid;
  gap: 0.38rem;
}

.editorial-trust-block__author-copy {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid #f03e4b;
}

body.front-end .editorial-trust-block__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.62rem !important;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #567689;
}

body.front-end .editorial-trust-block__card-title {
  margin: 0;
  color: var(--editorial-trust-ink);
  font-size: 1.08rem !important;
  line-height: 1.25;
}

body.front-end .editorial-trust-block__card-title--compact {
  font-size: 0.9rem !important;
}

body.front-end .editorial-trust-block__card-title--section {
  font-size: 0.98rem !important;
}

.editorial-trust-block__name-link,
.editorial-trust-block__source-link,
.editorial-trust-block__cta {
  color: var(--editorial-trust-accent);
  text-decoration: none;
  font-size: inherit !important;
  line-height: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}

.editorial-trust-block__name-link:hover,
.editorial-trust-block__source-link:hover,
.editorial-trust-block__cta:hover {
  color: #a42c3f;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.editorial-trust-block__name-link:focus-visible,
.editorial-trust-block__source-link:focus-visible,
.editorial-trust-block__cta:focus-visible {
  outline: 3px solid #e46d47;
  outline-offset: 3px;
  border-radius: 4px;
}

.editorial-trust-block__name-text {
  color: inherit;
}

body.front-end .editorial-trust-block__date {
  margin: 0.2rem 0 0;
  color: #567689;
  font-size: 0.8rem !important;
}

body.front-end .editorial-trust-block__text,
body.front-end .editorial-trust-block__source-note {
  margin: 0.85rem 0 0;
  color: var(--editorial-trust-muted);
  font-size: 0.86rem !important;
  line-height: 1.6 !important;
}

.editorial-trust-block__text--compact {
  line-height: 1.68;
}

.editorial-trust-block__cta-row {
  margin: 1.2rem 0 0;
}

.editorial-trust-block__cta {
  font-weight: 600;
}

.editorial-trust-block__card--reviewer,
.editorial-trust-block__card--sources {
  padding: 1.3rem 1.35rem;
  min-height: 100%;
}

.editorial-trust-block__card--reviewer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: #ffffff;
}

.editorial-trust-block__card--reviewer .editorial-trust-block__body,
.editorial-trust-block__card--sources .editorial-trust-block__body {
  padding: 0;
}

.editorial-trust-block__reviewer-badge {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 999px;
  border: 1px solid #cfe2d5;
  background:
    linear-gradient(180deg, #f6fbf7 0%, #eef7f0 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  position: relative;
  margin-top: 0.15rem;
  flex: 0 0 auto;
}

.editorial-trust-block__reviewer-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.45rem;
  height: 1.45rem;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f8a57' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5.5 12.5 4.1 4.1L18.7 7.4'/%3E%3C/svg%3E");
}

.editorial-trust-block__source-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: editorial-source;
  display: grid;
  gap: 1rem;
}

.editorial-trust-block__source-item {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  column-gap: 0.5rem;
  align-items: start;
  min-width: 0;
}

.editorial-trust-block__source-item::before {
  counter-increment: editorial-source;
  content: counter(editorial-source) ".";
  grid-column: 1;
  grid-row: 1;
  display: block;
  color: #567689;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: left;
  padding-top: 0.04rem;
}

.editorial-trust-block__source-item--with-publisher::before {
  padding-top: 0.95rem;
}

.editorial-trust-block__source-content {
  grid-column: 2;
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

body.front-end .editorial-trust-block__source-publisher {
  color: #567689;
  font-size: 0.74rem !important;
  line-height: 1.2 !important;
  margin: 0;
}

body.front-end .editorial-trust-block__source-title {
  min-width: 0;
  color: var(--editorial-trust-ink);
  font-weight: 500;
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0;
}

@media (min-width: 768px) {
  .editorial-trust-block__lower-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: stretch;
  }

  .editorial-trust-block__author-layout {
    grid-template-columns: minmax(108px, 132px) minmax(0, 1fr);
    gap: 1.6rem;
    padding: 1.55rem 1.65rem;
  }

  .editorial-trust-block__media {
    min-height: 108px;
    max-height: 132px;
  }

  .editorial-trust-block__media img {
    max-width: 100%;
    max-height: 100%;
  }

  .editorial-trust-block__card--reviewer,
  .editorial-trust-block__card--sources {
    padding: 1.45rem 1.5rem;
  }
}

#aow-bronnen-en-controle .aow-trust-card {
  position: relative;
  display: grid;
  gap: 1.35rem;
  min-height: 0;
  padding: 1.7rem 1.8rem;
  overflow: visible;
}

#aow-bronnen-en-controle .aow-trust-content {
  display: grid;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}

#aow-bronnen-en-controle .aow-trust-main h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

#aow-bronnen-en-controle .aow-trust-main p:first-of-type {
  margin-top: 0;
}

#aow-bronnen-en-controle .aow-trust-source-list {
  margin: 0;
  padding-left: 1.5rem;
  list-style: disc;
  display: grid;
  gap: 1rem;
}

#aow-bronnen-en-controle .aow-trust-source-item {
  color: #1f4258;
  font-size: 1.05rem;
  line-height: 1.55;
  padding-left: 0.15rem;
}

#aow-bronnen-en-controle .aow-trust-source-link {
  margin-left: 0.35rem;
}

#aow-bronnen-en-controle .aow-trust-source-link::after {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 0.35rem;
  vertical-align: -0.08rem;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23d63e4d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h7v7'/%3E%3Cpath d='M13 3 3 13'/%3E%3Cpath d='M9 13H3V7'/%3E%3C/svg%3E");
}

#aow-bronnen-en-controle .aow-trust-footer {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  padding-top: 0.2rem;
}

#aow-bronnen-en-controle .aow-trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  flex: 1 1 auto;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  border: 1px solid #dce7ef;
  background: #eef5fb;
  color: #1f4258;
  font-family: campton-semibold, sans-serif;
  font-size: 0.98rem;
  white-space: nowrap;
}

#aow-bronnen-en-controle .aow-trust-badge::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.75rem;
  flex: 0 0 auto;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23355a6f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.25' y='3.5' width='11.5' height='10.25' rx='1.75'/%3E%3Cpath d='M5 2.25v2.5M11 2.25v2.5M2.5 6.5h11'/%3E%3C/svg%3E");
}

#aow-bronnen-en-controle .aow-trust-badge::after {
  content: ">";
  margin-left: auto;
  font-size: 1.35rem;
  line-height: 1;
  color: #355a6f;
}

#aow-bronnen-en-controle .aow-trust-feedback-btn {
  min-height: 60px;
  padding: 0.85rem 1.35rem;
  border-radius: 14px;
  white-space: nowrap;
}

.content-showcase-block .aow-article-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.content-showcase-block .aow-article-showcase__panel,
.content-showcase-block .aow-article-showcase__sidebar {
  background: #fff;
  border: 1px solid #d7e1ea;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(42, 71, 96, 0.08);
}

.content-showcase-block .aow-article-showcase__panel {
  min-height: 100%;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.content-showcase-block .aow-article-showcase__panel.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.68);
}

.content-showcase-block .aow-article-showcase__sidebar {
  padding: 1.7rem;
}

.content-showcase-block .aow-article-showcase__sidebar-head {
  margin-bottom: 1.4rem;
}

.content-showcase-block .aow-article-showcase__sidebar-head h2 {
  margin: 0 0 0.6rem;
}

.content-showcase-block .aow-article-showcase__sidebar-head p,
.content-showcase-block .aow-article-showcase__all-link {
  margin: 0;
}

.content-showcase-block .aow-article-showcase__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.content-showcase-block .aow-article-showcase__item {
  margin: 0;
}

.content-showcase-block .aow-article-showcase__link {
  appearance: none;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #d7e1ea;
  border-radius: 20px;
  text-decoration: none;
  text-align: left;
  font: inherit;
  color: #17324d;
  background: #fefefe;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.content-showcase-block .aow-article-panel__preview-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.content-showcase-block .aow-article-panel__preview-link:hover {
  text-decoration: none;
}

.content-showcase-block .aow-article-panel__preview-link:focus-visible {
  outline: 3px solid #ef3f4b;
  outline-offset: 3px;
}

.content-showcase-block .aow-article-showcase__link:hover {
  border-color: #9bb8cf;
  box-shadow: 0 12px 28px rgba(33, 64, 91, 0.1);
  transform: translateY(-1px);
}

.content-showcase-block .aow-article-showcase__link:focus-visible {
  outline: 3px solid #ef3f4b;
  outline-offset: 3px;
}

.content-showcase-block .aow-article-showcase__link.is-active {
  border-color: #ef3f4b;
  box-shadow: 0 14px 32px rgba(239, 63, 75, 0.14);
}

.content-showcase-block .aow-article-showcase__thumb {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #eaf1f7;
  aspect-ratio: 4 / 3;
}

.content-showcase-block .aow-article-showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.03);
  transform-origin: center center;
}

.content-showcase-block .aow-article-showcase__thumb-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0.75rem;
  font-size: 0.95rem;
  color: #4f6b82;
  text-align: center;
}

.content-showcase-block .aow-article-showcase__meta {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.content-showcase-block .aow-article-showcase__item-title {
  font-family: campton-semibold, sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.content-showcase-block .aow-article-showcase__item-date {
  color: #5f778b;
  font-size: 0.98rem;
}

.content-showcase-block .aow-article-showcase__all-link {
  margin-top: 1.25rem;
}

.content-showcase-block .aow-article-showcase__noscript-link,
.content-showcase-block .aow-article-panel__noscript-link {
  margin: 0.65rem 0 0;
}

.content-showcase-block .aow-article-panel {
  display: grid;
  min-width: 0;
}

.content-showcase-block .aow-article-panel__media {
  background: linear-gradient(180deg, #eef5fb 0%, #ddeaf4 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.content-showcase-block .aow-article-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.04);
  transform-origin: center center;
}

.content-showcase-block .aow-article-panel__media--placeholder {
  display: grid;
  place-items: center;
  color: #4f6b82;
  text-align: center;
  padding: 1.5rem;
}

.content-showcase-block .aow-article-panel__body {
  padding: 1.8rem 1.9rem 2rem;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.content-showcase-block .aow-article-panel__eyebrow {
  margin: 0 0 0.45rem;
  color: #ef3f4b;
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
}

.content-showcase-block .aow-article-panel__back-row {
  margin: 0 0 1rem;
}

.content-showcase-block .aow-article-panel__back {
  appearance: none;
  border: 1px solid #cddce8;
  border-radius: 999px;
  background: #f5f9fc;
  color: #17324d;
  padding: 0.7rem 1.1rem;
  font-family: campton-semibold, sans-serif;
  font-size: 0.98rem;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.content-showcase-block .aow-article-panel__back:hover {
  background: #eef5fb;
  border-color: #9bb8cf;
}

.content-showcase-block .aow-article-panel__back:focus-visible {
  outline: 3px solid #ef3f4b;
  outline-offset: 3px;
}

.content-showcase-block .aow-article-panel__body h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 2.7vw, 2.9rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.content-showcase-block .aow-article-panel__date {
  margin: 0 0 0.85rem;
  color: #5f778b;
}

.content-showcase-block .aow-article-panel__intro {
  margin: 0;
  color: #26455f;
  font-size: 1.15rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.content-showcase-block .aow-article-panel__cta {
  margin: 1.6rem 0 0;
}

.content-showcase-block .aow-article-panel__preview-link .aow-article-panel__cta .cta {
  display: inline-flex;
  pointer-events: none;
}

.content-showcase-block .aow-article-panel__content {
  margin-top: 1.5rem;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.content-showcase-block .aow-article-panel__content,
.content-showcase-block .aow-article-panel__content * {
  box-sizing: border-box;
}

.content-showcase-block .aow-article-panel__content > :first-child {
  margin-top: 0;
}

.content-showcase-block .aow-article-panel__content > * {
  max-width: 100%;
}

.content-showcase-block .aow-article-panel__content .blocks-wrapper,
.content-showcase-block .aow-article-panel__content .inner-container,
.content-showcase-block .aow-article-panel__content .tiny-content,
.content-showcase-block .aow-article-panel__content section.block,
.content-showcase-block .aow-article-panel__content article,
.content-showcase-block .aow-article-panel__content div,
.content-showcase-block .aow-article-panel__content figure {
  max-width: 100%;
  min-width: 0;
}

.content-showcase-block .aow-article-panel__content section.block {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.content-showcase-block .aow-article-panel__content .inner-container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.content-showcase-block .aow-article-panel__content h1,
.content-showcase-block .aow-article-panel__content h2,
.content-showcase-block .aow-article-panel__content h3,
.content-showcase-block .aow-article-panel__content h4,
.content-showcase-block .aow-article-panel__content h5,
.content-showcase-block .aow-article-panel__content h6,
.content-showcase-block .aow-article-panel__content p,
.content-showcase-block .aow-article-panel__content li,
.content-showcase-block .aow-article-panel__content blockquote,
.content-showcase-block .aow-article-panel__content dt,
.content-showcase-block .aow-article-panel__content dd,
.content-showcase-block .aow-article-panel__content figcaption {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.content-showcase-block .aow-article-panel__content a,
.content-showcase-block .aow-article-panel__content code,
.content-showcase-block .aow-article-panel__content pre {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.content-showcase-block .aow-article-panel__content pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
}

.content-showcase-block .aow-article-panel__content img,
.content-showcase-block .aow-article-panel__content svg,
.content-showcase-block .aow-article-panel__content video,
.content-showcase-block .aow-article-panel__content canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.content-showcase-block .aow-article-panel__content iframe,
.content-showcase-block .aow-article-panel__content embed,
.content-showcase-block .aow-article-panel__content object {
  display: block;
  max-width: 100%;
}

.content-showcase-block .aow-article-panel__content iframe {
  width: 100%;
}

.content-showcase-block .aow-article-panel__content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
}

.content-showcase-block .aow-article-panel__content table td,
.content-showcase-block .aow-article-panel__content table th {
  overflow-wrap: break-word;
}

@media screen and (max-width: 1100px) {
  .content-showcase-block .aow-article-showcase {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .content-showcase-block .aow-article-showcase__sidebar {
    padding: 1.25rem;
  }

  .content-showcase-block .aow-article-showcase__link {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .content-showcase-block .aow-article-panel__body {
    padding: 1.35rem 1.2rem 1.45rem;
  }
}

@media screen and (max-width: 640px) {
  .content-showcase-block .aow-article-showcase__panel,
  .content-showcase-block .aow-article-showcase__sidebar {
    border-radius: 20px;
  }

  .content-showcase-block .aow-article-showcase {
    gap: 1rem;
  }

  .content-showcase-block .aow-article-showcase__sidebar {
    padding: 1rem;
  }

  .content-showcase-block .aow-article-showcase__sidebar-head {
    margin-bottom: 0.9rem;
  }

  .content-showcase-block .aow-article-showcase__link {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.7rem;
  }

  .content-showcase-block .aow-article-showcase__item-title {
    font-size: 1rem;
    line-height: 1.3;
  }

  .content-showcase-block .aow-article-showcase__item-date {
    font-size: 0.9rem;
  }

  .content-showcase-block .aow-article-panel__media {
    aspect-ratio: 16 / 8.2;
  }

  .content-showcase-block .aow-article-panel__body h2 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .content-showcase-block .aow-article-panel__body {
    padding: 1rem 1rem 1.15rem;
  }

  .content-showcase-block .aow-article-panel__intro,
  .content-showcase-block .aow-article-panel__content p,
  .content-showcase-block .aow-article-panel__content li,
  .content-showcase-block .aow-article-panel__content td,
  .content-showcase-block .aow-article-panel__content th {
    font-size: 1rem;
    line-height: 1.6;
  }

  .content-showcase-block .aow-article-panel.is-preview .aow-article-panel__intro {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .content-showcase-block .aow-article-panel__cta {
    margin-top: 1.15rem;
  }
}

.content-showcase-mobile-backbar,
.aow-article-mobile-backbar {
  display: none;
}

.content-showcase-article-page__date,
.aow-article-page__date {
  margin: 0.15rem 0 0;
  color: #5f778b;
  font-size: 1rem;
}

body.front-end.content-showcase-article-page .content-showcase-mobile-backbar,
body.front-end.aow-article-page .aow-article-mobile-backbar {
  display: block;
  padding: 0.95rem 0 1rem;
  background: #f5fafc;
  border-bottom: 1px solid #d7e1ea;
}

body.front-end.content-showcase-article-page .content-showcase-mobile-backbar__link,
body.front-end.aow-article-page .aow-article-mobile-backbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 42px;
  color: #17324d;
  font-family: campton-semibold, sans-serif;
  font-size: 1.08rem;
  text-decoration: none;
}

body.front-end.content-showcase-article-page .content-showcase-mobile-backbar__link::before,
body.front-end.aow-article-page .aow-article-mobile-backbar__link::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2317324d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.5 2.5 5 8l5.5 5.5'/%3E%3C/svg%3E");
}

body.front-end.content-showcase-article-page .content-showcase-mobile-backbar__link:focus-visible,
body.front-end.aow-article-page .aow-article-mobile-backbar__link:focus-visible {
  outline: 3px solid #ef3f4b;
  outline-offset: 3px;
}

body.front-end.content-showcase-article-page .content-showcase-mobile-backbar__hint,
body.front-end.aow-article-page .aow-article-mobile-backbar__hint {
  max-width: 48rem;
  margin: 0.15rem 0 0;
  color: #486277;
  font-size: 0.97rem;
  line-height: 1.55;
}

@media screen and (max-width: 767px) {
  body.front-end.content-showcase-article-page .content-showcase-mobile-backbar,
  body.front-end.aow-article-page .aow-article-mobile-backbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.3rem 0;
    background: rgba(245, 250, 252, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #d7e1ea;
  }

  body.front-end.content-showcase-article-page .content-showcase-mobile-backbar__link,
  body.front-end.aow-article-page .aow-article-mobile-backbar__link {
    font-size: 0.98rem;
  }

  body.front-end.content-showcase-article-page .content-showcase-mobile-backbar__hint,
  body.front-end.aow-article-page .aow-article-mobile-backbar__hint {
    margin-top: 0.05rem;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  body.front-end.content-showcase-article-page .ltih-auto-h1,
  body.front-end.aow-article-page .ltih-auto-h1 {
    padding-top: 1rem;
    padding-bottom: 0.85rem;
  }

  body.front-end.content-showcase-article-page .ltih-auto-h1 h1,
  body.front-end.content-showcase-article-page .header-bar-content h1,
  body.front-end.aow-article-page .ltih-auto-h1 h1,
  body.front-end.aow-article-page .header-bar-content h1 {
    font-size: 2.15rem;
    line-height: 1.08;
    margin-bottom: 0.3rem;
  }

  body.front-end.content-showcase-article-page .content-showcase-article-page__date,
  body.front-end.aow-article-page .aow-article-page__date {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
  }

  body.front-end.content-showcase-article-page .block.header-bar .header-bar-content,
  body.front-end.content-showcase-article-page .block.blog-block.blog-text .tiny-content,
  body.front-end.aow-article-page .block.header-bar .header-bar-content,
  body.front-end.aow-article-page .block.blog-block.blog-text .tiny-content {
    padding-top: 0;
  }

  body.front-end.content-showcase-article-page .block.blog-block.blog-text,
  body.front-end.aow-article-page .block.blog-block.blog-text {
    padding-top: 0.9rem;
    padding-bottom: 0.95rem;
  }

  body.front-end.content-showcase-article-page .block.blog-block.blog-text p,
  body.front-end.aow-article-page .block.blog-block.blog-text p {
    margin-bottom: 0.9rem;
  }

  body.front-end.content-showcase-article-page .block.blog-block.blog-text img,
  body.front-end.aow-article-page .block.blog-block.blog-text img {
    max-height: 240px;
    width: 100%;
    object-fit: cover;
  }
}

/* Members home
 * Reuses the existing Domus shell (`header-bar`, `inner-container`) and the
 * softer card language introduced on the AOW pages: light borders, generous
 * radius, quiet shadows, clear CTA hierarchy.
 */
.members-home-page .members-block {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.members-home-page .members-surface {
  border: 1px solid #d6e3ed;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f9fcff 72%, #eef5fb 100%);
  box-shadow: 0 8px 20px rgba(45, 79, 104, 0.07);
}

.members-home-page .members-eyebrow {
  margin: 0 0 0.55rem;
  color: #d63e4d;
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.members-home-page .members-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #30556c;
}

.members-home-page .members-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.members-home-page .members-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.35rem;
}

.members-home-page .members-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: #27465d;
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

.members-home-page .members-nav-link:hover,
.members-home-page .members-nav-link:focus-visible,
.members-home-page .members-nav-link.is-active {
  color: #1f4258;
  background: rgba(235, 244, 251, 0.95);
  text-decoration: none;
}

.members-home-page .members-nav-link.is-active {
  box-shadow: inset 0 -2px 0 #d63e4d;
}

.members-home-page .members-profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 58px;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #f4f8fb;
  color: #1f4258;
  text-decoration: none;
}

.members-home-page .members-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f05d64 0%, #d63e4d 100%);
  color: #fff;
  font-family: campton-bold, sans-serif;
  font-size: 0.98rem;
}

.members-home-page .members-profile-copy {
  display: grid;
  line-height: 1.2;
}

.members-home-page .members-profile-copy strong {
  color: #1f4258;
  font-size: 1rem;
}

.members-home-page .members-profile-copy small {
  color: #5e7a8d;
  font-size: 0.88rem;
}

.members-home-page .members-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 1rem;
}

.members-home-page .members-hero-main,
.members-home-page .members-next-step,
.members-home-page .members-shortcuts,
.members-home-page .members-feature-card,
.members-home-page .members-module-tile,
.members-home-page .members-community-card,
.members-home-page .members-support-card,
.members-home-page .members-deal-card {
  padding: 1.35rem 1.4rem;
}

.members-home-page .members-hero-main h2,
.members-home-page .members-next-step h3,
.members-home-page .members-community-card h2,
.members-home-page .members-support-card h2,
.members-home-page .members-deal-card h2 {
  margin: 0 0 0.55rem;
  color: #1f4258;
}

.members-home-page .members-hero-main h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.members-home-page .members-hero-main {
  display: flex;
  flex-direction: column;
}

.members-home-page .members-hero-summary {
  margin-top: 1.1rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(238, 246, 252, 0.84);
}

.members-home-page .members-hero-summary h3 {
  margin: 0 0 0.7rem;
  color: #1f4258;
  font-size: 1.2rem;
}

.members-home-page .members-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.members-home-page .members-check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #2f566c;
  font-size: 1rem;
  line-height: 1.55;
}

.members-home-page .members-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #5fb57f 0%, #3c9960 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.members-home-page .members-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1.15rem;
}

.members-home-page .members-cta-secondary {
  background: #fff;
  border: 1px solid #d6e3ed;
  color: #1f4258;
}

.members-home-page .members-next-step {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.members-home-page .members-next-step::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 227, 237, 0.65) 0%, rgba(214, 227, 237, 0) 70%);
}

.members-home-page .members-next-step-label {
  margin: -1.35rem -1.4rem 1rem;
  padding: 0.95rem 1.4rem;
  border-bottom: 1px solid #d6e3ed;
  background: rgba(236, 243, 248, 0.92);
  color: #1f4258;
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.members-home-page .members-next-step-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.members-home-page .members-next-step-icon,
.members-home-page .members-feature-card__icon,
.members-home-page .members-module-tile__icon,
.members-home-page .members-shortcut-icon,
.members-home-page .members-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef5fb;
  color: #2d5670;
}

.members-home-page .members-next-step-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 0.85rem;
}

.members-home-page .members-next-step h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.18;
}

.members-home-page .members-next-step p,
.members-home-page .members-feature-card p,
.members-home-page .members-module-tile span,
.members-home-page .members-community-card p,
.members-home-page .members-support-card p,
.members-home-page .members-deal-card p {
  margin: 0 0 0.85rem;
  color: #33596f;
  font-size: 1rem;
  line-height: 1.58;
}

.members-home-page .members-pill-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.members-home-page .members-next-step .cta {
  margin-top: 1.15rem;
}

.members-home-page .members-pill-list li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #eef5fb;
  color: #31556b;
  font-family: campton-semibold, sans-serif;
  font-size: 0.92rem;
}

.members-home-page .members-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.members-home-page .members-shortcut {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 72px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  color: #1f4258;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.8);
}

.members-home-page .members-shortcut + .members-shortcut {
  border-left: 1px solid #e1ebf2;
}

.members-home-page .members-shortcut:hover,
.members-home-page .members-shortcut:focus-visible {
  text-decoration: none;
  background: #f6fbff;
}

.members-home-page .members-shortcut-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
}

.members-home-page .members-shortcut span:last-child {
  font-family: campton-semibold, sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
}

.members-home-page .members-section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-bottom: 1rem;
}

.members-home-page .members-section-heading h2 {
  margin: 0;
  color: #1f4258;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.members-home-page .members-section-heading p {
  margin: 0;
  max-width: 720px;
  color: #4b6a7d;
  font-size: 1rem;
  line-height: 1.55;
}

.members-home-page .members-card-grid {
  display: grid;
  gap: 0.95rem;
}

.members-home-page .members-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.members-home-page .members-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  height: 100%;
}

.members-home-page .members-feature-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 0.5rem;
}

.members-home-page .members-feature-card h3 {
  margin: 0 0 0.35rem;
  color: #1f4258;
  font-size: 1.45rem;
  line-height: 1.2;
}

.members-home-page .members-feature-card .cta {
  justify-self: start;
  margin-top: auto;
}

.members-home-page .members-module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.members-home-page .members-module-tile {
  display: grid;
  gap: 0.7rem;
  min-height: 220px;
  text-decoration: none;
}

.members-home-page .members-module-tile:hover,
.members-home-page .members-module-tile:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}

.members-home-page .members-module-tile__icon {
  width: 58px;
  height: 58px;
}

.members-home-page .members-module-tile strong {
  color: #1f4258;
  font-size: 1.18rem;
  line-height: 1.25;
}

.members-home-page .members-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 1rem;
}

.members-home-page .members-community-card h3 {
  margin: 0 0 0.6rem;
  color: #1f4258;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.24;
}

.members-home-page .members-community-meta {
  margin: 0 0 1rem;
  color: #5a788b;
  font-family: campton-semibold, sans-serif;
  font-size: 0.97rem;
}

.members-home-page .members-side-stack {
  display: grid;
  gap: 1rem;
}

.members-home-page .members-support-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.members-home-page .members-support-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(238, 245, 251, 0.86);
  color: #1f4258;
  font-family: campton-semibold, sans-serif;
  text-decoration: none;
}

.members-home-page .members-support-links a:hover,
.members-home-page .members-support-links a:focus-visible {
  text-decoration: none;
  background: #eef5fb;
}

.members-home-page .members-support-icon {
  width: 42px;
  height: 42px;
}

.members-home-page .members-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.members-home-page .members-module-tile__icon .members-icon,
.members-home-page .members-next-step-icon .members-icon,
.members-home-page .members-feature-card__icon .members-icon,
.members-home-page .members-shortcut-icon .members-icon,
.members-home-page .members-support-icon .members-icon {
  width: 24px;
  height: 24px;
}

.members-home-page .members-block--bottom {
  padding-bottom: 0.9rem;
}

body.high-contrast .members-home-page .members-surface {
  border-color: #111;
  box-shadow: none;
  background: #fff;
}

body.high-contrast .members-home-page .members-nav-link,
body.high-contrast .members-home-page .members-profile-chip,
body.high-contrast .members-home-page .members-shortcut,
body.high-contrast .members-home-page .members-support-links a {
  border: 1px solid #111;
}

@media screen and (max-width: 1120px) {
  .members-home-page .members-topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .members-home-page .members-nav {
    justify-content: flex-start;
  }

  .members-home-page .members-profile-chip {
    width: 100%;
    max-width: 320px;
  }

  .members-home-page .members-shortcuts,
  .members-home-page .members-module-grid,
  .members-home-page .members-card-grid--three,
  .members-home-page .members-bottom-grid,
  .members-home-page .members-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .members-home-page .members-bottom-grid {
    align-items: start;
  }
}

@media screen and (max-width: 820px) {
  .members-home-page .members-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .members-home-page .members-shortcut + .members-shortcut {
    border-left: 0;
  }

  .members-home-page .members-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .members-home-page .members-topbar,
  .members-home-page .members-hero-main,
  .members-home-page .members-next-step,
  .members-home-page .members-shortcuts,
  .members-home-page .members-feature-card,
  .members-home-page .members-module-tile,
  .members-home-page .members-community-card,
  .members-home-page .members-support-card,
  .members-home-page .members-deal-card {
    padding: 1rem;
  }

  .members-home-page .members-topbar,
  .members-home-page .members-hero-grid,
  .members-home-page .members-card-grid--three,
  .members-home-page .members-shortcuts,
  .members-home-page .members-module-grid,
  .members-home-page .members-bottom-grid {
    grid-template-columns: 1fr;
  }

  .members-home-page .members-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .members-home-page .members-nav-link {
    justify-content: flex-start;
  }

  .members-home-page .members-profile-chip {
    max-width: none;
  }

  .members-home-page .members-hero-main h2 {
    font-size: 2.05rem;
  }

  .members-home-page .members-feature-card h3,
  .members-home-page .members-community-card h3 {
    font-size: 1.55rem;
  }

  .members-home-page .members-shortcut {
    min-height: 64px;
  }
}

.aow-payment-year-grid-simple {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.aow-payment-year-simple {
  border: 1px solid #d6e3ed;
  border-radius: 16px;
  background: #ffffff;
  padding: 0.85rem;
}

.aow-payment-year-simple h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: #1f4258;
}

.aow-payment-year-simple ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.3rem;
}

.header-bar .aow-articles-header-intro {
  margin-top: 0.9rem;
  max-width: 940px;
  color: #2f566c;
  font-size: 1.12rem;
  line-height: 1.7;
}

.aow-articles-intro-block {
  max-width: 960px;
}

.aow-articles-section-intro {
  margin-top: 0.7rem;
  margin-bottom: 1.15rem;
  color: #33596f;
  line-height: 1.7;
}

#aow-artikelen-bronnen-en-controle .aow-trust-card {
  position: relative;
  display: grid;
  gap: 1.35rem;
  min-height: 0;
  padding: 1.7rem 1.8rem;
  overflow: visible;
}

#aow-artikelen-bronnen-en-controle .aow-trust-content {
  display: grid;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}

#aow-artikelen-bronnen-en-controle .aow-trust-main h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

#aow-artikelen-bronnen-en-controle .aow-trust-main p:first-of-type {
  margin-top: 0;
}

#aow-artikelen-bronnen-en-controle .aow-articles-trust-meta {
  margin-bottom: 0;
  color: #4b6a7d;
  font-size: 0.98rem;
  line-height: 1.65;
}

#aow-artikelen-bronnen-en-controle .aow-trust-source-list {
  margin: 0;
  padding-left: 1.5rem;
  list-style: disc;
  display: grid;
  gap: 1rem;
}

#aow-artikelen-bronnen-en-controle .aow-trust-source-item {
  color: #1f4258;
  font-size: 1.05rem;
  line-height: 1.55;
  padding-left: 0.15rem;
}

#aow-artikelen-bronnen-en-controle .aow-trust-source-link {
  margin-left: 0.35rem;
}

#aow-artikelen-bronnen-en-controle .aow-trust-source-link::after {
  content: "";
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 0.35rem;
  vertical-align: -0.08rem;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23d63e4d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h7v7'/%3E%3Cpath d='M13 3 3 13'/%3E%3Cpath d='M9 13H3V7'/%3E%3C/svg%3E");
}

.aow-anchor-spacer {
  height: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  #aow-betaaldagen .aow-payment-layout {
    grid-template-columns: 1fr;
  }

  .ltih-faq__question {
    font-size: 1.06rem;
  }

  #aow-bronnen-en-controle .aow-trust-card {
    padding: 1.35rem 1.2rem;
  }

  #aow-bronnen-en-controle .aow-trust-footer {
    flex-direction: column;
    align-items: stretch;
  }

  #aow-bronnen-en-controle .aow-trust-feedback-btn {
    white-space: normal;
  }

  #aow-bronnen-en-controle .aow-trust-badge {
    white-space: normal;
  }

  .aow-payment-year-grid-simple {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  #aow-artikelen-bronnen-en-controle .aow-trust-card {
    padding: 1.35rem 1.2rem;
  }
}
.cegg-list .pe-3{padding-right:1rem}
.cegg-list .mb-3{margin-bottom:1rem}
.cegg-list .mb-0{margin-bottom:0}
.cegg-list .mt-1{margin-top:.25rem}
.cegg-list .px-0{padding-left:0;padding-right:0}
.cegg-list .text-center{text-align:center}
.cegg-list .text-truncate{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cegg-list .small{font-size:.875rem}
.cegg-list .fs-5{font-size:1.125rem}
.cegg-list .fs-6{font-size:1rem}
.cegg-list .fw-normal{font-weight:400}
.cegg-list .lh-1{line-height:1}
.cegg-list .ratio{position:relative;width:100%}
.cegg-list .ratio-1x1::before{content:"";display:block;padding-top:100%}
.cegg-list .ratio > *{position:absolute;inset:0}
.cegg-list .object-fit-scale{object-fit:contain}
.cegg-list .rounded{border-radius:.375rem}
.cegg-list .hstack{display:flex;align-items:center}
.cegg-list .gap-2{gap:.5rem}
.cegg-list .justify-content-md-center{justify-content:center}
.cegg-list .align-self-center{align-self:center}
.cegg-list .d-grid{display:grid}
.cegg-list .position-relative{position:relative}
.cegg-list .position-static{position:static}
.cegg-list .text-body-secondary{color:#6b7280}
.cegg-list .btn{display:inline-block;text-decoration:none;padding:.55rem .9rem;border-radius:.375rem;font-size:.95rem}
.cegg-list .btn-outline-primary{border:1px solid #3b82f6;color:#3b82f6;background:#fff}
.cegg-list .btn-outline-primary:hover{background:#3b82f6;color:#fff}
.cegg-list .cegg-price{color:#d63e4d;font-weight:700}
.cegg-list .cegg-text-truncate-2{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.cegg-list .cegg-rating-stars{
  --rating:0;
  position:relative;
  display:inline-block;
  line-height:1;
}
.cegg-list .cegg-rating-stars::before{
  content:"★★★★★";
  letter-spacing:1px;
  background:linear-gradient(90deg,#eab308 calc((var(--rating) / 5) * 100%),#d1d5db calc((var(--rating) / 5) * 100%));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
@media (min-width: 768px){
  .cegg-list .col-md-2{width:16.6667%}
  .cegg-list .col-md-7{width:58.3333%}
  .cegg-list .col-md-3{width:25%}
  .cegg-list .offset-md-0{margin-left:0}
  .cegg-list .justify-content-md-center{justify-content:center}
}

/* Assessment flow (zip parity) */
.assessment-flow {
  margin: 0 auto;
  max-width: 1120px;
  width: min(1120px, 100%);
}

.assessment-flow .grid {
  display: grid;
  gap: 1rem;
}

.assessment-flow .grid-3 {
  display: grid;
  gap: 1rem;
}

.assessment-flow .card {
  background: #fff;
  border: 1px solid #d7e4e3;
  border-radius: 16px;
  padding: 1rem;
}

.assessment-flow .hero {
  background: linear-gradient(120deg, #f9fbfd 0%, #ffffff 72%);
  border: 1px solid #dbe7ef;
  border-radius: 16px;
  padding: 1rem;
}

.assessment-flow .assessment-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbfe 58%, #eff7ff 100%);
  box-shadow: 0 10px 24px rgba(41, 80, 112, 0.09);
}

.assessment-flow .assessment-hero::before {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  bottom: -86px;
  height: 62%;
  border-radius: 50%;
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(170, 204, 232, 0.48) 0%, rgba(200, 224, 242, 0.34) 42%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(218, 234, 247, 0.5) 74%, rgba(205, 224, 240, 0.72) 100%);
  pointer-events: none;
  z-index: 0;
}

.assessment-flow .assessment-hero::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 11px;
  height: 12px;
  background: radial-gradient(circle at 8% 50%, rgba(255, 255, 255, 0.72) 0 4px, transparent 5px),
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.52) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 55%, rgba(255, 255, 255, 0.66) 0 4px, transparent 5px),
    radial-gradient(circle at 92% 45%, rgba(255, 255, 255, 0.5) 0 3px, transparent 4px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.assessment-flow .assessment-hero > * {
  position: relative;
  z-index: 1;
}

.assessment-flow .kicker {
  margin: 0 0 8px;
  color: #d63e4d;
  font-weight: 700;
}

.assessment-flow .muted {
  color: #4e6872;
}

.assessment-flow .assessment-room-list {
  display: grid;
  gap: 1rem;
}

.assessment-flow .assessment-room-card {
  position: relative;
  overflow: hidden;
  border-top: none;
  border-radius: 20px;
  padding: 1.15rem 1.25rem;
  min-height: 192px;
  background: linear-gradient(140deg, var(--room-bg-a, #f0f7ff) 0%, var(--room-bg-b, #fbfdff) 68%);
}

.assessment-flow .assessment-room-card::before {
  content: "";
  position: absolute;
  inset: auto -48px -72px auto;
  width: 245px;
  height: 165px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.8) 0%, var(--room-accent, rgba(135, 181, 225, 0.24)) 78%);
  pointer-events: none;
}

.assessment-flow .assessment-room-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  position: relative;
  z-index: 1;
}

.assessment-flow .assessment-room-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid #e5edf3;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  box-shadow: 0 2px 8px rgba(31, 66, 92, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f5f7d;
  flex: 0 0 74px;
}

.assessment-flow .assessment-room-icon::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: var(--room-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.assessment-flow .assessment-room-content {
  width: min(760px, 100%);
}

.assessment-flow .assessment-room-card h2 {
  margin: 0 0 0.4rem;
  color: #1c3557;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.25;
}

.assessment-flow .assessment-room-card p {
  margin: 0;
  color: #425f74;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.45;
}

.assessment-flow .assessment-room-card .btn {
  margin-top: 0.95rem;
  align-self: flex-start;
  padding: 0.74rem 1.45rem;
  font-size: 1.1rem;
  box-shadow: 0 7px 16px rgba(214, 62, 77, 0.24);
}

.assessment-flow .room-theme-bathroom {
  --room-bg-a: #e9f4ff;
  --room-bg-b: #f8fbff;
  --room-accent: rgba(145, 195, 243, 0.34);
  --room-icon: url("../icons/assessment/bathroom.svg");
}

.assessment-flow .room-theme-stairs {
  --room-bg-a: #fbf0da;
  --room-bg-b: #fffaf1;
  --room-accent: rgba(240, 187, 98, 0.25);
  --room-icon: url("../icons/assessment/stairs-hall.svg");
}

.assessment-flow .room-theme-living {
  --room-bg-a: #e7f2ea;
  --room-bg-b: #f8fcf7;
  --room-accent: rgba(163, 205, 158, 0.3);
  --room-icon: url("../icons/assessment/living-room.svg");
}

.assessment-flow .room-theme-bedroom {
  --room-bg-a: #efeafb;
  --room-bg-b: #faf8ff;
  --room-accent: rgba(181, 163, 233, 0.28);
  --room-icon: url("../icons/assessment/bedroom.svg");
}

.assessment-flow .room-theme-kitchen {
  --room-bg-a: #fceee5;
  --room-bg-b: #fffaf4;
  --room-accent: rgba(236, 174, 129, 0.27);
  --room-icon: url("../icons/assessment/kitchen.svg");
}

.assessment-flow .btn {
  border: 1px solid transparent;
  background: #d63e4d;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.assessment-flow .btn:hover {
  background: #be2f3d;
  transform: translateY(-1px);
}

.assessment-flow .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.assessment-flow .btn-secondary {
  background: #fff;
  border-color: #d6c4c9;
  color: #8d1c2f;
}

.assessment-flow .btn-secondary:hover {
  background: #fff3f5;
}

.assessment-flow .error {
  color: #b4233c;
  margin: 0;
}

.assessment-flow .assessment-stepper {
  border: 1px solid #d6e3ec;
  border-radius: 14px;
  background: #f7fbff;
  padding: 0.56rem 0.75rem;
  overflow-x: auto;
}

.assessment-flow .assessment-stepper-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.assessment-flow .assessment-step {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-right: 0.95rem;
  margin-right: 0.55rem;
}

.assessment-flow .assessment-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.55rem;
  height: 2px;
  background: #c8d8e4;
  transform: translateY(-50%);
}

.assessment-flow .assessment-step-index {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid #d1dee8;
  background: #fff;
  color: #355868;
}

.assessment-flow .assessment-step.completed .assessment-step-index {
  background: #e8f6ef;
  border-color: #b7dfc5;
  color: #1f8a4d;
}

.assessment-flow .assessment-step.active .assessment-step-index {
  background: #fceef0;
  border-color: #f3c4cb;
  color: #8f2435;
}

.assessment-flow .assessment-step-label {
  font-size: 0.88rem;
  color: #274653;
  white-space: nowrap;
}

.assessment-flow .upload-progress {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0.35rem 0 0.8rem;
  padding: 0.62rem 0.8rem;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #d4e2ec;
}

.assessment-flow .prompt-section + .prompt-section {
  margin-top: 0.55rem;
}

.assessment-flow .prompt-section-title {
  margin: 0.45rem 0 0.35rem;
  font-weight: 700;
  color: #173848;
}

.assessment-flow .prompt-list {
  margin: 0;
  padding-left: 1.25rem;
}

.assessment-flow .prompt-list li {
  margin-bottom: 0.28rem;
}

.assessment-flow .prompt-list li::marker {
  color: #d73d4d;
}

.assessment-flow .prompt-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}

.assessment-flow .prompt-item-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  max-width: 100%;
}

.assessment-flow .prompt-item-label {
  color: #204856;
}

.assessment-flow .prompt-item-tip {
  color: #5c7480;
  font-size: 0.88rem;
  line-height: 1.35;
}

.assessment-flow .prompt-item-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.assessment-flow .prompt-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d5c6ca;
}

.assessment-flow .prompt-link-btn {
  border: none;
  background: transparent;
  color: #2f5f7d;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.24rem 0.3rem;
  font-size: 0.9rem;
}

.assessment-flow .prompt-item-error {
  margin: 0.25rem 0 0.2rem;
  color: #b4233c;
  font-size: 0.9rem;
}

.assessment-flow.upload-wizard .upload-shell {
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 72%, #eef5fb 100%);
  border-color: #d5e3ef;
  box-shadow: 0 8px 20px rgba(45, 84, 112, 0.08);
}

.assessment-flow.upload-wizard {
  margin-top: 0.55rem;
  margin-bottom: 0.72rem;
}

.assessment-flow.upload-wizard .assessment-stepper {
  margin-bottom: 0.28rem;
}

.assessment-flow.upload-wizard .upload-progress-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.75rem;
  margin-bottom: 0.9rem;
  background: linear-gradient(180deg, #e8f0f9 0%, #dbe8f3 100%);
  border-color: #cadcea;
  border-radius: 14px;
  padding: 0.62rem 0.75rem;
}

.assessment-flow.upload-wizard .upload-progress-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(165, 187, 205, 0.6);
  color: #294b60;
  font-size: 0.95rem;
  padding: 0.26rem 0.62rem;
}

.assessment-flow.upload-wizard .upload-progress-chip strong {
  color: #173848;
}

.assessment-flow.upload-wizard .progress-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  border: 2px solid #4d9d8c;
  background: #eefaf6;
}

.assessment-flow.upload-wizard .prompt-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.assessment-flow.upload-wizard .prompt-item-card {
  --prompt-icon: url("../icons/assessment/prompts/camera-ui.svg");
  --prompt-bg-a: #dceaf5;
  --prompt-bg-b: #edf5fb;
  background: #fff;
  border: 1px solid #dbe5ed;
  border-radius: 14px;
  padding: 0.75rem;
  margin-bottom: 0.6rem;
}

.assessment-flow.upload-wizard .prompt-item-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.assessment-flow.upload-wizard .prompt-item-visual {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d8e4ee;
  background: #eef4fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.assessment-flow.upload-wizard .prompt-thumb {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.assessment-flow.upload-wizard .prompt-thumb-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, var(--prompt-bg-a) 0%, var(--prompt-bg-b) 68%, #f9fcff 100%);
  position: relative;
}

.assessment-flow.upload-wizard .prompt-thumb-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background-image: var(--prompt-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.92;
}

.assessment-flow.upload-wizard.room-theme-bathroom .prompt-item-card {
  --prompt-bg-a: #d8ecff;
  --prompt-bg-b: #ecf7ff;
}

.assessment-flow.upload-wizard.room-theme-stairs .prompt-item-card {
  --prompt-bg-a: #f4e4c3;
  --prompt-bg-b: #fbf3de;
}

.assessment-flow.upload-wizard.room-theme-living .prompt-item-card {
  --prompt-bg-a: #dcedde;
  --prompt-bg-b: #edf7f0;
}

.assessment-flow.upload-wizard.room-theme-bedroom .prompt-item-card {
  --prompt-bg-a: #e9e1f9;
  --prompt-bg-b: #f4efff;
}

.assessment-flow.upload-wizard.room-theme-kitchen .prompt-item-card {
  --prompt-bg-a: #f5dfd3;
  --prompt-bg-b: #fbefe8;
}

.assessment-flow.upload-wizard .prompt-item-card.has-photo {
  border-color: #c9ddea;
  box-shadow: 0 5px 14px rgba(57, 94, 122, 0.1);
}

.assessment-flow.upload-wizard .prompt-item-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1c3557;
}

.assessment-flow.upload-wizard .prompt-item-tip {
  margin-top: 0.1rem;
  color: #4f6c7d;
  font-size: 1.02rem;
  line-height: 1.35;
}

.assessment-flow.upload-wizard .prompt-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  min-width: 170px;
}

.assessment-flow.upload-wizard .file-picker-btn {
  min-width: 146px;
  padding: 0.62rem 1.05rem;
  font-size: 1.02rem;
}

.assessment-flow.upload-wizard .prompt-link-btn {
  padding: 0.1rem 0.2rem;
  font-size: 1.02rem;
}

.assessment-flow.upload-wizard .prompt-action-btn {
  width: 100%;
}

.assessment-flow.upload-wizard .prompt-section-optional .prompt-list-optional {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assessment-flow.upload-wizard .prompt-item-card-optional .prompt-item-row {
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
}

.assessment-flow.upload-wizard .prompt-item-card-optional .prompt-item-visual {
  width: 74px;
  height: 74px;
  border-radius: 999px;
}

.assessment-flow.upload-wizard .prompt-item-card-optional .prompt-thumb-placeholder::after {
  width: 34px;
  height: 34px;
}

.assessment-flow.upload-wizard .prompt-item-card-optional .prompt-item-controls {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
}

.assessment-flow.upload-wizard .wizard-consent-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 80%, #eef4fb 100%);
  border-color: #d6e4ef;
  margin: 0.95rem 0 1rem;
  box-shadow: 0 8px 18px rgba(49, 86, 112, 0.08);
}

.assessment-flow.upload-wizard .wizard-consent-card + .prompt-section-optional {
  margin-top: 0.2rem;
}

.assessment-flow.upload-wizard .wizard-submit-row {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid #d8e4ee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.assessment-flow.upload-wizard .wizard-submit-hint {
  margin: 0;
  color: #2f4f62;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.assessment-flow.upload-wizard .wizard-status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #cedbe6;
  background: #eff4f8;
}

.assessment-flow.upload-wizard .wizard-status-dot.is-complete {
  border-color: #5ba88d;
  background: #e7f8ef;
}

.assessment-flow.upload-wizard #wizard-submit {
  min-width: 170px;
  font-size: 1.05rem;
}

.assessment-flow.upload-wizard .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;
}

.assessment-flow .file-picker-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.assessment-flow .score-intro {
  margin: 0.35rem 0 0.75rem;
  color: #2d4f5d;
}

.assessment-flow .score-meter {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e8edf2;
  overflow: hidden;
  border: 1px solid #d6dfe7;
}

.assessment-flow .score-meter-fill {
  height: 100%;
  border-radius: inherit;
  transition: width 0.25s ease;
}

.assessment-flow .score-meter-fill-low {
  background: linear-gradient(90deg, #34b26a 0%, #1f8a4d 100%);
}

.assessment-flow .score-meter-fill-medium {
  background: linear-gradient(90deg, #d39a47 0%, #b76b15 100%);
}

.assessment-flow .score-meter-fill-high {
  background: linear-gradient(90deg, #d74f66 0%, #b9203a 100%);
}

.assessment-flow .issue-accordion-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.assessment-flow .issue-accordion-card {
  border: 1px solid #d7e1e8;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.assessment-flow .issue-accordion-heading {
  margin: 0;
}

.assessment-flow .issue-accordion-trigger {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: #fff;
  padding: 0.82rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
  cursor: pointer;
}

.assessment-flow .issue-accordion-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #173848;
}

.assessment-flow .issue-accordion-meta {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.assessment-flow .issue-badge-compact {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.assessment-flow .issue-badge-compact.severity-low {
  background: #effbf5;
  color: #1f8a4d;
  border-color: #bfe7cf;
}

.assessment-flow .issue-badge-compact.severity-medium {
  background: #fff8ed;
  color: #b76b15;
  border-color: #f3d4ab;
}

.assessment-flow .issue-badge-compact.severity-high {
  background: #fff1f3;
  color: #b9203a;
  border-color: #f2b9c4;
}

.assessment-flow .issue-body-region {
  display: none;
  border-top: 1px solid #e5edf2;
}

.assessment-flow .issue-body-region.open {
  display: block;
}

.assessment-flow .issue-body-inner {
  padding: 0.8rem 0.9rem;
}

.assessment-flow .issue-chevron {
  transition: transform 0.2s ease;
}

.assessment-flow .issue-chevron.open {
  transform: rotate(180deg);
}

.assessment-flow .issue-followup {
  margin-top: 0.55rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #f3d8b5;
  background: #fff6ec;
  color: #8a4a00;
  font-size: 0.92rem;
}

.assessment-flow .badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.24rem 0.66rem;
  border: 1px solid #d7e4e3;
}

.assessment-flow .badge.label-low {
  background: #effbf5;
  color: #1f8a4d;
  border-color: #bfe7cf;
}

.assessment-flow .badge.label-medium {
  background: #fff8ed;
  color: #b76b15;
  border-color: #f3d4ab;
}

.assessment-flow .badge.label-high {
  background: #fff1f3;
  color: #b9203a;
  border-color: #f2b9c4;
}

.assessment-flow .questions-card {
  padding-bottom: 1.35rem;
}

.assessment-flow .questions-card-cta {
  margin-top: 1rem;
  padding-bottom: 0.35rem;
}

.assessment-flow .disclaimer-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, #ffffff 0%, #f9fcfb 56%, #eef8f3 100%);
  box-shadow: 0 10px 22px rgba(62, 97, 82, 0.08);
}

.assessment-flow .disclaimer-card::before {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  bottom: -78px;
  height: 60%;
  border-radius: 50%;
  background:
    radial-gradient(120% 88% at 50% 100%, rgba(157, 214, 186, 0.46) 0%, rgba(189, 231, 210, 0.31) 45%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(222, 243, 232, 0.52) 73%, rgba(207, 233, 220, 0.7) 100%);
  pointer-events: none;
  z-index: 0;
}

.assessment-flow .disclaimer-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 12px;
  background: radial-gradient(circle at 10% 45%, rgba(255, 255, 255, 0.66) 0 4px, transparent 5px),
    radial-gradient(circle at 24% 58%, rgba(255, 255, 255, 0.5) 0 3px, transparent 4px),
    radial-gradient(circle at 79% 48%, rgba(255, 255, 255, 0.63) 0 4px, transparent 5px),
    radial-gradient(circle at 92% 52%, rgba(255, 255, 255, 0.48) 0 3px, transparent 4px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.assessment-flow .disclaimer-card > * {
  position: relative;
  z-index: 1;
}

.assessment-flow.assessment-result {
  margin-top: 0.45rem;
  margin-bottom: 1.1rem;
}

.assessment-flow.assessment-result .assessment-stepper {
  margin-bottom: 0.35rem;
}

.assessment-flow.assessment-result .disclaimer-card p {
  margin-bottom: 0;
}

.assessment-flow.assessment-result .disclaimer-card p + p {
  margin-top: 0.85rem;
}

.assessment-flow.assessment-result .card {
  border-color: #d3e2ec;
  box-shadow: 0 8px 20px rgba(46, 80, 106, 0.08);
  padding: 1.15rem 1.2rem;
}

.assessment-flow.assessment-result .result-hero-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 60%, #ebf4fc 100%);
}

.assessment-flow.assessment-result .result-hero-card::before {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  bottom: -80px;
  height: 60%;
  border-radius: 50%;
  background:
    radial-gradient(120% 95% at 50% 100%, rgba(160, 201, 234, 0.44) 0%, rgba(197, 222, 241, 0.31) 48%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(222, 237, 249, 0.53) 72%, rgba(210, 229, 244, 0.7) 100%);
  pointer-events: none;
  z-index: 0;
}

.assessment-flow.assessment-result .result-hero-card > * {
  position: relative;
  z-index: 1;
}

.assessment-flow.assessment-result .result-hero-card h1 {
  margin-top: 0.15rem;
  margin-bottom: 0.52rem;
  font-size: clamp(1.65rem, 2.7vw, 2.05rem);
  line-height: 1.2;
}

.assessment-flow.assessment-result .result-hero-intro {
  margin: 0 0 0.8rem;
  color: #274b5f;
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  line-height: 1.5;
}

.assessment-flow.assessment-result .result-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.assessment-flow.assessment-result .result-risk-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.36rem 0.8rem;
  font-weight: 700;
  font-size: 1.01rem;
  border: 1px solid #d0dce7;
  background: #f4f8fc;
  color: #21455e;
}

.assessment-flow.assessment-result .result-risk-badge.label-low {
  background: #ecfbf3;
  border-color: #bfe7cf;
  color: #1f7b46;
}

.assessment-flow.assessment-result .result-risk-badge.label-medium {
  background: #fff7eb;
  border-color: #f2d7af;
  color: #9d5d11;
}

.assessment-flow.assessment-result .result-risk-badge.label-high {
  background: #fff1f3;
  border-color: #f2bfca;
  color: #a82a41;
}

.assessment-flow.assessment-result .result-score-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  background: #ffffff;
  border: 1px solid #d7e5ef;
  border-radius: 999px;
  padding: 0.32rem 0.8rem 0.42rem;
  box-shadow: 0 6px 14px rgba(49, 83, 107, 0.12);
  color: #1d3a4c;
}

.assessment-flow.assessment-result .result-score-pill strong {
  font-size: 1.45rem;
  line-height: 1;
}

.assessment-flow.assessment-result .result-score-pill span {
  font-size: 0.97rem;
  color: #4c6879;
}

.assessment-flow.assessment-result .score-meter {
  margin-top: 0.75rem;
  height: 12px;
}

.assessment-flow.assessment-result .result-hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.assessment-flow.assessment-result .result-priority-card {
  background: linear-gradient(140deg, #ffffff 0%, #fafcff 100%);
}

.assessment-flow.assessment-result .result-priority-card h2 {
  margin-bottom: 0.8rem;
}

.assessment-flow.assessment-result .result-priority-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.assessment-flow.assessment-result .result-priority-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #d8e4ef;
  border-radius: 14px;
  background: #f7fbff;
  padding: 0.62rem 0.72rem;
  color: #173848;
  font-size: 1.05rem;
  line-height: 1.42;
}

.assessment-flow.assessment-result .result-priority-index {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fceef0;
  border: 1px solid #f2c3cb;
  color: #ab3043;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.assessment-flow.assessment-result .result-main-grid {
  display: grid;
  gap: 1rem;
}

.assessment-flow.assessment-result .result-issues-card h2,
.assessment-flow.assessment-result .result-plan-card h2,
.assessment-flow.assessment-result .result-valrisk-card h2,
.assessment-flow.assessment-result .questions-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.assessment-flow.assessment-result .issue-accordion-list {
  gap: 0.8rem;
  margin-top: 0.65rem;
}

.assessment-flow.assessment-result .issue-accordion-card {
  border-color: #d6e3ee;
  box-shadow: 0 5px 14px rgba(46, 78, 102, 0.08);
}

.assessment-flow.assessment-result .issue-accordion-trigger {
  min-height: 54px;
  padding: 0.92rem 1rem;
  gap: 0.62rem;
}

.assessment-flow.assessment-result .issue-accordion-title {
  font-size: 1.16rem;
  line-height: 1.3;
}

.assessment-flow.assessment-result .issue-badge-compact {
  font-size: 0.9rem;
  padding: 0.24rem 0.62rem;
}

.assessment-flow.assessment-result .issue-body-inner {
  padding: 0.95rem 1rem 1rem;
}

.assessment-flow.assessment-result .issue-body-content p,
.assessment-flow.assessment-result .issue-body-content li {
  font-size: 1.03rem;
  line-height: 1.54;
}

.assessment-flow.assessment-result .result-side-grid {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.assessment-flow.assessment-result .result-plan-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

.assessment-flow.assessment-result .result-plan-group + .result-plan-group {
  margin-top: 0.95rem;
}

.assessment-flow.assessment-result .result-plan-group h3 {
  margin: 0 0 0.55rem;
  color: #183d53;
  font-size: 1.22rem;
}

.assessment-flow.assessment-result .result-plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.assessment-flow.assessment-result .result-plan-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 0.48rem;
  align-items: start;
  color: #284f64;
  font-size: 1.05rem;
  line-height: 1.5;
}

.assessment-flow.assessment-result .result-plan-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: #d63e4d;
  box-shadow: 0 0 0 3px rgba(214, 62, 77, 0.17);
}

.assessment-flow.assessment-result .questions-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

.assessment-flow.assessment-result .questions-card-cta-text {
  margin: 0 0 0.95rem;
}

.assessment-flow.assessment-result .result-question-list {
  list-style: none;
  margin: 0.45rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.assessment-flow.assessment-result .result-question-item {
  position: relative;
  padding-left: 1.1rem;
  color: #173d54;
  font-size: 1.08rem;
  line-height: 1.52;
}

.assessment-flow.assessment-result .result-question-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #d63e4d;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
}

.assessment-flow.assessment-result .result-valrisk-card {
  background: linear-gradient(155deg, #ffffff 0%, #f9fbff 56%, #edf4ff 100%);
}

.assessment-flow.assessment-result .result-valrisk-card .muted {
  margin-bottom: 0.95rem;
}

.assessment-flow.assessment-result .result-tools-card {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.assessment-flow.assessment-result .result-tools-card .btn,
.assessment-flow.assessment-result .result-hero-actions .btn,
.assessment-flow.assessment-result .result-valrisk-card .btn {
  min-height: 48px;
  font-size: 1.04rem;
}

@media (min-width: 760px) {
  .assessment-flow .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .assessment-flow .issue-accordion-trigger {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .assessment-flow .issue-accordion-title {
    max-width: 68%;
  }

  .assessment-flow .issue-accordion-meta {
    justify-content: flex-end;
  }

  .assessment-flow.assessment-result .result-main-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
  }
}

@media (max-width: 640px) {
  .assessment-flow.assessment-result .card {
    padding: 1rem 0.9rem;
  }

  .assessment-flow.assessment-result .result-score-row {
    align-items: flex-start;
  }

  .assessment-flow.assessment-result .result-hero-actions {
    flex-direction: column;
  }

  .assessment-flow.assessment-result .result-hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .assessment-flow.assessment-result .result-priority-item {
    grid-template-columns: 32px minmax(0, 1fr);
    font-size: 1rem;
  }

  .assessment-flow.assessment-result .result-tools-card .btn {
    width: 100%;
    text-align: center;
  }

  .assessment-flow.upload-wizard .upload-progress-inline {
    align-items: flex-start;
    gap: 0.45rem;
  }

  .assessment-flow.upload-wizard .upload-progress-chip {
    font-size: 0.9rem;
  }

  .assessment-flow.upload-wizard .prompt-item-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .assessment-flow.upload-wizard .prompt-item-visual {
    width: 84px;
    height: 84px;
  }

  .assessment-flow.upload-wizard .prompt-item-controls {
    align-items: stretch;
    min-width: 0;
  }

  .assessment-flow.upload-wizard .file-picker-btn {
    width: 100%;
  }

  .assessment-flow.upload-wizard .prompt-section-optional .prompt-list-optional {
    grid-template-columns: 1fr;
  }

  .assessment-flow.upload-wizard .prompt-item-card-optional .prompt-item-row {
    grid-template-columns: 1fr;
  }

  .assessment-flow.upload-wizard .prompt-item-card-optional .prompt-item-visual {
    width: 64px;
    height: 64px;
  }

  .assessment-flow.upload-wizard .wizard-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .assessment-flow.upload-wizard #wizard-submit {
    width: 100%;
  }

  .assessment-flow .assessment-room-card {
    padding: 1rem;
  }

  .assessment-flow .assessment-room-inner {
    gap: 0.75rem;
  }

  .assessment-flow .assessment-room-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .assessment-flow .assessment-room-icon::before {
    width: 34px;
    height: 34px;
  }

  .assessment-flow .assessment-room-card .btn {
    width: 100%;
    text-align: center;
  }

  .assessment-flow .prompt-item-row {
    flex-direction: column;
  }

  .assessment-flow .prompt-item-controls {
    justify-content: flex-start;
  }

  .assessment-flow .prompt-thumb {
    width: 64px;
    height: 64px;
  }
}

@media print {
  .assessment-flow .no-print {
    display: none !important;
  }
}

/* Valrisico parity styles */
.assessment-flow.valrisico-flow {
  margin-bottom: 0.75rem;
}

.valrisico-flow .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;
}

.valrisico-flow .valrisico-welcome-form { display: grid; gap: 1.15rem; margin-top: 0.35rem; }
.valrisico-flow .valrisico-hero {
  border-color: #dbe7ef;
  margin-top: 0.45rem;
}
.valrisico-welcome-page .valrisico-hero {
  border-radius: 22px;
  padding: 1.05rem;
}
.valrisico-welcome-page .valrisico-intro-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  border: 1px solid #d8e4ee;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 66%, #eef6fb 100%);
  padding: 1rem 1rem 0.85rem;
}
.valrisico-welcome-page .valrisico-intro-copy h1 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: clamp(1.9rem, 2.6vw, 2.25rem);
  line-height: 1.2;
  color: #204257;
}
.valrisico-welcome-page .valrisico-intro-lead {
  margin: 0;
  color: #2e576d;
  font-weight: 700;
  font-size: clamp(1.18rem, 1.7vw, 1.35rem);
}
.valrisico-welcome-page .valrisico-intro-copy p {
  font-size: clamp(1.03rem, 1.45vw, 1.16rem);
  line-height: 1.45;
  color: #36586d;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.valrisico-welcome-page .valrisico-time-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  margin-top: 0.78rem;
  padding: 0.26rem 1rem;
  background: linear-gradient(180deg, #a6dbc0 0%, #86c3a8 100%);
  color: #ffffff;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.valrisico-flow .valrisico-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  border: 1px solid #d6e3ec;
  border-radius: 12px;
  padding: 0.86rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
}
.valrisico-flow .valrisico-toggle strong {
  display: block;
  color: #243f4f;
  font-size: 1.16rem;
  line-height: 1.18;
}
.valrisico-flow .valrisico-toggle small {
  display: block;
  color: #5c7480;
  margin-top: 0.2rem;
  font-size: 1rem;
  line-height: 1.36;
}
.valrisico-flow .valrisico-toggle input {
  width: 28px;
  height: 28px;
  margin-top: 0.25rem;
}
.valrisico-flow .valrisico-actions-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.valrisico-flow .valrisico-actions-row .btn {
  flex: 1 1 220px;
  text-align: center;
  min-height: 56px;
  font-size: 1.38rem;
  padding: 0.72rem 1.3rem;
}
.valrisico-flow .valrisico-time-inline { margin: 0; color: #2f5f7d; font-weight: 700; }

.valrisico-flow .valrisico-benefits-card {
  border: 1px dashed #c8d8e4;
  border-radius: 16px;
  background: #f8fbff;
  margin-top: 0.45rem;
  padding: 0.9rem 0.95rem;
}
.valrisico-flow .valrisico-benefits-kicker {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #173848;
  font-size: 1.62rem;
  line-height: 1.2;
}
.valrisico-flow .valrisico-benefits-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.valrisico-flow .valrisico-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #234653;
  font-size: 1.12rem;
  line-height: 1.35;
}
.valrisico-flow .valrisico-benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf4fb;
  color: #2f5f7d;
  font-size: 1.35rem;
  font-weight: 700;
}
.valrisico-flow .valrisico-bottom-link {
  margin: 0.85rem 0 0;
  text-align: center;
}
.valrisico-flow .valrisico-bottom-link a {
  color: #2c5266;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: underline;
}
.valrisico-how-page .valrisico-hero {
  border-radius: 22px;
  padding: 1.05rem;
}
.valrisico-how-page .valrisico-how-intro-card {
  grid-template-columns: 1fr;
  padding-bottom: 0.85rem;
}
.valrisico-how-page .valrisico-how-intro-card h1 {
  margin-bottom: 0.42rem;
}
.valrisico-how-page .valrisico-how-steps-card {
  background: linear-gradient(155deg, #ffffff 0%, #f8fbff 62%, #eef5fc 100%);
  border-color: #d7e4ee;
}
.valrisico-how-page .valrisico-how-steps-card h2,
.valrisico-how-page .valrisico-how-safe-card h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: clamp(1.38rem, 2vw, 1.65rem);
  line-height: 1.25;
  color: #1f4155;
}
.valrisico-how-page .valrisico-how-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.58rem;
}
.valrisico-how-page .valrisico-how-step-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 0.58rem;
  border: 1px solid #d8e4ef;
  border-radius: 13px;
  padding: 0.56rem 0.68rem;
  background: #ffffff;
  color: #244c62;
  font-size: 1.06rem;
  line-height: 1.45;
}
.valrisico-how-page .valrisico-how-step-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e9f2fb;
  border: 1px solid #c9dcec;
  color: #295875;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.valrisico-how-page .valrisico-how-safe-card {
  background: linear-gradient(160deg, #ffffff 0%, #f9fcff 64%, #eff6ff 100%);
  border-color: #d7e3ee;
}
.valrisico-how-page .valrisico-how-safe-card p {
  margin-top: 0;
  margin-bottom: 0.95rem;
  color: #36586d;
  font-size: 1.08rem;
  line-height: 1.5;
}

.valrisico-result-page .card {
  border-color: #d5e3ed;
  box-shadow: 0 8px 20px rgba(45, 79, 104, 0.08);
}

.valrisico-result-page .valrisico-result-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 0.55rem;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 62%, #edf5fc 100%);
}

.valrisico-result-page .valrisico-result-hero::before {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  bottom: -84px;
  height: 62%;
  border-radius: 50%;
  background:
    radial-gradient(120% 94% at 50% 100%, rgba(161, 201, 232, 0.42) 0%, rgba(199, 222, 241, 0.29) 48%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(221, 237, 249, 0.5) 72%, rgba(210, 228, 243, 0.7) 100%);
  pointer-events: none;
  z-index: 0;
}

.valrisico-result-page .valrisico-result-hero > * {
  position: relative;
  z-index: 1;
}

.valrisico-result-page .valrisico-result-hero h1 {
  margin-top: 0.12rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.62rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: #1f4258;
}

.valrisico-result-page .valrisico-result-badge-wrap {
  margin: 0 0 0.62rem;
}

.valrisico-result-page .valrisico-result-badge {
  font-size: 0.98rem;
  padding: 0.3rem 0.72rem;
}

.valrisico-result-page .valrisico-result-intro {
  margin: 0;
  color: #32596f;
  font-size: 1.08rem;
  line-height: 1.5;
}

.valrisico-result-page .valrisico-result-disclaimer {
  margin-top: 0.72rem;
  margin-bottom: 0;
}

.valrisico-result-page .valrisico-result-looptest {
  margin-top: 0.55rem;
  margin-bottom: 0;
}

.valrisico-result-page .valrisico-result-main-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.35rem;
}

.valrisico-result-page .valrisico-result-main-grid h2 {
  margin-top: 0;
  margin-bottom: 0.66rem;
  font-size: clamp(1.34rem, 2vw, 1.6rem);
  line-height: 1.24;
  color: #1f4258;
}

.valrisico-result-page .valrisico-result-meaning p {
  margin: 0;
  color: #36586d;
  font-size: 1.07rem;
  line-height: 1.5;
}

.valrisico-result-page .valrisico-result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.valrisico-result-page .valrisico-result-list li {
  position: relative;
  padding-left: 1.05rem;
  color: #274d62;
  font-size: 1.04rem;
  line-height: 1.46;
}

.valrisico-result-page .valrisico-result-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #d63e4d;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}

.valrisico-result-page .valrisico-result-advice .valrisico-advice-note {
  border-style: solid;
  border-color: #d7e4ee;
  background: #f8fbff;
  margin-top: 0.18rem;
  margin-bottom: 0.75rem;
}

.valrisico-result-page .valrisico-result-advice .valrisico-advice-note p {
  margin: 0;
  color: #36586d;
  font-size: 1.04rem;
  line-height: 1.5;
}

.valrisico-result-page .valrisico-result-exercises .muted,
.valrisico-result-page .valrisico-result-home .muted {
  margin-top: 0;
  margin-bottom: 0.78rem;
  font-size: 1.03rem;
  line-height: 1.46;
}

.valrisico-result-page .valrisico-result-home .valrisico-cta-grid .btn,
.valrisico-result-page .valrisico-result-advice .valrisico-support-links .btn {
  min-height: 50px;
  font-size: 1.08rem;
}

.valrisico-result-page .valrisico-result-support .valrisico-why {
  border-style: solid;
  border-color: #d7e4ee;
  border-radius: 14px;
  background: #f9fcff;
  padding: 0.7rem 0.78rem;
}

.valrisico-result-page .valrisico-result-support .valrisico-why summary {
  font-size: 1.03rem;
}

.valrisico-result-page .valrisico-result-support .valrisico-why ul {
  margin-top: 0.6rem;
}

.valrisico-result-page .valrisico-result-support .valrisico-why li {
  margin-bottom: 0.32rem;
  color: #2f5367;
}

.valrisico-result-page .valrisico-result-actions {
  border-color: #d7e4ed;
  margin-top: 0.75rem;
}

.valrisico-result-page .valrisico-result-actions form {
  margin: 0;
}

.valrisico-steps-page .assessment-stepper {
  margin-top: 0.2rem;
}

.valrisico-steps-page .valrisico-step-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 68%, #eef5fb 100%);
  border-color: #d5e3ed;
  border-radius: 20px;
  box-shadow: 0 9px 22px rgba(45, 79, 104, 0.08);
  padding: 1.1rem 1.15rem;
}

.valrisico-steps-page .valrisico-step-card h1 {
  margin-top: 0;
  margin-bottom: 0.32rem;
  font-size: clamp(1.62rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: #1d3f55;
}

.valrisico-steps-page .valrisico-step-caption {
  margin: 0;
  color: #4d6878;
  font-size: 1.05rem;
  line-height: 1.42;
}

.valrisico-steps-page .valrisico-answer-group {
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.valrisico-steps-page .valrisico-answer-option {
  border-color: #d3e1eb;
  border-radius: 14px;
  padding: 0.78rem 0.85rem;
}

.valrisico-steps-page .valrisico-answer-option input {
  width: 22px;
  height: 22px;
}

.valrisico-steps-page .valrisico-answer-option span {
  color: #1f4258;
  font-size: 1.12rem;
  line-height: 1.4;
}

.valrisico-steps-page .valrisico-checklist-group {
  gap: 0.68rem;
  margin-top: 0.15rem;
}

.valrisico-steps-page .valrisico-checklist-item {
  border-color: #d3e1eb;
  border-radius: 14px;
  padding: 0.78rem 0.85rem;
}

.valrisico-steps-page .valrisico-checklist-item input {
  width: 22px;
  height: 22px;
}

.valrisico-steps-page .valrisico-checklist-item strong {
  color: #1f4258;
  font-size: 1.08rem;
  line-height: 1.35;
}

.valrisico-steps-page .valrisico-checklist-item small {
  font-size: 0.98rem;
  line-height: 1.4;
}

.valrisico-steps-page .valrisico-why-card {
  border-style: solid;
  border-color: #d8e4ee;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  padding: 0.7rem 0.78rem;
}

.valrisico-steps-page .valrisico-why-card summary {
  font-size: 1.03rem;
}

.valrisico-steps-page .valrisico-why-card p,
.valrisico-steps-page .valrisico-why-card ul {
  color: #355567;
  line-height: 1.5;
}

.valrisico-steps-page .valrisico-fixed-actions {
  margin-top: 0.08rem;
}

.valrisico-steps-page .valrisico-fixed-actions .btn {
  min-height: 52px;
  font-size: 1.14rem;
}

.valrisico-flow .valrisico-question-form { display: grid; gap: 0.9rem; }
.valrisico-flow .valrisico-answer-group { display: grid; gap: 0.6rem; }
.valrisico-flow .valrisico-answer-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #d6e3ec;
  border-radius: 12px;
  background: #fff;
  padding: 0.7rem;
}
.valrisico-flow .valrisico-answer-option:hover { background: #f9fcff; }
.valrisico-flow .valrisico-answer-option:focus-within,
.valrisico-flow .valrisico-checklist-item:focus-within { outline: 2px solid #9ec0d7; outline-offset: 2px; }
.valrisico-flow .valrisico-answer-option:has(input:checked) { border-color: #f1b5be; background: #fff6f8; }
.valrisico-flow .valrisico-answer-option input { margin-top: 0; }
.valrisico-flow .valrisico-checklist-group { display: grid; gap: 0.5rem; }
.valrisico-flow .valrisico-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border: 1px solid #d6e3ec;
  border-radius: 12px;
  background: #fff;
  padding: 0.65rem;
}
.valrisico-flow .valrisico-checklist-item small { display: block; color: #5c7480; margin-top: 0.15rem; }

.valrisico-flow .valrisico-why {
  border: 1px dashed #d6e3ec;
  border-radius: 12px;
  background: #fbfdff;
  padding: 0.6rem 0.7rem;
}
.valrisico-flow .valrisico-why summary { cursor: pointer; font-weight: 700; color: #173848; }
.valrisico-flow .valrisico-why p,
.valrisico-flow .valrisico-why ul { margin: 0.55rem 0 0; }

.valrisico-flow .valrisico-safety-callout {
  border: 1px solid #f3d8b5;
  border-radius: 12px;
  background: #fff6ec;
  padding: 0.75rem;
}
.valrisico-flow .valrisico-safety-callout ul { margin: 0; padding-left: 1.2rem; }

.valrisico-flow .valrisico-time-input-label { font-weight: 700; color: #173848; }
.valrisico-flow .valrisico-time-input {
  width: min(360px, 100%);
  border: 1px solid #d6e3ec;
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
}

.valrisico-flow .valrisico-fixed-actions,
.valrisico-flow .valrisico-fullwidth-action,
.valrisico-flow .valrisico-result-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.valrisico-flow .valrisico-fixed-actions .btn,
.valrisico-flow .valrisico-fullwidth-action .btn,
.valrisico-flow .valrisico-result-actions .btn { flex: 1 1 220px; text-align: center; }

.valrisico-flow .valrisico-support-links,
.valrisico-flow .valrisico-cta-grid { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.valrisico-flow .valrisico-advice-note {
  border: 1px dashed #d6e3ec;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.75rem;
}

.valrisico-flow .valrisico-program-card {
  border: 1px dashed #d6e3ec;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.8rem;
}
.valrisico-flow .valrisico-starter-list { margin: 0.5rem 0 0; padding-left: 1.15rem; display: grid; gap: 0.8rem; }
.valrisico-flow .valrisico-starter-subpoints { margin: 0.35rem 0 0; padding-left: 1.1rem; }
.valrisico-flow .valrisico-session-target { margin: 0.3rem 0; font-weight: 700; color: #173848; }
.valrisico-flow .valrisico-session-tip,
.valrisico-flow .valrisico-rest-note,
.valrisico-flow .valrisico-symptoms-note {
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
}
.valrisico-flow .valrisico-session-tip,
.valrisico-flow .valrisico-rest-note { background: #fff6ec; border: 1px solid #f3d8b5; color: #8a4a00; }
.valrisico-flow .valrisico-symptoms-note { background: #fff1f3; border: 1px solid #f2b9c4; color: #b9203a; }

.valrisico-flow .valrisico-feedback-form { display: grid; gap: 0.6rem; }
.valrisico-flow .valrisico-exercise-card h2 { margin-top: 0; }

.valrisico-flow .valrisico-video-wrap { display: grid; gap: 0.6rem; }
.valrisico-flow .valrisico-video { width: 100%; border-radius: 12px; border: 1px solid #d6e3ec; background: #000; }
.valrisico-flow .valrisico-video-controls { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.valrisico-flow .valrisico-video-placeholder {
  border: 1px dashed #d6e3ec;
  border-radius: 12px;
  background: #f8fbff;
  padding: 1rem;
}

.valrisico-flow .sticky-instructions-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.valrisico-flow .sticky-instructions-cta.is-hidden { opacity: 0; pointer-events: none; }

.valrisico-flow .valrisico-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.valrisico-flow .valrisico-modal-backdrop.is-hidden { display: none; }
.valrisico-flow .valrisico-modal-card {
  width: min(640px, 100%);
  background: #fff;
  border-radius: 16px;
  border: 1px solid #d7e4e3;
  padding: 1rem;
}
.valrisico-flow .valrisico-modal-close-form { display: flex; justify-content: flex-end; margin-bottom: 0.2rem; }
.valrisico-flow .valrisico-modal-close {
  border: 0;
  background: transparent;
  color: #2f5f7d;
  text-decoration: underline;
  cursor: pointer;
}
.valrisico-flow .valrisico-modal-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.8rem; }
.valrisico-flow .valrisico-modal-actions form { margin: 0; }
.valrisico-flow .valrisico-modal-small { color: #5c7480; font-size: 0.94rem; }

@media (min-width: 980px) {
  .valrisico-result-page .valrisico-result-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .valrisico-welcome-page .valrisico-intro-card {
    padding-bottom: 0.75rem;
  }

  .valrisico-welcome-page .valrisico-time-pill {
    font-size: 1.2rem;
  }

  .valrisico-flow .valrisico-toggle strong {
    font-size: 1.08rem;
  }

  .valrisico-flow .valrisico-toggle small {
    font-size: 0.96rem;
  }

  .valrisico-flow .valrisico-actions-row .btn {
    font-size: 1.25rem;
    min-height: 60px;
  }

  .valrisico-flow .valrisico-benefits-kicker {
    font-size: 1.45rem;
  }

  .valrisico-flow .valrisico-benefit-item {
    font-size: 1.02rem;
  }

  .valrisico-steps-page .valrisico-step-card {
    padding: 1rem 0.9rem;
  }

  .valrisico-steps-page .valrisico-step-card h1 {
    font-size: clamp(1.45rem, 7vw, 1.74rem);
  }

  .valrisico-steps-page .valrisico-answer-option span {
    font-size: 1.03rem;
  }

  .valrisico-steps-page .valrisico-checklist-item strong {
    font-size: 1rem;
  }

  .valrisico-steps-page .valrisico-fixed-actions .btn {
    min-height: 50px;
    font-size: 1.08rem;
  }
  .valrisico-result-page .valrisico-result-badge {
    font-size: 0.92rem;
  }

  .valrisico-result-page .valrisico-result-intro,
  .valrisico-result-page .valrisico-result-list li,
  .valrisico-result-page .valrisico-result-meaning p {
    font-size: 1rem;
  }

  .valrisico-result-page .valrisico-result-main-grid h2 {
    font-size: 1.3rem;
  }
  .valrisico-how-page .valrisico-how-step-item {
    font-size: 1rem;
  }

  .valrisico-flow .valrisico-fixed-actions,
  .valrisico-flow .valrisico-fullwidth-action,
  .valrisico-flow .valrisico-result-actions,
  .valrisico-flow .valrisico-actions-row,
  .valrisico-flow .valrisico-modal-actions { flex-direction: column; }

  .valrisico-flow .sticky-instructions-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}

/* AOW hub */
.aow-hub-page .aow-section {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.aow-hub-page .aow-surface {
  border: 1px solid #d6e3ed;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 70%, #eef5fb 100%);
  box-shadow: 0 8px 20px rgba(45, 79, 104, 0.07);
  padding: 1.15rem 1.2rem;
}

.aow-hub-page .aow-surface-hero {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.aow-hub-page .aow-surface h1,
.aow-hub-page .aow-surface h2 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: #1f4258;
}

.aow-hub-page .aow-surface h1 {
  font-size: clamp(1.9rem, 2.9vw, 2.35rem);
  line-height: 1.16;
}

.aow-hub-page .aow-surface h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}

.aow-hub-page .aow-surface p {
  margin-top: 0;
  color: #31566c;
  font-size: 1.07rem;
  line-height: 1.5;
}

.aow-hub-page .aow-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.88rem;
}

.aow-hub-page .aow-cta-secondary {
  background: #ffffff;
  color: #1f4258;
  border: 1px solid #d6e3ed;
}

.aow-hub-page .aow-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.aow-hub-page .aow-quick-card {
  display: block;
  text-decoration: none;
  border: 1px solid #d6e3ed;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(42, 72, 95, 0.06);
  padding: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.aow-hub-page .aow-quick-card:hover {
  transform: translateY(2px);
  box-shadow: 0 10px 18px rgba(42, 72, 95, 0.11);
}

.aow-hub-page .aow-quick-card h3 {
  margin: 0 0 0.35rem;
  color: #1f4258;
  font-size: 1.26rem;
  line-height: 1.24;
}

.aow-hub-page .aow-quick-card p {
  margin: 0 0 0.72rem;
  color: #355a6f;
  font-size: 1.01rem;
  line-height: 1.46;
}

.aow-hub-page .aow-card-cta {
  display: inline-flex;
  align-items: center;
  color: #d63e4d;
  font-family: campton-semibold, sans-serif;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aow-hub-page .aow-bullet-list {
  margin: 0.6rem 0 0.7rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}

.aow-hub-page .aow-bullet-list li {
  color: #274d62;
  font-size: 1.03rem;
  line-height: 1.47;
}

.aow-hub-page .aow-inline-links {
  margin: 0;
  font-size: 1.03rem;
  color: #31566c;
}

.aow-hub-page .aow-inline-links a {
  color: #1f4258;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aow-hub-page .aow-calculator-form {
  margin-top: 0.75rem;
}

.aow-hub-page .aow-calculator-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 250px) auto;
  align-items: end;
  gap: 0.6rem;
}

.aow-hub-page .aow-calculator-row label {
  display: block;
  color: #1f4258;
  font-family: campton-semibold, sans-serif;
  font-size: 1.03rem;
}

.aow-hub-page .aow-calculator-row input[type="date"] {
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid #cdddea;
  padding: 0.65rem 0.8rem;
  background: #fff;
  color: #1f4258;
  font-size: 1rem;
}

.aow-hub-page .aow-calculator-row .cta {
  min-height: 50px;
}

.aow-hub-page .aow-form-error {
  margin: 0.45rem 0 0;
  color: #b72434;
  font-size: 0.98rem;
}

.aow-hub-page .aow-calculation-result {
  margin-top: 0.85rem;
  border: 1px solid #d9e6ef;
  border-radius: 16px;
  background: #f8fcff;
  padding: 0.9rem;
}

.aow-hub-page .aow-calculation-result h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: #1f4258;
}

.aow-hub-page .aow-result-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.aow-hub-page .aow-result-list dt {
  color: #4f6a79;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.aow-hub-page .aow-result-list dd {
  margin: 0;
  color: #163a4f;
  font-family: campton-semibold, sans-serif;
  font-size: 1.16rem;
}

.aow-hub-page .aow-result-note {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
  color: #466171;
}

.aow-hub-page .aow-payment-grid {
  list-style: none;
  margin: 0.7rem 0 0.85rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.aow-hub-page .aow-payment-card {
  border: 1px solid #d6e3ed;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.76rem 0.8rem;
  display: grid;
  gap: 0.22rem;
}

.aow-hub-page .aow-payment-card strong {
  color: #1f4258;
  font-size: 1.04rem;
}

.aow-hub-page .aow-payment-card span {
  color: #577181;
  font-size: 0.94rem;
}

.aow-hub-page .aow-teaser-grid,
.aow-hub-page .aow-update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.aow-hub-page .aow-teaser-card,
.aow-hub-page .aow-update-card {
  border: 1px solid #d6e3ed;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(42, 72, 95, 0.06);
  padding: 0.95rem;
}

.aow-hub-page .aow-teaser-card h3,
.aow-hub-page .aow-update-card h3 {
  margin: 0 0 0.4rem;
  color: #1f4258;
  font-size: 1.22rem;
  line-height: 1.25;
}

.aow-hub-page .aow-teaser-card p,
.aow-hub-page .aow-update-card p {
  margin: 0 0 0.7rem;
  color: #355a6f;
  font-size: 1.01rem;
  line-height: 1.45;
}

.aow-hub-page .aow-update-category {
  margin: 0 0 0.3rem;
  color: #d63e4d;
  font-family: campton-semibold, sans-serif;
  font-size: 0.95rem;
}

.aow-hub-page .aow-empty-card {
  margin-top: 0.4rem;
}

.aow-hub-page .aow-empty-state {
  margin: 0;
  color: #506b7c;
}

.aow-hub-page .aow-payment-year-grid {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.aow-hub-page .aow-payment-year-card {
  border: 1px solid #d6e3ed;
  border-radius: 16px;
  background: #ffffff;
  padding: 0.85rem;
}

.aow-hub-page .aow-payment-year-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: #1f4258;
}

.aow-hub-page .aow-payment-year-card ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.3rem;
}

.aow-hub-page .aow-anchor-spacer {
  height: 0;
  margin: 0;
  padding: 0;
}

body.high-contrast .aow-hub-page .aow-card-cta,
body.high-contrast .aow-hub-page .aow-inline-links a {
  color: #000;
}

body.high-contrast .aow-hub-page .aow-surface,
body.high-contrast .aow-hub-page .aow-quick-card,
body.high-contrast .aow-hub-page .aow-teaser-card,
body.high-contrast .aow-hub-page .aow-update-card,
body.high-contrast .aow-hub-page .aow-payment-card {
  border-color: #000;
}

@media (max-width: 1100px) {
  .aow-hub-page .aow-quick-grid,
  .aow-hub-page .aow-payment-grid,
  .aow-hub-page .aow-teaser-grid,
  .aow-hub-page .aow-update-grid,
  .aow-hub-page .aow-payment-year-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aow-hub-page .aow-calculator-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .aow-hub-page .aow-surface,
  .aow-hub-page .aow-surface-hero {
    border-radius: 16px;
    padding: 0.95rem;
  }

  .aow-hub-page .aow-quick-grid,
  .aow-hub-page .aow-payment-grid,
  .aow-hub-page .aow-teaser-grid,
  .aow-hub-page .aow-update-grid,
  .aow-hub-page .aow-payment-year-grid,
  .aow-hub-page .aow-result-list {
    grid-template-columns: 1fr;
  }

  #aow-calculator .aow-calc-input-wrap {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  #aow-calculator .aow-calc-date-input {
    width: 100%;
    max-width: 100%;
    height: 56px;
    min-height: 56px;
    min-width: 0;
    font-size: 16px;
    line-height: 56px;
  }

  #aow-calculator .tiny-content,
  #aow-calculator .aow-calc-form,
  #aow-calculator .aow-calc-field {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

.aow-hub-page .aow-hero-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  padding: 1.05rem;
  border-radius: 6px;
  border-color: #dbdbdb;
  background: #ececec;
  box-shadow: none;
}

.aow-hub-page .aow-hero-media {
  min-height: 260px;
}

.aow-hub-page .aow-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.aow-hub-page .aow-hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aow-hub-page .aow-hero-body h1 {
  margin-bottom: 0.55rem;
  color: #153a61;
}

.aow-hub-page .aow-hero-body .aow-hero-lead {
  color: #2f465f;
  font-size: clamp(1.16rem, 2.2vw, 1.8rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.aow-hub-page .aow-hero-body .aow-inline-links {
  margin-top: 0.35rem;
}

.aow-hub-page .aow-hero-body .aow-inline-links a {
  color: #d63e4d;
  font-family: campton-semibold, sans-serif;
}

.aow-hub-page .aow-quick-card--with-icon {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 172px;
}

.aow-hub-page .aow-quick-card-body {
  display: grid;
  min-width: 0;
}

.aow-hub-page .aow-quick-card-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  align-self: end;
}

.aow-hub-page .aow-quick-card-btn {
  margin-top: auto;
}

.aow-hub-page .aow-quick-card-btn.cta--green {
  background: #2c8c59;
  color: #fff;
}

.aow-hub-page .aow-calculator-panel {
  margin-top: 0.75rem;
  border: 1px solid #d6e3ed;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
  padding: 0.95rem;
}

.aow-hub-page .aow-update-grid--media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.aow-hub-page .aow-update-card--media {
  padding: 0;
  overflow: hidden;
}

.aow-hub-page .aow-update-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.aow-hub-page .aow-update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aow-hub-page .aow-update-card-body {
  padding: 0.78rem 0.82rem 0.92rem;
}

.aow-hub-page .aow-update-tags {
  display: flex;
  gap: 0.32rem;
  margin-bottom: 0.5rem;
}

.aow-hub-page .aow-update-tags span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0.16rem 0.5rem;
  border-radius: 6px;
  background: #d63e4d;
  color: #fff;
  font-family: campton-semibold, sans-serif;
  font-size: 0.88rem;
}

.aow-hub-page .aow-update-card h3 a {
  color: inherit;
  text-decoration: none;
}

.aow-hub-page .aow-update-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aow-hub-page p.aow-more-articles-row {
  margin: 0.95rem 0 0;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .aow-hub-page .aow-hero-split {
    grid-template-columns: 1fr;
  }

  .aow-hub-page .aow-update-grid--media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .aow-hub-page .aow-hero-split {
    gap: 0.85rem;
    padding: 0.82rem;
    border-radius: 14px;
  }

  .aow-hub-page .aow-quick-card--with-icon {
    min-height: 0;
  }

  .aow-hub-page .aow-update-grid--media {
    grid-template-columns: 1fr;
  }

  .aow-hub-page p.aow-more-articles-row {
    justify-content: stretch;
  }

  .aow-hub-page p.aow-more-articles-row .cta {
    width: 100%;
    justify-content: center;
  }
}

/* AOW hub v2 */
.aow-hub-page-v2 {
  background: linear-gradient(180deg, #f2f5fa 0%, #eaf2fa 38%, #dfeaf6 100%);
}

.aow-hub-page-v2 .blocks-wrapper {
  padding-bottom: 1.4rem;
}

.aow-hub-page-v2 .aow-section-v2 {
  padding-top: 0.36rem;
  padding-bottom: 0.36rem;
}

.aow-hub-page-v2 .tiny-content h2 {
  color: #1e4261;
  margin-bottom: 0.6rem;
}

.aow-hub-page-v2 .aow-hero-v2 {
  padding-top: 0;
}

.aow-hub-page-v2 .aow-hero-v2-topline {
  height: 96px;
  background: linear-gradient(110deg, #ea4548 0%, #f26f31 100%);
}

.aow-hub-page-v2 .aow-hero-v2-shell {
  margin-top: -18px;
  border: 1px solid #d8e3ee;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(120deg, #eef4fb 0%, #f3f5f9 56%, #ebf1f8 100%);
  box-shadow: 0 10px 22px rgba(42, 72, 95, 0.08);
  overflow: hidden;
}

.aow-hub-page-v2 .aow-hero-v2-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
}

.aow-hub-page-v2 .aow-hero-v2-copy {
  padding: 1.35rem 1rem 1rem 1.35rem;
}

.aow-hub-page-v2 .aow-hero-v2-copy h1 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: #133764;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.aow-hub-page-v2 .aow-hero-v2-copy p {
  margin-top: 0;
  color: #304a63;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  line-height: 1.36;
  max-width: 30ch;
}

.aow-hub-page-v2 .aow-hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
  margin-top: 0.95rem;
}

.aow-hub-page-v2 .aow-cta-secondary {
  background: #ffffff;
  border: 1px solid #d6e3ed;
  color: #1f4258;
}

.aow-hub-page-v2 .aow-hero-v2-image-wrap {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.aow-hub-page-v2 .aow-hero-v2-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aow-hub-page-v2 .aow-hero-v2-note {
  margin: -0.2rem 1.35rem 1.2rem;
  border: 1px solid #e2e7ef;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 22px rgba(44, 68, 86, 0.09);
  padding: 1rem 1.1rem;
}

.aow-hub-page-v2 .aow-hero-v2-note p {
  margin: 0 0 0.62rem;
  color: #262d37;
  font-size: 1.08rem;
  line-height: 1.52;
}

.aow-hub-page-v2 .aow-hero-v2-note ul {
  margin: 0 0 0.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.28rem;
}

.aow-hub-page-v2 .aow-hero-v2-note li {
  position: relative;
  padding-left: 1rem;
  color: #24344a;
  font-size: 1.06rem;
  line-height: 1.46;
}

.aow-hub-page-v2 .aow-hero-v2-note li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -0.03rem;
  color: #d63e4d;
  font-size: 1.25rem;
  font-family: campton-bold, sans-serif;
}

.aow-hub-page-v2 .aow-card-cta {
  display: inline-flex;
  align-items: center;
  color: #d63e4d;
  font-family: campton-semibold, sans-serif;
  font-size: 1.04rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aow-hub-page-v2 .aow-quick-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.aow-hub-page-v2 .aow-quick-card-v2 {
  border: 1px solid #d6e3ed;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(42, 72, 95, 0.09);
  min-height: 168px;
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.45rem;
}

.aow-hub-page-v2 .aow-quick-card-v2-copy {
  flex: 1;
  min-width: 0;
  display: grid;
}

.aow-hub-page-v2 .aow-quick-card-v2 h3 {
  margin: 0 0 0.4rem;
  color: #143b67;
  font-size: clamp(1.36rem, 2vw, 1.88rem);
  line-height: 1.15;
}

.aow-hub-page-v2 .aow-quick-card-v2 p {
  margin: 0 0 0.72rem;
  color: #2c445d;
  font-size: 1.05rem;
  line-height: 1.4;
}

.aow-hub-page-v2 .aow-quick-card-v2-icon {
  width: 74px;
  height: 74px;
  margin-top: auto;
  margin-bottom: 0.15rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(44, 78, 107, 0.14));
}

.aow-hub-page-v2 .aow-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 8px;
  border: 0;
  padding: 0.52rem 1rem;
  min-height: 42px;
  font-family: campton-semibold, sans-serif;
  font-size: 1.03rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #ee5356 0%, #d33a3f 100%);
}

.aow-hub-page-v2 .aow-quick-btn::after {
  content: "›";
  margin-left: 0.5rem;
  font-size: 1.15rem;
  line-height: 1;
}

.aow-hub-page-v2 .aow-quick-btn--green {
  background: linear-gradient(180deg, #4ba66d 0%, #2f8556 100%);
}

.aow-hub-page-v2 .aow-surface-plain {
  border-color: #d8e3ed;
  border-radius: 12px;
  box-shadow: 0 7px 16px rgba(42, 72, 95, 0.07);
  background: rgba(255, 255, 255, 0.9);
}

.aow-hub-page-v2 .aow-update-grid-v2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.aow-hub-page-v2 .aow-update-card-v2 {
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 8px 16px rgba(42, 72, 95, 0.1);
}

.aow-hub-page-v2 .aow-update-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.aow-hub-page-v2 .aow-update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aow-hub-page-v2 .aow-update-card-body {
  padding: 0.75rem 0.8rem 0.9rem;
}

.aow-hub-page-v2 .aow-update-tags {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.aow-hub-page-v2 .aow-update-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.52rem;
  border-radius: 6px;
  background: #d9464c;
  color: #fff;
  font-size: 0.9rem;
  font-family: campton-semibold, sans-serif;
}

.aow-hub-page-v2 .aow-update-card-v2 h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.27;
}

.aow-hub-page-v2 .aow-update-card-v2 h3 a {
  color: #162f4a;
  text-decoration: none;
}

.aow-hub-page-v2 .aow-update-card-v2 h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aow-hub-page-v2 .aow-update-card-v2 p {
  margin: 0;
  color: #2a4159;
  font-size: 1.04rem;
  line-height: 1.44;
}

.aow-hub-page-v2 .aow-more-articles-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.7rem;
}

.aow-hub-page-v2 .aow-payment-grid {
  gap: 0.62rem;
}

.aow-hub-page-v2 .aow-payment-card {
  background: linear-gradient(160deg, #ffffff 0%, #f5f9fd 100%);
}

@media (max-width: 1100px) {
  .aow-hub-page-v2 .aow-hero-v2-main {
    grid-template-columns: 1fr;
  }

  .aow-hub-page-v2 .aow-hero-v2-image-wrap {
    min-height: 240px;
  }

  .aow-hub-page-v2 .aow-quick-grid-v2,
  .aow-hub-page-v2 .aow-update-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .aow-hub-page-v2 .aow-hero-v2-topline {
    height: 64px;
  }

  .aow-hub-page-v2 .aow-hero-v2-shell {
    margin-top: -10px;
    border-radius: 0 0 16px 16px;
  }

  .aow-hub-page-v2 .aow-hero-v2-copy {
    padding: 1rem 0.9rem 0.82rem;
  }

  .aow-hub-page-v2 .aow-hero-v2-copy p {
    max-width: none;
  }

  .aow-hub-page-v2 .aow-hero-v2-note {
    margin: 0.15rem 0.9rem 0.95rem;
    padding: 0.85rem 0.82rem;
  }

  .aow-hub-page-v2 .aow-quick-grid-v2,
  .aow-hub-page-v2 .aow-update-grid-v2 {
    grid-template-columns: 1fr;
  }

  .aow-hub-page-v2 .aow-quick-card-v2 {
    min-height: 0;
  }

  .aow-hub-page-v2 .aow-more-articles-row {
    justify-content: stretch;
  }

  .aow-hub-page-v2 .aow-more-articles-row .cta {
    width: 100%;
    justify-content: center;
  }
}

body.front-end .copy-url {
  transition: color 0.2s ease, transform 0.2s ease;
}

body.front-end .social-share-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

body.front-end .social-share-links a svg {
  flex: 0 0 auto;
}

body.front-end .copy-url.is-copied {
  color: #15803d;
}

body.front-end .copy-url.is-copy-failed {
  color: #b91c1c;
}

body.front-end .copy-url.is-copied,
body.front-end .copy-url.is-copy-failed {
  transform: translateY(1px);
}

/* Posts overview: category filters + progressive reveal */
body.front-end .posts-overview .category-filter-container {
  margin-bottom: 24px;
}

body.front-end .posts-overview .category-filter {
  display: flex !important;
  gap: 16px;
  align-items: center;
  flex-wrap: nowrap;
}

body.front-end .posts-overview .category-filter .description {
  font-family: campton-semibold, sans-serif;
  color: #223542;
  padding-top: 0;
  white-space: nowrap;
}

body.front-end .posts-overview .category-filter .filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-left: 0 !important;
  flex: 1 1 auto;
}

body.front-end .posts-overview .single-category-filter {
  border: 0;
  color: #000;
  background: #e6f4fe;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.front-end .posts-overview .single-category-filter::before {
  content: "X";
  display: none;
  font-family: campton-bold, sans-serif;
}

body.front-end .posts-overview .single-category-filter.is-active {
  background: #d63e4d;
  color: #fff;
}

body.front-end .posts-overview .single-category-filter.is-active::before {
  display: inline;
}

body.front-end .search-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

body.front-end .search-pagination-summary {
  font-family: campton-book, sans-serif;
  font-size: 18px;
  color: #223542;
}

body.front-end .search-pagination-list {
  list-style: none;
  display: flex;
  align-items: stretch;
  border: 1px solid #d7dde5;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(34, 53, 66, 0.08);
  padding: 0;
}

body.front-end .search-pagination-item {
  border-right: 1px solid #d7dde5;
  display: flex;
}

body.front-end .search-pagination-item:last-child {
  border-right: 0;
}

body.front-end .search-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 14px 16px;
  color: #223542;
  font-family: campton-book, sans-serif;
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  gap: 8px;
}

body.front-end .search-pagination-prev .search-pagination-link,
body.front-end .search-pagination-next .search-pagination-link {
  min-width: 130px;
}

body.front-end .search-pagination-link:hover {
  text-decoration: none;
  background: #f6f8fc;
  color: #223542;
}

body.front-end .search-pagination-item.is-active .search-pagination-link {
  background: var(--blue, #ef3d4f);
  color: #fff;
  border-radius: 10px;
  margin: 8px;
  min-width: 40px;
  padding: 12px 10px;
}

body.front-end .search-pagination-item.is-disabled .search-pagination-link {
  color: #8c98a8;
  background: #fff;
  pointer-events: none;
}

body.front-end .search-pagination-link.is-dots {
  min-width: 56px;
  color: #223542;
}

body.front-end .search-pagination-link .arrow {
  font-size: 30px;
  line-height: 0.65;
  margin-top: -2px;
}

@media (max-width: 900px) {
  body.front-end .search-pagination-list {
    width: 100%;
    overflow-x: auto;
  }

  body.front-end .search-pagination-prev .search-pagination-link,
  body.front-end .search-pagination-next .search-pagination-link {
    min-width: 104px;
  }

  body.front-end .search-pagination-link {
    font-size: 18px;
    min-width: 48px;
    padding: 12px;
  }
}

.block--bg-tertiary {
  background-color: #ffffff !important;
  background-image: none !important;
}

.block.aow-breadcrumb-block,
.block.aow-breadcrumb-block.block--bg-primary,
.block.aow-breadcrumb-block.block--bg-tertiary,
.block.aow-breadcrumb-block.block--bg-none {
  position: relative;
  z-index: 3;
  margin-bottom: 0 !important;
  padding: 0.55rem 0 0.85rem;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid #e5edf4;
}

.block.aow-breadcrumb-block .inner-container,
.block.aow-breadcrumb-block .aow-breadcrumbs {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.block.aow-breadcrumb-block .aow-breadcrumbs {
  font-size: 14px;
  line-height: 1.35;
}

.block.aow-breadcrumb-block .aow-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #31536e;
}

.block.aow-breadcrumb-block .aow-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.block.aow-breadcrumb-block .aow-breadcrumbs__item + .aow-breadcrumbs__item::before {
  content: ">";
  color: #7d95a9;
  font-family: campton-book, sans-serif;
}

.block.aow-breadcrumb-block .aow-breadcrumbs__item:first-child a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  overflow: hidden;
  color: transparent !important;
  text-decoration: none !important;
  text-indent: -9999px;
  white-space: nowrap;
  font-size: 0 !important;
  line-height: 0 !important;
}

.block.aow-breadcrumb-block .aow-breadcrumbs__item:first-child a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 18.1'%3E%3Cpath fill='%2331536e' d='M15.8 5.8V1.7h-2.3v1.8l-1-1L10 0 7.5 2.5 0 10l2.5 2.5.7-.8v6.4h4.2v-4.3h4.7v4.3h4.5v-6.5l.9.9L20 10z'/%3E%3C/svg%3E");
}

.block.aow-breadcrumb-block .aow-breadcrumbs__item a,
.block.aow-breadcrumb-block .aow-breadcrumbs__item span {
  color: #31536e;
  text-decoration: none;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-family: campton-book, sans-serif;
}

.block.aow-breadcrumb-block .aow-breadcrumbs__item a:hover,
.block.aow-breadcrumb-block .aow-breadcrumbs__item a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.block.aow-breadcrumb-block .aow-breadcrumbs__item[aria-current="page"],
.block.aow-breadcrumb-block .aow-breadcrumbs__item[aria-current="page"] span {
  color: #17324d;
  font-family: campton-semibold, sans-serif;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

@media (max-width: 641px) {
  .block.aow-breadcrumb-block,
  .block.aow-breadcrumb-block.block--bg-primary,
  .block.aow-breadcrumb-block.block--bg-tertiary,
  .block.aow-breadcrumb-block.block--bg-none {
    padding: 0.7rem 0 0.7rem;
  }

  .block.aow-breadcrumb-block .aow-breadcrumbs,
  .block.aow-breadcrumb-block .aow-breadcrumbs__item a,
  .block.aow-breadcrumb-block .aow-breadcrumbs__item span {
    font-size: 14px;
  }
}

.home-hero-routes-block {
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #fbfdff 48%, #eef6ff 100%);
  padding-top: 25px !important;
}

.home-hero-routes-block .inner-container {
  width: min(1280px, calc(100% - 3rem));
}

.home-hero-routes {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(380px, 0.9fr);
  gap: 2.2rem;
  align-items: start;
  padding: 0 0 3.55rem;
}

.home-hero-routes__main {
  min-width: 0;
}

.home-hero-routes__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0.32rem 0.82rem;
  border-radius: 999px;
  background: #eef9ef;
  border: 1px solid rgba(44, 155, 89, 0.12);
  color: #256a44;
  font-family: campton-semibold, sans-serif;
  font-size: 0.88rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.home-hero-routes__title {
  margin: 0;
  color: #081d49;
  font-family: campton-bold, sans-serif;
  font-size: clamp(4rem, 6vw, 6.9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 17.8ch;
  text-wrap: normal;
}

.home-hero-routes__intro {
  max-width: 41rem;
  margin: 2.05rem 0 0;
  color: #33526f;
  font-size: 1.3rem;
  line-height: 1.72;
}

.home-hero-routes__cta-row {
  margin: 3rem 0 0;
}

.home-hero-routes__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.95rem 2.15rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(20, 61, 100, 0.14);
  box-shadow: 0 14px 32px rgba(18, 64, 104, 0.08);
  color: #0b2246 !important;
  font-family: campton-semibold, sans-serif;
  font-size: 1.16rem;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-hero-routes__cta:visited,
.home-hero-routes__cta:hover,
.home-hero-routes__cta:active {
  color: #0b2246 !important;
  text-decoration: none !important;
}

.home-hero-routes__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(18, 64, 104, 0.1);
  border-color: rgba(11, 34, 70, 0.18);
}

.home-hero-routes__cta:focus-visible,
.home-hero-routes__route:focus-visible {
  outline: 3px solid #ef3f4b;
  outline-offset: 3px;
}

.home-hero-routes__trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.home-hero-routes__trust-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.68rem;
  align-items: start;
  min-height: 0;
  padding: 0.88rem 0.92rem 0.86rem;
  border-radius: 18px;
  border: 1px solid rgba(26, 71, 108, 0.09);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(23, 62, 100, 0.03);
  cursor: default;
}

.home-hero-routes__trust-item > div {
  min-width: 0;
  display: grid;
  gap: 0.14rem;
}

.home-hero-routes__trust-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: #2c9b59;
  margin-top: 0.06rem;
}

.home-hero-routes__trust-icon svg,
.home-hero-routes__route-icon svg,
.home-hero-routes__route-chevron svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero-routes__trust-title {
  margin: 0;
  color: #0f3056;
  font-family: campton-bold, sans-serif;
  font-size: 1.02rem;
  line-height: 1.22;
  text-wrap: pretty;
}

.home-hero-routes__trust-subtitle {
  margin: 0;
  color: #687b91;
  font-size: 0.84rem;
  line-height: 1.36;
  text-wrap: pretty;
}

.newsletter-status {
  margin: 0 0 0.95rem;
  padding: 0.88rem 1rem;
  border: 1px solid transparent;
  border-radius: 18px;
  font-family: campton-semibold, sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(18, 64, 104, 0.06);
}

.newsletter-status--success {
  border-color: #b8dfc1;
  background: #edf8f0;
  color: #205a31;
}

.newsletter-status--already {
  border-color: #cad8e7;
  background: #eef4fb;
  color: #26425f;
}

.newsletter-status--error {
  border-color: #f1c0c7;
  background: #fff1f3;
  color: #8a2430;
}

.home-hero-routes__newsletter-card {
  margin-top: 1.85rem;
  padding: 1rem 1.15rem 0.42rem;
  border-radius: 28px;
  border: 1px solid rgba(18, 62, 100, 0.07);
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(18, 64, 104, 0.035);
}

.home-hero-routes__newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  background: #dfedfb;
  border: 1px solid #c8dcf3;
  color: #000000;
  font-family: campton-semibold, sans-serif;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.home-hero-routes__newsletter-title {
  margin: 0.82rem 0 0;
  color: #0a2348;
  font-family: campton-semibold, sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
  line-height: 1.12;
  max-width: 18ch;
}

.home-hero-routes__newsletter-text {
  margin: 0.56rem 0 0;
  color: #5a7187;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 35rem;
}

.home-hero-routes__newsletter-form {
  margin-top: 1rem;
  background: transparent !important;
}

.home-hero-routes__newsletter-form .ltih-form-message,
.home-hero-routes__newsletter-form .newsletter-status {
  margin-bottom: 0.92rem;
}

.home-hero-routes__newsletter-form .ltih-form-block,
.home-hero-routes__newsletter-form .newsletter_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.home-hero-routes__newsletter-form .ltih-form-block .form-text,
.home-hero-routes__newsletter-form .ltih-form-block .gform_title,
.home-hero-routes__newsletter-form .ltih-form-block .ltih-form-description {
  display: none !important;
}

.home-hero-routes__newsletter-form .ltih-form-block form.newsletter,
.home-hero-routes__newsletter-form .newsletter {
  display: flex !important;
  flex-direction: column !important;
  gap: 0;
  align-items: start;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.home-hero-routes__newsletter-form .ltih-form-block .gfield_label {
  display: block !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0 0 0.42rem;
  color: #173247;
  font-family: campton-semibold, sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
}

.home-hero-routes__newsletter-form .gform-body {
  grid-column: auto;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.home-hero-routes__newsletter-form .gform_fields {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.68rem;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.home-hero-routes__newsletter-form .gfield {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.home-hero-routes__newsletter-form .ginput_container input[type=text],
.home-hero-routes__newsletter-form .ginput_container input[type=email] {
  width: 100%;
  height: 3.15rem;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid rgba(18, 62, 100, 0.16);
  background: #eef4f9;
  color: #0b2246;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 2px 8px rgba(18, 64, 104, 0.05);
}

.home-hero-routes__newsletter-form .ginput_container input[type=text]::placeholder,
.home-hero-routes__newsletter-form .ginput_container input[type=email]::placeholder {
  color: #667d95;
}

.home-hero-routes__newsletter-form .ginput_container input[type=text]:focus,
.home-hero-routes__newsletter-form .ginput_container input[type=email]:focus {
  border-color: rgba(12, 55, 96, 0.26) !important;
  box-shadow: 0 0 0 4px rgba(239, 63, 75, 0.08);
}

.home-hero-routes__newsletter-form .newsletter > .tw-mt-3 {
  grid-column: 1 / -1;
  margin-top: 0 !important;
  color: #6f8298;
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
}

.home-hero-routes__newsletter-form .newsletter > .tw-mt-3 label {
  gap: 0.55rem;
  align-items: center;
}

.home-hero-routes__newsletter-form .newsletter > .tw-mt-3 input[type=checkbox] {
  accent-color: #ef3f4b;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0 !important;
}

.ltih-form-block .ginput_container_checkbox,
.ltih-form-block .gfield_checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ltih-form-block .gfield_checkbox {
  align-items: flex-start;
  color: #223542;
  font-family: campton-book, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.ltih-form-block .gfield_checkbox {
  flex-direction: row;
  gap: 0.65rem;
  position: relative;
}

.ltih-form-block .gfield_checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ltih-form-block .gfield_checkbox .ltih-checkbox-ui {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  border: 1.5px solid #98a3b3;
  border-radius: 0.2rem;
  background: #ffffff;
  box-sizing: border-box;
  margin-top: 0.12rem;
}

.ltih-form-block .gfield_checkbox input[type=checkbox]:checked + .ltih-checkbox-ui {
  border-color: #ef3f4b;
  background: #ef3f4b;
}

.ltih-form-block .gfield_checkbox input[type=checkbox]:checked + .ltih-checkbox-ui::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.08rem;
  width: 0.26rem;
  height: 0.5rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ltih-form-block .gfield_checkbox input[type=checkbox]:focus-visible + .ltih-checkbox-ui {
  outline: 2px solid rgba(239, 63, 75, 0.22);
  outline-offset: 2px;
}

.ltih-form-block .gfield_checkbox .ltih-checkbox-label {
  color: inherit;
}

.ltih-form-block .ltih-getresponse-consent-note {
  margin: 0.35rem 0 0.9rem;
  color: #5f6f8c;
  font-family: campton-book, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

.ltih-form-block .gform-footer,
.ltih-form-block .gform_footer {
  display: flex;
  justify-content: flex-start !important;
}

.home-hero-routes__newsletter-form .gform-footer {
  margin: 0.95rem 0 0 !important;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 0 !important;
  padding-left: 0;
}

.home-hero-routes__newsletter-form .gform_button.button {
  min-width: 0;
  min-height: 3.15rem;
  padding: 0.82rem 1.3rem;
  border: 0;
  border-radius: 16px;
  background: #ef3f4b;
  color: #ffffff;
  font-family: campton-semibold, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  box-shadow: 0 10px 18px rgba(239, 63, 75, 0.14);
  cursor: pointer;
}

.home-hero-routes__newsletter-form .gform_button.button:hover {
  background: #e33643;
}

.home-hero-routes__newsletter-note {
  margin: 0.62rem 0 0;
  color: #7d8ea2;
  font-size: 0.8rem;
  line-height: 1.45;
}

.home-hero-routes__panel {
  padding: 1.65rem 1.55rem 1.45rem;
  border-radius: 30px;
  border: 1px solid rgba(18, 62, 100, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(14, 56, 92, 0.08);
}

.home-hero-routes__panel-title {
  margin: 0;
  color: #0a2348;
  font-family: campton-semibold, sans-serif;
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.home-hero-routes__panel-subtitle {
  margin: 0.72rem 0 0;
  color: #5a7187;
  font-size: 1.02rem;
  line-height: 1.58;
  max-width: 30rem;
}

.home-hero-routes__route-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.35rem;
}

.home-hero-routes__route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.95rem;
  align-items: center;
  min-width: 0;
  padding: 1.08rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(17, 63, 98, 0.09);
  background: #ffffff;
  color: #0b2246 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(18, 64, 104, 0.035);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-hero-routes__route:visited,
.home-hero-routes__route:hover,
.home-hero-routes__route:active,
.home-hero-routes__route-copy,
.home-hero-routes__route-title,
.home-hero-routes__route-text {
  color: inherit;
  text-decoration: none !important;
}

.home-hero-routes__route:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 48, 86, 0.15);
  box-shadow: 0 14px 30px rgba(18, 64, 104, 0.065);
}

.home-hero-routes__route--featured {
  position: relative;
  border-color: rgba(31, 143, 95, 0.18);
  background: linear-gradient(135deg, #f7fff8 0%, #ffffff 58%, #edf8f1 100%);
  box-shadow: 0 10px 24px rgba(58, 126, 89, 0.08);
}

.home-hero-routes__route--featured:hover {
  border-color: rgba(31, 143, 95, 0.28);
  box-shadow: 0 12px 28px rgba(58, 126, 89, 0.11);
}

.home-hero-routes__route-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 15px;
  background: #f03e4b;
  color: #ffffff;
  flex-shrink: 0;
}

.home-hero-routes__route--featured .home-hero-routes__route-icon {
  background: linear-gradient(135deg, #1f8f5f 0%, #4bb680 100%);
  box-shadow: 0 8px 18px rgba(31, 143, 95, 0.14);
}

.home-hero-routes__route-copy {
  display: block;
  min-width: 0;
}

.home-hero-routes__route-title {
  display: block;
  color: #0b2246;
  font-family: campton-semibold, sans-serif;
  font-size: 1.12rem;
  line-height: 1.28;
}

.home-hero-routes__route-text {
  display: block;
  margin-top: 0.28rem;
  color: #5b718a;
  font-size: 0.98rem;
  line-height: 1.52;
}

.home-hero-routes__route--featured .home-hero-routes__route-title {
  color: #1f3f2f;
}

.home-hero-routes__route--featured .home-hero-routes__route-text {
  color: #4f665a;
}

.home-hero-routes__route-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: #f03e4b;
}

.home-hero-routes__route--featured .home-hero-routes__route-chevron {
  color: #1f8f5f;
}

.home-hero-routes__route-preview {
  display: none;
}

@media screen and (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .home-hero-routes__route--featured:hover,
  .home-hero-routes__route--featured:focus-visible {
    z-index: 3;
  }

  .home-hero-routes__route-preview {
    display: block;
    position: absolute;
    right: 1rem;
    bottom: calc(100% + 0.85rem);
    width: min(14rem, 34vw);
    padding: 0.45rem;
    border: 1px solid rgba(31, 143, 95, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(18, 64, 104, 0.12);
    opacity: 0;
    transform: translateY(0.45rem) scale(0.98);
    transform-origin: bottom right;
    transition: opacity 0.18s ease, transform 0.22s ease;
    pointer-events: none;
  }

  .home-hero-routes__route-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .home-hero-routes__route--featured:hover .home-hero-routes__route-preview,
  .home-hero-routes__route--featured:focus-visible .home-hero-routes__route-preview {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media screen and (max-width: 1180px) {
  .home-hero-routes__title {
    max-width: 16.1ch;
    font-size: clamp(3.35rem, 5.5vw, 5.4rem);
  }

  .home-hero-routes__trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-routes__newsletter-form .newsletter {
    align-items: stretch;
  }

  .home-hero-routes__newsletter-form .gform_fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-routes__newsletter-form .gform-footer {
    width: 100%;
  }

  .home-hero-routes__newsletter-form .gform_button.button {
    width: 100%;
  }
}

@media screen and (max-width: 980px) {
  .home-hero-routes {
    grid-template-columns: 1fr;
    gap: 1.9rem;
    padding: 2.25rem 0 2.6rem;
  }

  .home-hero-routes__title,
  .home-hero-routes__intro {
    max-width: none;
  }
}

@media screen and (max-width: 700px) {
  .home-hero-routes-block .inner-container {
    width: min(100%, calc(100% - 1.6rem));
  }

  .home-hero-routes {
    gap: 1.45rem;
    padding: 1.5rem 0 1.95rem;
  }

  .home-hero-routes__badge {
    font-size: 0.84rem;
  }

  .home-hero-routes__title {
    margin-top: 0;
    font-size: 3.15rem;
    line-height: 0.95;
    letter-spacing: -0.045em;
    max-width: 13.8ch;
  }

  .home-hero-routes__intro {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.62;
  }

  .home-hero-routes__cta-row {
    margin-top: 1.3rem;
  }

  .home-hero-routes__cta {
    width: 100%;
    min-height: 3.5rem;
    font-size: 1.03rem;
    padding: 0.9rem 1.25rem;
  }

  .home-hero-routes__newsletter-card {
    margin-top: 1.2rem;
    padding: 0.92rem 0.9rem 0.5rem;
    border-radius: 22px;
  }

  .home-hero-routes__newsletter-title {
    font-size: 1.32rem;
    max-width: none;
  }

  .home-hero-routes__newsletter-text {
    font-size: 0.94rem;
  }

  .home-hero-routes__newsletter-form {
    margin-top: 0.9rem;
  }

  .home-hero-routes__newsletter-form .gform-body {
    padding: 0;
    border-radius: 0;
  }

  .home-hero-routes__newsletter-form .gform_fields {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .home-hero-routes__newsletter-form .gform-footer {
    margin-top: 0.82rem !important;
  }

  .home-hero-routes__newsletter-form .ginput_container input[type=text],
  .home-hero-routes__newsletter-form .ginput_container input[type=email],
  .home-hero-routes__newsletter-form .gform_button.button {
    height: 3.05rem;
    border-radius: 14px;
  }

  .home-hero-routes__trust-list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 1.2rem;
  }

  .home-hero-routes__trust-item {
    gap: 0.62rem;
    padding: 0.78rem 0.82rem;
    border-radius: 16px;
  }

  .home-hero-routes__trust-title {
    font-size: 0.98rem;
  }

  .home-hero-routes__trust-subtitle {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .home-hero-routes__panel {
    padding: 1.15rem 1rem 1rem;
    border-radius: 24px;
  }

  .home-hero-routes__panel-title {
    font-size: 1.58rem;
  }

  .home-hero-routes__panel-subtitle {
    font-size: 0.96rem;
  }

  .home-hero-routes__route {
    gap: 0.8rem;
    padding: 0.96rem 0.9rem;
  }

  .home-hero-routes__route-icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 13px;
  }

  .home-hero-routes__route-title {
    font-size: 1rem;
  }

  .home-hero-routes__route-text,
  .home-hero-routes__trust-subtitle,
  .home-hero-routes__newsletter-note {
    font-size: 0.92rem;
  }
}

.home-posts-overview-three {
  padding-top: 30px;
}

.home-posts-overview-three .posts-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.home-posts-overview-three a.single-post {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(17, 63, 98, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(17, 63, 98, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-posts-overview-three a.single-post:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 63, 98, 0.14);
  box-shadow: 0 18px 40px rgba(17, 63, 98, 0.08);
}

.home-posts-overview-three a.single-post .single-post-roof {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-posts-overview-three a.single-post .image,
.home-posts-overview-three a.single-post .image picture {
  display: block;
  width: 100%;
  overflow: hidden;
}

.home-posts-overview-three a.single-post .image picture img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.home-posts-overview-three a.single-post .tax-and-date {
  padding: 1rem 1.25rem 0;
  color: #6a7f95;
  font-size: 0.98rem;
  line-height: 1.4;
}

.home-posts-overview-three a.single-post .tax-and-date .taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.home-posts-overview-three a.single-post .tax-and-date .taxonomies .tag {
  margin: 0;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 63, 98, 0.08);
  background: #f4f7fb;
  color: #234260;
  font-size: 0.8rem;
  font-family: campton-semibold, sans-serif;
  line-height: 1.2;
}

.home-posts-overview-three a.single-post .title {
  padding: 0.82rem 1.25rem 1.35rem;
  color: #0b2246;
  font-family: campton-semibold, sans-serif;
  font-size: 1.42rem;
  line-height: 1.3;
}

@media screen and (max-width: 1050px) {
  .home-posts-overview-three a.single-post {
    border-radius: 24px;
  }
}

@media screen and (max-width: 900px) {
  .home-posts-overview-three a.single-post {
    border-radius: 24px;
  }

  .home-posts-overview-three a.single-post .tax-and-date {
    padding: 0.9rem 1rem 0;
  }

  .home-posts-overview-three a.single-post .title {
    padding: 0.72rem 1rem 1.08rem;
    font-size: 1.24rem;
    line-height: 1.28;
  }
}

.block.posts-overview.layout-three-cards.home-posts-overview-three {
  padding-top: 30px !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three .posts-overview-title {
  margin-top: 0 !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post {
  overflow: hidden !important;
  border-radius: 38px !important;
  border: 1px solid rgba(17, 63, 98, 0.08) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 12px 34px rgba(17, 63, 98, 0.05) !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post:hover {
  border-color: rgba(17, 63, 98, 0.14) !important;
  box-shadow: 0 18px 40px rgba(17, 63, 98, 0.08) !important;
  -webkit-transform: translateY(-2px) !important;
  transform: translateY(-2px) !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .image,
.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .image picture {
  overflow: hidden !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .image picture img {
  display: block !important;
  width: 100% !important;
  object-fit: cover !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .tax-and-date {
  padding: 1rem 1.25rem 0 !important;
  color: #6a7f95 !important;
  font-size: 0.98rem !important;
  line-height: 1.4 !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .tax-and-date .taxonomies {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.42rem !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .tax-and-date .taxonomies .tag {
  margin: 0 !important;
  padding: 0.34rem 0.72rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(17, 63, 98, 0.08) !important;
  background: #f4f7fb !important;
  color: #234260 !important;
  font-size: 0.8rem !important;
  font-family: campton-semibold, sans-serif !important;
  line-height: 1.2 !important;
}

.block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .title {
  padding: 0.82rem 1.25rem 1.35rem !important;
  color: #0b2246 !important;
  font-family: campton-semibold, sans-serif !important;
  font-size: 1.42rem !important;
  line-height: 1.3 !important;
}

@media screen and (max-width: 1050px) {
  .block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post {
    border-radius: 32px !important;
  }
}

@media screen and (max-width: 900px) {
  .block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post {
    border-radius: 30px !important;
  }

  .block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .tax-and-date {
    padding: 0.9rem 1rem 0 !important;
  }

  .block.posts-overview.layout-three-cards.home-posts-overview-three a.single-post .title {
    padding: 0.72rem 1rem 1.08rem !important;
    font-size: 1.24rem !important;
    line-height: 1.28 !important;
  }
}

.home-posts-overview-three__card {
  overflow: hidden !important;
  border-radius: 38px !important;
  border: 1px solid rgba(17, 63, 98, 0.08) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 12px 34px rgba(17, 63, 98, 0.05) !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

.home-posts-overview-three__card:hover {
  border-color: rgba(17, 63, 98, 0.14) !important;
  box-shadow: 0 18px 40px rgba(17, 63, 98, 0.08) !important;
  -webkit-transform: translateY(-2px) !important;
  transform: translateY(-2px) !important;
}

.home-posts-overview-three__card-roof {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-posts-overview-three__image,
.home-posts-overview-three__image picture {
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
}

.home-posts-overview-three__image picture img {
  display: block !important;
  width: 100% !important;
  object-fit: cover !important;
}

.home-posts-overview-three__tax-and-date {
  padding: 1rem 1.25rem 0 !important;
  color: #6a7f95 !important;
  font-size: 0.98rem !important;
  line-height: 1.4 !important;
}

.home-posts-overview-three__taxonomies {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.42rem !important;
}

.home-posts-overview-three__tag {
  margin: 0 !important;
  padding: 0.34rem 0.72rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(17, 63, 98, 0.08) !important;
  background: #f4f7fb !important;
  color: #234260 !important;
  font-size: 0.8rem !important;
  font-family: campton-semibold, sans-serif !important;
  line-height: 1.2 !important;
}

.home-posts-overview-three__title {
  padding: 0.82rem 1.25rem 1.35rem !important;
  color: #0b2246 !important;
  font-family: campton-semibold, sans-serif !important;
  font-size: 1.42rem !important;
  line-height: 1.3 !important;
}

@media screen and (max-width: 1050px) {
  .home-posts-overview-three__card {
    border-radius: 32px !important;
  }
}

@media screen and (max-width: 900px) {
  .home-posts-overview-three__card {
    border-radius: 30px !important;
  }

  .home-posts-overview-three__tax-and-date {
    padding: 0.9rem 1rem 0 !important;
  }

  .home-posts-overview-three__title {
    padding: 0.72rem 1rem 1.08rem !important;
    font-size: 1.24rem !important;
    line-height: 1.28 !important;
  }
}

.block.posts-overview.layout-three-cards.posts-overview-three-soft a.single-post {
  overflow: hidden !important;
  border-radius: 38px !important;
  border: 1px solid rgba(17, 63, 98, 0.08) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 12px 34px rgba(17, 63, 98, 0.05) !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

.block.posts-overview.layout-three-cards.posts-overview-three-soft a.single-post:hover {
  border-color: rgba(17, 63, 98, 0.14) !important;
  box-shadow: 0 18px 40px rgba(17, 63, 98, 0.08) !important;
  -webkit-transform: translateY(-2px) !important;
  transform: translateY(-2px) !important;
}

.block.posts-overview.layout-three-cards.posts-overview-three-soft a.single-post .image,
.block.posts-overview.layout-three-cards.posts-overview-three-soft a.single-post .image picture {
  overflow: hidden !important;
}

.block.posts-overview.layout-three-cards.posts-overview-three-soft {
  padding-top: 30px !important;
}

.block.posts-overview.layout-three-cards.posts-overview-three-soft .posts-overview-title {
  margin-top: 0 !important;
}

@media screen and (max-width: 1050px) {
  .block.posts-overview.layout-three-cards.posts-overview-three-soft a.single-post {
    border-radius: 32px !important;
  }
}

@media screen and (max-width: 900px) {
  .block.posts-overview.layout-three-cards.posts-overview-three-soft a.single-post {
    border-radius: 30px !important;
  }
}

.block.posts-overview.layout-four-cards.posts-overview-four-soft a.single-post {
  overflow: hidden !important;
  border-radius: 38px !important;
}

.block.posts-overview.layout-four-cards.posts-overview-four-soft a.single-post .image,
.block.posts-overview.layout-four-cards.posts-overview-four-soft a.single-post .image picture {
  overflow: hidden !important;
}

@media screen and (max-width: 1050px) {
  .block.posts-overview.layout-four-cards.posts-overview-four-soft a.single-post {
    border-radius: 32px !important;
  }
}

@media screen and (max-width: 900px) {
  .block.posts-overview.layout-four-cards.posts-overview-four-soft a.single-post {
    border-radius: 30px !important;
  }
}

.ltih-intro-guide-block {
  padding-top: 0 !important;
  padding-bottom: 0.22rem !important;
}

.ltih-intro-guide-block .inner-container {
  width: min(1240px, calc(100% - 3rem));
  padding-bottom: 0 !important;
}

.ltih-intro-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.74fr);
  gap: clamp(1.4rem, 2.2vw, 2.25rem);
  align-items: start;
  padding: clamp(1.4rem, 2.4vw, 1.9rem) 0 0.22rem;
}

.ltih-intro-guide-copy {
  min-width: 0;
  max-width: 60rem;
}

.ltih-intro-guide-copy h2 {
  margin: 0;
  color: #0b2246;
  font-family: campton-semibold, sans-serif;
  font-size: clamp(1.95rem, 2.45vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 23ch;
  text-wrap: pretty;
}

.ltih-intro-guide-copy p {
  max-width: 58ch;
  margin-top: 1.35rem;
  color: #31536e;
  font-size: 1.07rem;
  line-height: 1.8;
}

.ltih-intro-guide-aside {
  min-width: 0;
  width: 100%;
  max-width: 29.5rem;
  justify-self: end;
}

.ltih-intro-guide-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 56, 91, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(18, 64, 104, 0.07);
  min-height: 100%;
}

.ltih-intro-guide-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 1.72;
  overflow: hidden;
  background: #dce7f2;
}

.ltih-intro-guide-card__media picture,
.ltih-intro-guide-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.ltih-intro-guide-card__media img {
  object-fit: cover;
}

.ltih-intro-guide-card__body {
  display: grid;
  gap: 0.82rem;
  padding: 1.55rem 1.55rem 1.65rem;
  text-decoration: none !important;
}

.ltih-intro-guide-card__body h3 {
  margin: 0;
  color: #0f3056;
  font-family: campton-semibold, sans-serif;
  font-size: 1.26rem;
  line-height: 1.24;
  letter-spacing: -0.015em;
  max-width: 16ch;
  text-wrap: pretty;
  text-decoration: none !important;
}

.ltih-intro-guide-card__body p {
  margin: 0;
  color: #49657d;
  font-size: 0.985rem;
  line-height: 1.7;
  text-decoration: none !important;
}

.ltih-intro-guide-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  min-height: 2.85rem;
  margin-top: 0.55rem;
  padding: 0.72rem 1.2rem;
  border-radius: 16px;
  background: #2c8c59;
  border: 1px solid #2c8c59;
  box-shadow: 0 10px 24px rgba(35, 176, 83, 0.16);
  color: #ffffff !important;
  font-family: campton-semibold, sans-serif;
  font-size: 0.97rem;
  line-height: 1.1;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.ltih-intro-guide-card__button:hover,
.ltih-intro-guide-card__button:focus-visible,
.ltih-intro-guide-card__button:active,
.ltih-intro-guide-card__button:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.ltih-intro-guide-card__button:hover {
  transform: translateY(-1px);
  background: #277d50;
  border-color: #277d50;
  box-shadow: 0 14px 28px rgba(35, 176, 83, 0.2);
}

.ltih-intro-guide-card__button:focus-visible {
  outline: 3px solid rgba(239, 63, 75, 0.2);
  outline-offset: 3px;
}

.ltih-intro-guide-card__button--static {
  pointer-events: none;
}

@media (max-width: 991px) {
  .ltih-intro-guide-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-top: 1.35rem;
    padding-bottom: 0.2rem;
  }

  .ltih-intro-guide-copy {
    max-width: 100%;
  }

  .ltih-intro-guide-copy h2,
  .ltih-intro-guide-copy p {
    max-width: 100%;
  }

  .ltih-intro-guide-aside {
    order: 2;
    max-width: 36rem;
    justify-self: stretch;
  }
}

@media (max-width: 641px) {
  .ltih-intro-guide-block .inner-container {
    width: min(100%, calc(100% - 2rem));
  }

  .ltih-intro-guide-grid {
    gap: 1.45rem;
    padding-top: 0.95rem;
    padding-bottom: 0.16rem;
  }

  .ltih-intro-guide-copy h2 {
    font-size: clamp(1.85rem, 7.4vw, 2.3rem);
    line-height: 1.16;
  }

  .ltih-intro-guide-copy p {
    margin-top: 1.2rem;
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .ltih-intro-guide-card {
    border-radius: 22px;
  }

  .ltih-intro-guide-card__media {
    aspect-ratio: 1.58;
  }

  .ltih-intro-guide-card__body {
    gap: 0.75rem;
    padding: 1.2rem 1.2rem 1.3rem;
  }

  .ltih-intro-guide-card__body h3 {
    max-width: 100%;
    font-size: 1.22rem;
  }

  .ltih-intro-guide-card__button {
    width: 100%;
    justify-content: center;
  }
}

body.front-end .blocks-wrapper > .block.header-bar:first-child,
body.front-end > .block.header-bar:first-child {
  margin-top: -12px;
}

body.front-end .block.header-bar {
  padding: 0;
  background-image: linear-gradient(90deg, #d63e4d, #eda023);
  background-color: #d63e4d;
}

body.front-end .block.header-bar::before {
  content: none;
}

body.front-end .block.header-bar::after {
  content: none;
}

body.front-end .block.header-bar .header-bar-content {
  min-height: 65px;
  padding: 0.45rem 1.5rem;
}

body.front-end .block.header-bar .header-bar-content h1 {
  margin: 0;
  color: #fff;
  font-family: campton-book, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: none;
  transform: translateY(2px);
}

@media only screen and (max-width:900px) {
  body.front-end .blocks-wrapper > .block.header-bar:first-child,
  body.front-end > .block.header-bar:first-child {
    margin-top: 0;
  }

  body.front-end .block.header-bar .header-bar-content {
    min-height: 60px;
    padding: 0.7rem 1rem;
  }

  body.front-end .block.header-bar .header-bar-content h1 {
    font-size: clamp(1.75rem, 6.4vw, 2.05rem);
    line-height: 1.08;
    transform: translateY(1px);
  }
}

.ltih-global-newsletter-section {
  background: #ffffff;
  padding: 2.75rem 0;
}

.ltih-global-newsletter {
  background: #ffffff;
}

.ltih-global-newsletter__head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.ltih-global-newsletter__title {
  margin: 0 0 0.75rem;
  color: #111;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.ltih-global-newsletter__subtitle {
  margin: 0;
  color: #2f3545;
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  line-height: 1.45;
}

.ltih-global-newsletter__bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.ltih-global-newsletter__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding-left: 0;
  color: #2f3545;
  font-size: 1.05rem;
  line-height: 1.5;
}

.ltih-global-newsletter__bullets li::before {
  content: "✓";
  flex: 0 0 auto;
  margin-top: 0.02rem;
  color: #2e9f4f;
  font-weight: 700;
}

.ltih-global-newsletter__visual {
  min-height: 230px;
}

.ltih-global-newsletter__visual-image {
  display: block;
  width: min(82%, 540px);
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  margin-left: auto;
}

.ltih-global-newsletter__form {
  margin-top: 1.8rem;
}

.ltih-global-newsletter__form .ltih-form-block {
  margin-bottom: 0;
  background: transparent;
}

.ltih-global-newsletter__form form.newsletter {
  display: block !important;
}

.ltih-global-newsletter__form .gform_wrapper .gform_fields,
.ltih-global-newsletter__form .ltih-form-block .gform_fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem;
  width: 100%;
  padding-bottom: 0.75rem !important;
}

.ltih-global-newsletter__form .gform_wrapper .gfield.full,
.ltih-global-newsletter__form .ltih-form-block .gfield.full {
  margin: 0;
}

.ltih-global-newsletter__form .gform_wrapper .gform_fields .gfield,
.ltih-global-newsletter__form .ltih-form-block .gform_fields .gfield {
  width: auto !important;
  min-width: 0;
  grid-column: auto !important;
}

.ltih-global-newsletter__form .gform_wrapper .gform_fields > li.gfield.full,
.ltih-global-newsletter__form .ltih-form-block .gform_fields > li.gfield.full {
  grid-column: auto !important;
}

.ltih-global-newsletter__form .gform_wrapper .gform_fields > li.gfield.gfield--type-honeypot,
.ltih-global-newsletter__form .ltih-form-block .gform_fields > li.gfield.gfield--type-honeypot {
  display: none !important;
}

.ltih-global-newsletter__form .ltih-form-block .gfield_checkbox {
  color: #2f3545;
}

.ltih-global-newsletter__form .ltih-form-block .gform-footer {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-start;
}

.ltih-global-newsletter__form .ltih-form-block .gform_button.button {
  min-width: 160px;
}

.ltih-global-newsletter__form .ltih-form-block input.medium,
.ltih-global-newsletter__form .ltih-form-block select.medium,
.ltih-global-newsletter__form .ltih-form-block textarea.medium {
  background: #fff;
  border: 1px solid #cfd8e3;
}

@media (max-width: 900px) {
  .ltih-global-newsletter-section {
    padding: 2.1rem 0;
  }

  .ltih-global-newsletter__head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ltih-global-newsletter__visual {
    min-height: 180px;
  }

  .ltih-global-newsletter__form .gform_wrapper .gform_fields,
  .ltih-global-newsletter__form .ltih-form-block .gform_fields {
    grid-template-columns: 1fr;
  }

  .ltih-global-newsletter__form .ltih-form-block .gform-footer {
    margin-top: 0.5rem;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.block.hero-video-block {
  padding-top: 24px;
  padding-bottom: 28px;
}

.hero-video-block {
  --hero-video-shell-height: clamp(520px, 70vw, 700px);
  --hero-video-text-color: #ffffff;
  --hero-video-eyebrow-color: #fff6ec;
  --hero-video-eyebrow-text-color: var(--hero-video-eyebrow-color);
  --hero-video-headline-text-color: var(--hero-video-text-color);
  --hero-video-eyebrow-bg: rgba(255, 245, 235, 0.18);
  --hero-video-eyebrow-border: rgba(255, 244, 233, 0.28);
  --hero-video-body-color: rgba(255, 248, 242, 0.92);
  --hero-video-body-text-color: var(--hero-video-body-color);
  --hero-video-primary-cta-text-color: #ffffff;
  --hero-video-secondary-cta-text-color: var(--hero-video-text-color);
  --hero-video-secondary-cta-bg: rgba(255, 255, 255, 0.12);
  --hero-video-secondary-cta-border: rgba(255, 255, 255, 0.26);
  --hero-video-secondary-cta-hover-bg: rgba(255, 255, 255, 0.18);
  --hero-video-secondary-cta-hover-border: rgba(255, 255, 255, 0.34);
  --hero-video-control-border: rgba(255, 255, 255, 0.18);
  --hero-video-control-bg: rgba(7, 18, 30, 0.42);
  --hero-video-control-color: #ffffff;
  --hero-video-focus-outline: rgba(255, 255, 255, 0.34);
}

.hero-video-block--text-dark {
  --hero-video-text-color: #11283d;
  --hero-video-eyebrow-color: #173145;
  --hero-video-eyebrow-bg: rgba(255, 248, 240, 0.68);
  --hero-video-eyebrow-border: rgba(17, 40, 61, 0.1);
  --hero-video-body-color: rgba(17, 40, 61, 0.88);
  --hero-video-secondary-cta-bg: rgba(255, 250, 246, 0.72);
  --hero-video-secondary-cta-border: rgba(17, 40, 61, 0.16);
  --hero-video-secondary-cta-hover-bg: rgba(255, 250, 246, 0.86);
  --hero-video-secondary-cta-hover-border: rgba(17, 40, 61, 0.24);
  --hero-video-control-border: rgba(17, 40, 61, 0.14);
  --hero-video-control-bg: rgba(255, 247, 240, 0.76);
  --hero-video-control-color: #11283d;
  --hero-video-focus-outline: rgba(17, 40, 61, 0.26);
}

.hero-video-block--height-medium {
  --hero-video-shell-height: clamp(420px, 56vw, 560px);
}

.hero-video-block--height-small {
  --hero-video-shell-height: clamp(320px, 44vw, 420px);
}

.hero-video-block--height-large {
  --hero-video-shell-height: clamp(520px, 70vw, 700px);
}

.hero-video-block--height-viewport {
  --hero-video-shell-height: min(92vh, 860px);
  --hero-video-shell-height: min(92svh, 860px);
}

.hero-video-block__shell {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-video-shell-height);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 230, 214, 0.24), transparent 38%),
    linear-gradient(135deg, #10263c 0%, #0b2246 52%, #1f3b4f 100%);
  box-shadow: 0 28px 60px rgba(10, 34, 56, 0.18);
  isolation: isolate;
}

.hero-video-block__media,
.hero-video-block__poster,
.hero-video-block__poster img,
.hero-video-block__video,
.hero-video-block__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-block__poster,
.hero-video-block__video {
  display: block;
}

.hero-video-block__poster img,
.hero-video-block__video {
  object-fit: cover;
  object-position: center center;
}

.hero-video-block__overlay {
  background:
    linear-gradient(180deg, rgba(5, 17, 28, calc(var(--hero-video-overlay-opacity, 0.56) * 0.82)) 0%, rgba(4, 14, 25, calc(var(--hero-video-overlay-opacity, 0.56) + 0.08)) 100%),
    linear-gradient(90deg, rgba(7, 22, 38, 0.36) 0%, rgba(7, 22, 38, 0.1) 52%, rgba(7, 22, 38, 0.28) 100%);
  z-index: 1;
}

.hero-video-block__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  min-height: var(--hero-video-shell-height);
}

.hero-video-block__content {
  width: min(100%, 44rem);
  margin-top: auto;
  padding: clamp(2rem, 4vw, 3.6rem);
  color: var(--hero-video-text-color) !important;
}

.hero-video-block--align-center .hero-video-block__inner {
  justify-content: center;
}

.hero-video-block--align-center .hero-video-block__content {
  text-align: center;
}

.hero-video-block--align-right .hero-video-block__inner {
  justify-content: flex-end;
}

.hero-video-block--align-right .hero-video-block__content {
  text-align: right;
}

.hero-video-block__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 0.86rem;
  margin: 0 0 0.48rem;
  padding: 0.01rem 0.34rem;
  border-radius: 999px;
  background: var(--hero-video-eyebrow-bg);
  border: 1px solid var(--hero-video-eyebrow-border);
  color: var(--hero-video-eyebrow-text-color) !important;
  font-family: campton-book, sans-serif;
  font-size: 0.52rem;
  line-height: 1;
  letter-spacing: 0.006em;
}

.hero-video-block__headline {
  margin: 0;
  color: var(--hero-video-headline-text-color) !important;
  font-family: campton-bold, sans-serif !important;
  font-size: clamp(2.05rem, 4.25vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.01;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 24px rgba(3, 13, 24, 0.24);
}

.hero-video-block__body {
  max-width: 39rem;
  margin: 0.92rem 0 0;
  color: var(--hero-video-body-text-color) !important;
  font-family: campton-book, sans-serif;
  font-size: clamp(0.98rem, 1.08vw, 1.12rem) !important;
  line-height: 1.6;
  text-shadow: 0 3px 14px rgba(3, 13, 24, 0.18);
}

.hero-video-block--align-center .hero-video-block__body,
.hero-video-block--align-right .hero-video-block__body {
  max-width: none;
}

.hero-video-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.35rem;
}

.hero-video-block--align-center .hero-video-block__actions {
  justify-content: center;
}

.hero-video-block--align-right .hero-video-block__actions {
  justify-content: flex-end;
}

.hero-video-block__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-family: campton-semibold, sans-serif;
  font-size: 0.95rem;
  line-height: 1.1;
  text-decoration: none !important;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hero-video-block__cta--primary {
  background: #ef3f4b;
  color: var(--hero-video-primary-cta-text-color) !important;
  box-shadow: 0 16px 34px rgba(239, 63, 75, 0.22);
}

.hero-video-block__cta--secondary {
  background: var(--hero-video-secondary-cta-bg);
  border: 1px solid var(--hero-video-secondary-cta-border);
  color: var(--hero-video-secondary-cta-text-color) !important;
  backdrop-filter: blur(8px);
}

.hero-video-block__cta:hover {
  transform: translateY(-1px);
  text-decoration: none !important;
}

.hero-video-block__cta--primary:hover {
  background: #e33643;
  box-shadow: 0 18px 36px rgba(239, 63, 75, 0.28);
}

.hero-video-block__cta--secondary:hover {
  background: var(--hero-video-secondary-cta-hover-bg);
  border-color: var(--hero-video-secondary-cta-hover-border);
}

.hero-video-block__cta:focus-visible,
.hero-video-block__control:focus-visible {
  outline: 3px solid var(--hero-video-focus-outline);
  outline-offset: 3px;
}

.hero-video-block__control {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid var(--hero-video-control-border);
  border-radius: 999px;
  background: var(--hero-video-control-bg);
  box-shadow: 0 14px 28px rgba(4, 14, 25, 0.2);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero-video-block__control-icon {
  position: relative;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--hero-video-control-color);
}

.hero-video-block__control-pause,
.hero-video-block__control-pause::after {
  position: absolute;
  top: 0;
  width: 0.24rem;
  height: 100%;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hero-video-block__control-pause {
  left: 0.12rem;
}

.hero-video-block__control-pause::after {
  left: 0.52rem;
}

.hero-video-block__control-play {
  position: absolute;
  top: 0.06rem;
  left: 0.18rem;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.82rem solid currentColor;
  opacity: 0;
}

.hero-video-block__control[data-state="paused"] .hero-video-block__control-pause,
.hero-video-block__control[data-state="paused"] .hero-video-block__control-pause::after {
  opacity: 0;
}

.hero-video-block__control[data-state="paused"] .hero-video-block__control-play {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-block__cta,
  .hero-video-block__control {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero-video-block__shell {
    border-radius: 28px;
  }

  .hero-video-block__content {
    width: 100%;
    padding: 1.42rem;
  }

  .hero-video-block__headline {
    font-size: clamp(1.88rem, 5.8vw, 3rem) !important;
  }

  .hero-video-block__body {
    font-size: 0.96rem !important;
    line-height: 1.55;
  }

  .hero-video-block__actions {
    gap: 0.68rem;
  }

  .hero-video-block__cta {
    min-height: 3.1rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 641px) {
  .block.hero-video-block {
    padding-top: 20px;
    padding-bottom: 22px;
  }

  .hero-video-block {
    --hero-video-shell-height: clamp(420px, 118vw, 560px);
  }

  .hero-video-block__shell {
    border-radius: 24px;
  }

  .hero-video-block__content {
    padding: 1.08rem;
  }

  .hero-video-block__eyebrow {
    min-height: 0.82rem;
    margin-bottom: 0.42rem;
    padding: 0.01rem 0.32rem;
    font-size: 0.5rem;
  }

  .hero-video-block__headline {
    font-size: clamp(1.68rem, 7.9vw, 2.28rem) !important;
    line-height: 1.02;
  }

  .hero-video-block__body {
    margin-top: 0.74rem;
    font-size: 0.92rem !important;
  }

  .hero-video-block__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-video-block--align-center .hero-video-block__actions,
  .hero-video-block--align-right .hero-video-block__actions {
    align-items: stretch;
  }

  .hero-video-block__cta {
    width: 100%;
    min-height: 2.95rem;
    font-size: 0.9rem;
  }

  .hero-video-block__control {
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
  }
}

.block.advertisement-banner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.advertisement-banner .inner-container--wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.advertisement-banner__shell {
  --advertisement-banner-title-size: clamp(1.625rem, 1.95vw, 2.25rem);
  --advertisement-banner-cta-size: clamp(1.125rem, 1.35vw, 1.625rem);
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: clamp(236px, 15vw, 360px);
  aspect-ratio: 2260 / 360;
  overflow: hidden;
  border: 1px solid rgba(213, 226, 236, 0.72);
  border-radius: 32px;
  background: #10263c;
  box-shadow: 0 20px 40px rgba(10, 34, 56, 0.16);
  isolation: isolate;
}

.advertisement-banner__media,
.advertisement-banner__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.advertisement-banner__media img {
  object-fit: cover;
  object-position: center center;
}

.advertisement-banner__overlay {
  display: none;
}

.advertisement-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(1.6rem, 2.8vw, 2.75rem) clamp(1.5rem, 3vw, 3rem);
}

.advertisement-banner__copy {
  position: absolute;
  left: clamp(1.5rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(52rem, calc(100% - 17rem));
  text-align: left;
}

.advertisement-banner__heading {
  margin: 0;
  color: #fff;
  font-family: campton-bold, sans-serif !important;
  font-weight: 700 !important;
  font-size: var(--advertisement-banner-title-size) !important;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 30px rgba(5, 18, 30, 0.24);
}

.advertisement-banner__body {
  margin: 0.8rem 0 0;
  font-family: campton-book, sans-serif;
  font-size: clamp(1.1875rem, 1.32vw, 1.375rem) !important;
  line-height: 1.55;
  text-shadow: 0 4px 18px rgba(5, 18, 30, 0.18);
}

.advertisement-banner__actions {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 2vw, 2.25rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.advertisement-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--advertisement-banner-cta-bg, #ef4d5a);
  color: var(--advertisement-banner-cta-text, #fff);
  font-family: campton-bold, sans-serif !important;
  font-weight: 700 !important;
  font-size: var(--advertisement-banner-cta-size) !important;
  line-height: 1;
  color: var(--advertisement-banner-cta-text, #fff) !important;
  -webkit-text-fill-color: var(--advertisement-banner-cta-text, #fff);
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.advertisement-banner__cta:link,
.advertisement-banner__cta:visited {
  color: var(--advertisement-banner-cta-text, #fff) !important;
  -webkit-text-fill-color: var(--advertisement-banner-cta-text, #fff);
  text-decoration: none !important;
}

.advertisement-banner__cta:hover {
  color: var(--advertisement-banner-cta-text, #fff);
  -webkit-text-fill-color: var(--advertisement-banner-cta-text, #fff);
  text-decoration: none;
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
}

.advertisement-banner__cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 3px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .advertisement-banner__shell {
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 28px;
  }

  .advertisement-banner__content {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
  }

  .advertisement-banner__copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .advertisement-banner__actions {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.75rem;
    justify-content: flex-start;
  }
}

@media (max-width: 641px) {
  .block.advertisement-banner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .advertisement-banner .inner-container--wide {
    padding: 0 20px;
  }

  .advertisement-banner__shell {
    --advertisement-banner-title-size: clamp(1.375rem, 4.6vw, 1.875rem);
    --advertisement-banner-cta-size: clamp(1.0625rem, 3.4vw, 1.375rem);
    min-height: 0;
    border-radius: 24px;
  }

  .advertisement-banner__content {
    position: relative;
    inset: auto;
    padding: 1.25rem;
  }

  .advertisement-banner__copy {
    width: 100%;
  }

  .advertisement-banner__cta {
    width: auto;
  }
}

body.front-end .ltih-route-map-block {
  position: relative;
  z-index: 1;
  clear: both;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(2.25rem, 5vw, 4.5rem) 0;
}

body.front-end .ltih-route-map-block > .inner-container {
  width: min(100% - 40px, 1320px);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

body.front-end .ltih-route-map-block .ltih-route-map {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
  background: var(--route-map-bg);
  border: 1px solid var(--route-map-border);
  border-radius: 28px;
  box-shadow: var(--route-map-shadow);
  color: var(--route-map-text);
  padding: clamp(1.5rem, 4vw, 3.25rem);
}

body.front-end .ltih-route-map-block .ltih-route-map__header {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin: 0 0 2rem;
}

body.front-end .ltih-route-map-block .ltih-route-map__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--route-map-primary);
  font-family: campton-bold, sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.front-end .ltih-route-map-block .ltih-route-map__title {
  margin: 0;
  color: var(--route-map-text);
  font-family: campton-bold, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-align: left;
}

body.front-end .ltih-route-map-block .ltih-route-map__intro,
body.front-end .ltih-route-map-block .ltih-route-map__intro p {
  color: var(--route-map-muted);
  font-family: campton-book, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  letter-spacing: 0;
  text-align: left;
}

body.front-end .ltih-route-map-block .ltih-route-map__intro {
  margin-top: 1rem;
  max-width: 64rem;
}

body.front-end .ltih-route-map-block .ltih-route-map__intro p {
  margin: 0;
}

body.front-end .ltih-route-map-block .ltih-route-map__table-wrap {
  display: block;
  overflow: hidden;
  border: 1px solid var(--route-map-row-border);
  border-radius: 16px;
}

@media (max-width: 760px) {
  body.front-end .ltih-route-map-block > .inner-container {
    width: min(100% - 24px, 1320px);
  }

  body.front-end .ltih-route-map-block .ltih-route-map {
    border-radius: 20px;
    padding: 1.25rem;
  }

  body.front-end .ltih-route-map-block .ltih-route-map__header {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
  }

  body.front-end .ltih-route-map-block .ltih-route-map__table-wrap {
    display: none;
  }
}
.caregiver-decision-tree-block {
  --lthih-red: #d73d4d;
  --lthih-red-dark: #b92b38;
  --lthih-green: #22c55e;
  --lthih-green-dark: #16a34a;
  --lthih-text: #17212b;
  --lthih-muted: #66758a;
  --lthih-background: #f7fafc;
  --lthih-card: #ffffff;
  --lthih-border: #dceaf2;
  --lthih-soft-red: #fff2f4;
  --lthih-soft-green: #f0fdf4;
  --lthih-brand-blue: #e9f4ff;
  --lthih-soft-blue: #f3f9ff;
  --lthih-focus: #38bdf8;
  --lthih-orange: #9a4400;
  --lthih-yellow: #745a00;
  --lthih-result-green: #1f7a42;
  padding: 38px 0;
}

.caregiver-decision-tree {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  color: var(--lthih-text);
  background:
    linear-gradient(180deg, rgba(233, 244, 255, 0.34) 0%, rgba(255, 255, 255, 0) 190px),
    var(--lthih-card);
  border: 1px solid var(--lthih-border);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(23, 50, 76, 0.09);
  scroll-margin-top: 88px;
}

.caregiver-decision-tree__pilot-ribbon {
  position: absolute;
  top: 24px;
  right: 16px;
  z-index: 3;
  width: auto;
  pointer-events: none;
}

.caregiver-decision-tree__pilot-ribbon span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  color: #14532d;
  background: #f1fbf5;
  border: 1px solid #c8efd6;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.05);
  font-family: campton-bold, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.caregiver-decision-tree__pilot-ribbon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.caregiver-decision-tree__screen {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(26px, 3.2vw, 36px) clamp(24px, 4vw, 42px) 30px;
}

.caregiver-decision-tree__screen[data-tree-view="question"] {
  background: rgba(255, 255, 255, 0.82);
}

.caregiver-decision-tree__screen[data-tree-view="result"] {
  padding-top: 88px;
}

.caregiver-decision-tree__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
  align-items: stretch;
  background: #fff;
}

.caregiver-decision-tree__intro-copy {
  padding: clamp(22px, 3.8vw, 42px) clamp(28px, 5vw, 58px) clamp(28px, 5vw, 58px);
}

.caregiver-decision-tree__intro-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 82px 34px 34px;
  background: #f8fbfd;
  border-left: 1px solid var(--lthih-border);
}

.caregiver-decision-tree h2,
.caregiver-decision-tree h3,
.caregiver-decision-tree h4,
.caregiver-decision-tree p {
  margin-top: 0;
}

.caregiver-decision-tree h2,
.caregiver-decision-tree h3 {
  color: var(--lthih-text);
  font-family: campton-book, sans-serif;
  letter-spacing: 0;
}

.caregiver-decision-tree h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.8vw, 2.45rem);
  font-weight: 400;
  line-height: 1.12;
}

.caregiver-decision-tree h3 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
}

.caregiver-decision-tree h4 {
  margin: 30px 0 12px;
  color: #223345;
  font-family: campton-semibold, sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.caregiver-decision-tree p,
.caregiver-decision-tree li,
.caregiver-decision-tree a,
.caregiver-decision-tree button,
.caregiver-decision-tree label {
  font-size: 1.06rem;
  line-height: 1.6;
}

.caregiver-decision-tree__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0;
  padding: 6px 18px 6px 8px;
  color: #172033;
  background: #f1fbf5;
  border: 1px solid #bfe8ce;
  border-radius: 999px;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
}

.caregiver-decision-tree__eyebrow + h2 {
  padding-top: 46px;
}

.caregiver-decision-tree__eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  color: var(--lthih-green-dark);
  background: #ddf7e7;
}

.caregiver-decision-tree__eyebrow-icon svg {
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.caregiver-decision-tree__eyebrow-text {
  min-width: 0;
  color: #172033;
  white-space: nowrap;
}

.caregiver-decision-tree__lead {
  max-width: 840px;
  margin-bottom: 48px;
  color: #29364b;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.62;
}

.caregiver-decision-tree__lead + .caregiver-decision-tree__button {
  margin-top: 14px;
}

.caregiver-decision-tree__button--primary svg {
  width: 21px;
  height: 21px;
  margin-left: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.caregiver-decision-tree__disclaimer {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  max-width: 760px;
  margin: 34px 0 0;
  padding: 20px 22px;
  color: #29364b;
  background: #fffaf0;
  border: 1px solid #f2d6a7;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(146, 97, 18, 0.06);
}

.caregiver-decision-tree__disclaimer > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #a77818;
  background: #fff3d6;
  border: 1px solid #e6c36f;
  border-radius: 999px;
}

.caregiver-decision-tree__disclaimer svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.caregiver-decision-tree__disclaimer h3 {
  margin: 0 0 8px;
  color: #223345;
  font-family: campton-semibold, sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

.caregiver-decision-tree__disclaimer p {
  margin: 0;
  color: #3b4957;
  font-size: 0.98rem;
  line-height: 1.6;
}

.caregiver-decision-tree__disclaimer strong {
  color: #17212b;
  font-family: campton-bold, sans-serif;
  font-weight: 900;
}

.caregiver-decision-tree__mini-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--lthih-border);
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(23, 32, 51, 0.06);
}

.caregiver-decision-tree__mini-card-icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--lthih-green-dark);
  background: #eafaf0;
  border-radius: 999px;
}

.caregiver-decision-tree__mini-card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.caregiver-decision-tree__mini-card h3 {
  margin: 0 0 8px;
  font-family: campton-semibold, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.caregiver-decision-tree__mini-card p {
  margin: 0;
  color: var(--lthih-muted);
  line-height: 1.55;
}

.caregiver-decision-tree__mini-card ul {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.caregiver-decision-tree__mini-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #29364b;
  font-weight: 700;
}

.caregiver-decision-tree__privacy-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 12px 0 0;
  padding-top: 22px;
  color: #66758a;
  border-top: 1px solid #dceaf2;
  font-size: 0.98rem;
  line-height: 1.5;
}

.caregiver-decision-tree__privacy-note svg {
  width: 42px;
  height: 42px;
  padding: 12px;
  color: var(--lthih-green-dark);
  background: #eafaf0;
  border-radius: 999px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  overflow: visible;
}

.caregiver-decision-tree__mini-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lthih-green);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.caregiver-decision-tree__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-family: campton-bold, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.caregiver-decision-tree__button:hover {
  transform: translateY(-1px);
}

.caregiver-decision-tree__button:focus-visible,
.caregiver-decision-tree__option:focus-within,
.caregiver-decision-tree__links a:focus-visible {
  outline: 4px solid rgba(56, 189, 248, 0.35);
  outline-offset: 3px;
}

.caregiver-decision-tree__button--primary {
  color: #fff;
  background: var(--lthih-green);
  border-color: var(--lthih-green);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.14);
}

.caregiver-decision-tree__button--primary:hover {
  color: #fff;
  background: var(--lthih-green-dark);
  border-color: var(--lthih-green-dark);
}

.caregiver-decision-tree__result--red .caregiver-decision-tree__button--primary {
  background: var(--lthih-red);
  border-color: var(--lthih-red);
  box-shadow: 0 14px 30px rgba(216, 63, 78, 0.18);
}

.caregiver-decision-tree__result--red .caregiver-decision-tree__button--primary:hover {
  background: var(--lthih-red-dark);
  border-color: var(--lthih-red-dark);
}

.caregiver-decision-tree__button--secondary {
  color: var(--lthih-text);
  background: #fff;
  border-color: var(--lthih-border);
  box-shadow: 0 10px 22px rgba(23, 32, 51, 0.05);
}

.caregiver-decision-tree__button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.caregiver-decision-tree__progress {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
  color: #41516a;
  font-weight: 800;
}

.caregiver-decision-tree__progress [data-tree-progress-label] {
  font-size: 0.92rem;
  line-height: 1.25;
}

.caregiver-decision-tree__progress-track {
  display: block;
  height: 7px;
  overflow: hidden;
  background: var(--lthih-brand-blue);
  border-radius: 999px;
}

.caregiver-decision-tree__progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lthih-red) 0 7px, #45b8e9 7px 100%);
  transition: width 180ms ease;
}

.caregiver-decision-tree__live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.caregiver-decision-tree__question {
  max-width: 860px;
}

.caregiver-decision-tree__question h3 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.caregiver-decision-tree .caregiver-decision-tree__description {
  max-width: 760px;
  margin-bottom: 14px;
  color: #44546a;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.caregiver-decision-tree .caregiver-decision-tree__kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  color: var(--lthih-red);
  font-size: 0.76rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.caregiver-decision-tree .caregiver-decision-tree__kicker::before {
  content: "";
  width: 18px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.caregiver-decision-tree__helpers {
  display: grid;
  margin: 14px 0 16px;
  padding: 15px 17px;
  color: #35445b;
  background: #f8fbfd;
  border: 1px solid var(--lthih-border);
  border-radius: 15px;
}

.caregiver-decision-tree__helpers strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.caregiver-decision-tree__helpers ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.caregiver-decision-tree__helpers li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.caregiver-decision-tree__helpers li,
.caregiver-decision-tree__helpers p {
  font-size: 0.94rem;
  line-height: 1.45;
}

.caregiver-decision-tree__helpers li::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex: 0 0 auto;
  color: #0b4f8a;
  background: #eef7ff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.caregiver-decision-tree fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.caregiver-decision-tree__legend {
  margin-bottom: 9px;
  color: #465665;
  font-weight: 800;
}

.caregiver-decision-tree__legend--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;
}

.caregiver-decision-tree__microcopy {
  margin: 0 0 48px;
  color: var(--lthih-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.caregiver-decision-tree__options {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
}

.caregiver-decision-tree__option {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 13px 17px;
  color: var(--lthih-text);
  background: #fff;
  border: 1px solid #cfe3f2;
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.caregiver-decision-tree__option:hover {
  transform: translateY(-1px);
  border-color: #91c7e8;
  box-shadow: 0 10px 22px rgba(34, 96, 139, 0.08);
}

.caregiver-decision-tree__option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.caregiver-decision-tree__option-ui {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  background: #fff;
  transition: border-color 180ms ease, background 180ms ease;
}

.caregiver-decision-tree__option-ui::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform 180ms ease;
}

.caregiver-decision-tree__option-text {
  display: grid;
  gap: 2px;
}

.caregiver-decision-tree__option-text strong {
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.caregiver-decision-tree__option:has(input:checked) {
  border-color: #55b7e7;
  background: var(--lthih-brand-blue);
  box-shadow: 0 10px 24px rgba(31, 111, 168, 0.12);
}

.caregiver-decision-tree__option:has(input:checked) .caregiver-decision-tree__option-ui {
  border-color: #38bdf8;
  background: #38bdf8;
}

.caregiver-decision-tree__option:has(input:checked) .caregiver-decision-tree__option-ui::after {
  transform: scale(1);
}

.caregiver-decision-tree__option--positive:has(input:checked) {
  border-color: var(--lthih-green);
  background: var(--lthih-soft-green);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.09);
}

.caregiver-decision-tree__option--positive:has(input:checked) .caregiver-decision-tree__option-ui {
  border-color: var(--lthih-green);
  background: var(--lthih-green);
}

.caregiver-decision-tree__option small {
  display: block;
  margin-top: 6px;
  color: var(--lthih-muted);
}

.caregiver-decision-tree__nav {
  position: sticky;
  bottom: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  max-width: 860px;
  margin-top: 4px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--lthih-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -14px 28px rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.caregiver-decision-tree__result {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(135deg, #fff 0%, #fff 62%, #e9f4ff 145%);
  border: 1px solid #d6e9f8;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(23, 32, 51, 0.075);
}

.caregiver-decision-tree__result--red {
  background: linear-gradient(135deg, #fff 0%, #fff 62%, #e9f4ff 145%);
  border-color: #d6e9f8;
}

.caregiver-decision-tree__result--orange {
  background: linear-gradient(135deg, #fff 0%, #fff 62%, #e9f4ff 145%);
  border-color: #d6e9f8;
}

.caregiver-decision-tree__result--yellow {
  background: linear-gradient(135deg, #fff 0%, #fff 62%, #e9f4ff 145%);
  border-color: #d6e9f8;
}

.caregiver-decision-tree__result--green {
  background: linear-gradient(135deg, #fff 0%, #fff 62%, #e9f4ff 145%);
  border-color: #d6e9f8;
}

.caregiver-decision-tree__level {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 0;
  color: #223345;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: campton-semibold, sans-serif;
  font-weight: 800;
}

.caregiver-decision-tree__level span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 999px;
  color: #1f6fa8;
  background: #e9f4ff;
  line-height: 1;
}

.caregiver-decision-tree__level svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.caregiver-decision-tree__result--red .caregiver-decision-tree__level span {
  color: var(--lthih-red);
  background: #e9f4ff;
}

.caregiver-decision-tree__result h3 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.advice-card__summary {
  max-width: 820px;
  margin-bottom: 24px;
  color: #29364b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.advice-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: start;
  margin-top: 26px;
}

.advice-card__action-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.advice-card__action-groups .advice-card__section {
  padding: 18px;
  background: #fff;
  border: 1px solid #d8e7f3;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(20, 44, 70, 0.05);
}

.advice-card__section--tools {
  grid-column: 1 / -1;
  background: #f8fbfd !important;
}

.advice-card__section {
  min-width: 0;
}

.advice-card__section h4 {
  margin-top: 0;
}

.advice-card__section--help {
  padding: 18px;
  background: rgba(233, 244, 255, 0.58);
  border: 1px solid #d6e9f8;
  border-radius: 18px;
}

.advice-card__section--help h4 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.advice-card__section--help h4::before {
  content: "i";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: #1f6fa8;
  background: #fff;
  border: 1px solid #c9e2f5;
  border-radius: 999px;
  font-family: campton-bold, sans-serif;
  font-size: 0.9rem;
  line-height: 1;
}

.caregiver-decision-tree__actions,
.action-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.caregiver-decision-tree__actions li,
.action-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  padding-left: 0;
  line-height: 1.55;
}

.caregiver-decision-tree__actions li::before,
.action-list li::before {
  content: "✓";
  display: inline-flex;
  justify-content: center;
  width: 24px;
  padding-top: 1px;
  color: var(--lthih-green-dark);
  font-weight: 900;
  line-height: 1.55;
}

.caregiver-decision-tree__chips {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 8px;
  list-style: none;
}

.caregiver-decision-tree__chips li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
  padding: 11px 13px;
  color: var(--lthih-text);
  background: #fff;
  border: 1px solid #d6e9f8;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(31, 111, 168, 0.06);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.caregiver-decision-tree__chips li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  color: var(--lthih-green-dark);
  background: #f1fbf5;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.advice-card__section--links {
  margin-top: 38px;
}

.advice-card__section--links h4 {
  margin-bottom: 18px;
}

.caregiver-decision-tree__links {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.caregiver-decision-tree__links a {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  color: var(--lthih-text);
  background: #fff;
  border: 1px solid var(--lthih-border);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(23, 33, 43, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.caregiver-decision-tree__links a:hover {
  border-color: rgba(215, 62, 77, 0.55);
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.08);
  text-decoration: none;
  transform: translateY(-1px);
}

.caregiver-decision-tree__links a:visited,
.caregiver-decision-tree__links a:focus {
  color: var(--lthih-text);
  text-decoration: none;
}

.caregiver-decision-tree__links strong {
  color: var(--lthih-red-dark);
  text-decoration: none;
}

.caregiver-decision-tree__links span {
  color: var(--lthih-muted);
}

.decision-tree-next-steps {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 64px;
}

.decision-tree-personal-matches {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.decision-tree-personal-matches h4 {
  margin: 0;
  color: #0e3768;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.2;
}

.decision-tree-personal-matches__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.decision-tree-personal-card {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 18px;
  color: inherit;
  background: #fff;
  border: 1px solid #d8e7f3;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(20, 44, 70, 0.06);
  text-decoration: none !important;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.decision-tree-personal-card:visited,
.decision-tree-personal-card:hover,
.decision-tree-personal-card:focus {
  color: inherit;
  text-decoration: none !important;
}

.decision-tree-personal-card:hover {
  border-color: #b7d7ef;
  box-shadow: 0 14px 34px rgba(20, 44, 70, 0.09);
  transform: translateY(-2px);
}

.decision-tree-personal-card:focus-visible {
  outline: 3px solid rgba(11, 79, 138, 0.35);
  outline-offset: 4px;
}

.decision-tree-personal-card__body {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.decision-tree-personal-card strong {
  color: #0e3768;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none !important;
}

.decision-tree-personal-card span span {
  color: #5c6f89;
  font-size: 0.96rem;
  line-height: 1.45;
  text-decoration: none !important;
}

.decision-tree-personal-card em {
  color: var(--lthih-green-dark);
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.decision-tree-personal-card__chevron {
  display: inline-flex;
  margin-left: auto;
  color: #0b4f8a;
  flex-shrink: 0;
}

.decision-tree-personal-card__chevron-svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.decision-tree-next-steps__title {
  margin: 0;
  color: #0e3768;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.decision-tree-next-steps__list {
  display: grid;
  gap: 18px;
}

.decision-tree-next-step-card {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  padding: 24px 28px;
  color: inherit;
  background: #fff;
  background-image: none;
  border: 1px solid #d8e7f3;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20, 44, 70, 0.06);
  text-decoration: none !important;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.decision-tree-next-step-card:visited,
.decision-tree-next-step-card:hover,
.decision-tree-next-step-card:focus {
  color: inherit;
  background-image: none;
  text-decoration: none !important;
}

.decision-tree-next-step-card:hover {
  border-color: #b7d7ef;
  box-shadow: 0 14px 34px rgba(20, 44, 70, 0.09);
  transform: translateY(-2px);
}

.decision-tree-next-step-card:focus-visible {
  outline: 3px solid rgba(11, 79, 138, 0.35);
  outline-offset: 4px;
}

.decision-tree-next-step-card__icon,
.decision-tree-info-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  flex-shrink: 0;
}

.decision-tree-next-step-card__icon {
  width: 72px;
  height: 72px;
  color: #0b4f8a;
  background: #eef7ff;
}

.decision-tree-next-step-card__icon-svg {
  width: 36px;
  height: 36px;
  stroke-width: 2;
}

.decision-tree-next-step-card__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.decision-tree-next-step-card__title {
  color: #0e3768;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  background-image: none;
  border-bottom: 0;
  box-shadow: none;
  text-decoration: none !important;
}

.decision-tree-next-step-card__description {
  color: #5c6f89;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.45;
  background-image: none;
  border-bottom: 0;
  box-shadow: none;
  text-decoration: none !important;
}

.decision-tree-next-step-card__chevron {
  display: inline-flex;
  margin-left: auto;
  color: #0b4f8a;
  flex-shrink: 0;
}

.decision-tree-next-step-card__chevron-svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.4;
}

.decision-tree-checklist-download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  color: #14532d;
  background: #fbfffd;
  border: 1px solid #cfeedd;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(20, 44, 70, 0.045);
  text-decoration: none !important;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.decision-tree-checklist-download:visited,
.decision-tree-checklist-download:hover,
.decision-tree-checklist-download:focus {
  color: #14532d;
  text-decoration: none !important;
}

.decision-tree-checklist-download:hover {
  border-color: #abdcbc;
  box-shadow: 0 10px 22px rgba(20, 44, 70, 0.065);
  transform: translateY(-2px);
}

.decision-tree-checklist-download:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.32);
  outline-offset: 4px;
}

.decision-tree-checklist-download__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #16a34a;
  background: #eefaf3;
  border-radius: 999px;
  flex: 0 0 42px;
}

.decision-tree-checklist-download__icon-svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.4;
}

.decision-tree-checklist-download__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.decision-tree-checklist-download strong {
  color: #14532d;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
}

.decision-tree-checklist-download span span {
  color: #49627f;
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none !important;
}

.decision-tree-info-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 14px;
  padding: 22px 26px;
  color: #21344d;
  background: #fffaf3;
  border: 1px solid #e4d8c8;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(20, 44, 70, 0.04);
}

.decision-tree-info-note__icon {
  width: 56px;
  height: 56px;
  color: #49627f;
  background: #f1f4f8;
}

.decision-tree-info-note__icon-svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.decision-tree-info-note__content {
  display: grid;
  gap: 6px;
  min-width: 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.decision-tree-info-note__title {
  color: #21344d;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}

.advice-card {
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 960px;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(24px, 4.5vw, 42px);
  background:
    linear-gradient(180deg, rgba(233, 244, 255, 0.62) 0%, rgba(255, 255, 255, 0) 220px),
    #ffffff;
  border-color: #cfe3f2;
}

.advice-card__hero {
  position: static;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding-bottom: 6px;
  transform: none;
}

.advice-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.advice-card .caregiver-decision-tree__level {
  gap: 10px;
  min-width: 0;
  margin: 0;
  color: #26384c;
  font-size: 0.96rem;
  line-height: 1.35;
}

.advice-card .caregiver-decision-tree__level span {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.advice-card--red .caregiver-decision-tree__level span {
  color: var(--lthih-red);
  background: #eef7ff;
  border: 1px solid #cfe3f2;
}

.advice-card--orange .caregiver-decision-tree__level span {
  color: #8a4b08;
  background: #fff8e8;
  border: 1px solid #f2dfb1;
}

.advice-card--yellow .caregiver-decision-tree__level span,
.advice-card--green .caregiver-decision-tree__level span {
  color: #1f6fa8;
  background: #e9f4ff;
  border: 1px solid #cfe3f2;
}

.advice-card__eyebrow {
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  color: #0e3768;
  background: #eef7ff;
  border: 1px solid #cfe3f2;
  border-radius: 999px;
  font-family: campton-bold, sans-serif;
  font-size: 0.86rem !important;
  font-weight: 800;
  line-height: 1.15 !important;
}

.advice-card__title {
  max-width: 780px;
  margin: 0;
  color: #17212b;
  font-family: campton-semibold, sans-serif !important;
  font-size: clamp(1.8rem, 2.8vw, 2.55rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
}

.advice-card__title:focus {
  outline: none;
}

.advice-card__summary-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 18px;
  align-items: start;
  margin-top: 4px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d8e7f3;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(20, 44, 70, 0.055);
}

.advice-card__summary-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #0e3768;
  font-family: campton-bold, sans-serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

.advice-card__summary {
  max-width: none;
  margin: 0;
  color: #29364b;
  font-size: 1rem !important;
  line-height: 1.62 !important;
}

.advice-card--red .advice-card__summary-panel {
  background: rgba(255, 255, 255, 0.92);
  border-color: #d8e7f3;
}

.advice-card__topic-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advice-card__topic-chips li {
  width: auto;
  min-width: 0;
  padding: 7px 10px;
  color: #0e3768;
  background: #eef7ff;
  border: 1px solid #cfe3f2;
  border-radius: 999px;
  font-family: campton-bold, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.advice-card__action-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.advice-card__action-groups .advice-card__section {
  padding: 20px 20px 22px;
  background: #ffffff;
  border: 1px solid #d8e7f3;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(20, 44, 70, 0.065);
}

.advice-card__section--now {
  border-color: #cae8d5 !important;
  background: #fbfefc !important;
}

.advice-card__section--soon {
  border-color: #cfe3f2 !important;
  background: #fbfdff !important;
}

.advice-card__section--tools {
  grid-column: 1 / -1;
  background: #fbfdff !important;
}

.advice-card__section-kicker {
  display: flex;
  gap: 8px;
  align-items: center;
  width: auto;
  margin: 0 0 6px;
  padding: 0;
  color: #5d6e82;
  background: transparent;
  font-family: campton-bold, sans-serif;
  font-size: 0.72rem !important;
  font-weight: 800;
  line-height: 1.15 !important;
  text-transform: uppercase;
}

.advice-card__section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: #82b6d8;
  border-radius: 50%;
}

.advice-card__section--now .advice-card__section-kicker::before {
  background: #36a763;
}

.advice-card__section h4 {
  margin: 0 0 14px;
  color: #17212b;
  font-size: 1.18rem;
  line-height: 1.2;
}

.advice-card__section--help {
  margin-top: -4px;
  padding: 18px;
  background: #f4f9fd;
  border: 1px solid #d6e9f8;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(20, 44, 70, 0.05);
}

.decision-tree-personal-matches {
  gap: 16px;
  margin-top: 0;
  padding-top: 4px;
}

.decision-tree-personal-matches h4 {
  color: #17212b;
  font-size: clamp(1.18rem, 1.65vw, 1.45rem);
}

.decision-tree-personal-matches__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.decision-tree-personal-card {
  align-items: stretch;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 28px rgba(20, 44, 70, 0.055);
}

.decision-tree-personal-card__meta {
  width: fit-content;
  padding: 4px 8px;
  color: #49627f !important;
  background: #eef7ff;
  border: 1px solid #d8e7f3;
  border-radius: 999px;
  font-family: campton-bold, sans-serif;
  font-size: 0.74rem !important;
  font-weight: 800;
  line-height: 1.15 !important;
  text-decoration: none !important;
}

.decision-tree-personal-card strong {
  font-size: 1rem;
}

.decision-tree-personal-card span span {
  font-size: 0.92rem;
}

.decision-tree-next-steps {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid #e2edf6;
}

.advice-card__cta {
  margin: 4px 0 0;
}

.advice-card .primary-button,
.advice-card .primary-button:visited,
.advice-card .primary-button:hover,
.advice-card .primary-button:focus {
  color: #fff;
  text-decoration: none;
}

.advice-card__disclaimer,
.caregiver-decision-tree__result-disclaimer {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: #394957;
  background: #fff7f8;
  border: 1px solid rgba(215, 62, 77, 0.25);
  border-left: 4px solid var(--lthih-red);
  border-radius: 14px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.advice-card__disclaimer p,
.caregiver-decision-tree__result-disclaimer p {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.advice-card__footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 32, 51, 0.09);
}

.caregiver-decision-tree--error {
  padding: 24px;
  background: #fff8f8;
  border-color: rgba(215, 62, 77, 0.32);
}

@media (max-width: 641px) {
  .caregiver-decision-tree-block {
    padding: 24px 0;
  }

  .caregiver-decision-tree {
    border-radius: 22px;
  }

  .caregiver-decision-tree__pilot-ribbon {
    top: 16px;
    right: 14px;
    width: auto;
    transform: none;
  }

  .caregiver-decision-tree__pilot-ribbon span {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    box-shadow: 0 8px 18px rgba(23, 32, 51, 0.06);
  }

  .caregiver-decision-tree__intro,
  .caregiver-decision-tree__screen {
    padding: 24px 20px;
  }

  .caregiver-decision-tree__screen[data-tree-view="question"] {
    padding: 68px 16px 18px;
  }

  .caregiver-decision-tree__screen[data-tree-view="result"] {
    padding-top: 76px;
  }

  .caregiver-decision-tree__intro {
    grid-template-columns: 1fr;
  }

  .caregiver-decision-tree__intro-copy,
  .caregiver-decision-tree__intro-panel {
    padding: 24px 18px;
  }

  .caregiver-decision-tree__intro-copy {
    padding-top: 64px;
  }

  .caregiver-decision-tree__intro-panel {
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--lthih-border);
    border-left: 0;
  }

  .caregiver-decision-tree h2 {
    font-size: clamp(1.75rem, 7vw, 2.05rem);
    line-height: 1.12;
  }

  .caregiver-decision-tree h3 {
    font-size: 1.45rem;
  }

  .caregiver-decision-tree__question h3 {
    margin-bottom: 8px;
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .caregiver-decision-tree__progress {
    gap: 7px;
    margin-bottom: 18px;
  }

  .caregiver-decision-tree__description {
    margin-bottom: 12px;
    font-size: 0.96rem !important;
  }

  .caregiver-decision-tree__helpers {
    margin: 12px 0 14px;
    padding: 14px;
  }

  .caregiver-decision-tree__options {
    gap: 9px;
    margin-bottom: 12px;
  }

  .caregiver-decision-tree__option {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .caregiver-decision-tree__option-text strong {
    font-size: 0.98rem;
  }

  .caregiver-decision-tree__eyebrow {
    gap: 8px;
    margin-bottom: 0;
    padding: 5px 14px 5px 7px;
    font-size: 0.94rem;
  }

  .caregiver-decision-tree__eyebrow + h2 {
    padding-top: 34px;
  }

  .caregiver-decision-tree__eyebrow-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .caregiver-decision-tree__eyebrow-icon svg {
    width: 16px;
    height: 16px;
  }

  .caregiver-decision-tree__eyebrow-text {
    white-space: normal;
  }

  .caregiver-decision-tree__disclaimer {
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .caregiver-decision-tree__disclaimer h3 {
    font-size: 1rem;
  }

  .caregiver-decision-tree__mini-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .caregiver-decision-tree__mini-card-icon {
    width: 52px;
    height: 52px;
  }

  .caregiver-decision-tree__mini-card-icon svg {
    width: 26px;
    height: 26px;
  }

  .caregiver-decision-tree__privacy-note {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    margin-top: 6px;
    padding-top: 18px;
  }

  .caregiver-decision-tree__privacy-note svg {
    width: 36px;
    height: 36px;
    padding: 10px;
  }

  .caregiver-decision-tree__level {
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .advice-card .caregiver-decision-tree__level {
    align-items: center;
    margin: 0;
  }

  .caregiver-decision-tree__result {
    padding: 20px;
    border-radius: 20px;
  }

  .caregiver-decision-tree__result h3 {
    font-size: 1.85rem;
  }

  .advice-card__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .advice-card__summary-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .advice-card__topline {
    align-items: flex-start;
  }

  .advice-card__topic-chips {
    justify-content: flex-start;
  }

  .advice-card__action-groups,
  .decision-tree-personal-matches__grid {
    grid-template-columns: 1fr;
  }

  .advice-card__action-groups {
    gap: 14px;
  }

  .advice-card__cta .primary-button,
  .caregiver-decision-tree__links a,
  .decision-tree-next-step-card,
  .decision-tree-personal-card {
    width: 100%;
  }

  .advice-card__cta {
    margin-top: 0;
  }

  .decision-tree-next-steps {
    gap: 16px;
    margin-top: 32px;
    padding-bottom: 52px;
  }

  .decision-tree-next-steps__list {
    gap: 14px;
  }

  .decision-tree-next-step-card {
    gap: 14px;
    padding: 18px;
  }

  .decision-tree-next-step-card__icon {
    width: 52px;
    height: 52px;
  }

  .decision-tree-next-step-card__icon-svg {
    width: 26px;
    height: 26px;
  }

  .decision-tree-next-step-card__chevron-svg {
    width: 22px;
    height: 22px;
  }

  .decision-tree-checklist-download {
    width: 100%;
    gap: 12px;
    padding: 12px 14px;
  }

  .decision-tree-checklist-download__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .decision-tree-checklist-download__icon-svg {
    width: 19px;
    height: 19px;
  }

  .decision-tree-info-note {
    gap: 14px;
    padding: 18px;
  }

  .decision-tree-info-note__icon {
    width: 46px;
    height: 46px;
  }

  .decision-tree-info-note__icon-svg {
    width: 23px;
    height: 23px;
  }

  .advice-card__disclaimer,
  .caregiver-decision-tree__result-disclaimer {
    padding: 16px;
    font-size: 0.95rem;
  }

  .caregiver-decision-tree__button {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
  }

  .caregiver-decision-tree__nav {
    display: grid;
    grid-template-columns: minmax(108px, 0.42fr) minmax(150px, 0.58fr);
    gap: 10px;
    margin-top: 0;
    padding-top: 12px;
  }
}

.ltih-content {
  --ltih-blue-light: #f6fbff;
  --ltih-blue-soft: #eef7ff;
  --ltih-blue-medium: #c8ddf2;
  --ltih-blue-strong: #8fbfe8;
  --ltih-border: #d7e8f7;
  --ltih-border-soft: #e1effa;
  --ltih-heading: #111827;
  --ltih-text: #1f2933;
  --ltih-muted: #536471;
  --ltih-link: #1d5f99;
  color: var(--ltih-text);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: auto;
}

.ltih-content * {
  box-sizing: border-box;
}

.ltih-content :where(#ez-toc-container) {
  display: none !important;
}

.ltih-content :where(p) {
  margin: 0 0 1.2em;
}

.ltih-content :where(a) {
  color: var(--ltih-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.ltih-content :where(ul) {
  margin: 0 0 1.35em 1.25em;
  list-style: disc;
}

.ltih-content :where(ol) {
  margin: 0 0 1.35em 1.25em;
  list-style: decimal;
}

.ltih-content :where(li) {
  margin: 0.35em 0;
}

.ltih-content :where(h2) {
  position: relative;
  margin: 48px 0 18px;
  padding-left: 18px;
  color: var(--ltih-heading);
  font-family: var(--font-headings, inherit);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.ltih-content :where(h2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 6px;
  height: 1.15em;
  border-radius: 999px;
  background: var(--ltih-blue-strong);
}

.ltih-content :where(h2 span) {
  font-family: inherit;
  font-weight: inherit;
}

.ltih-content :where(h3) {
  margin: 32px 0 14px;
  color: var(--ltih-heading);
  font-family: var(--font-headings, inherit);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.3;
}

.ltih-content :where(blockquote) {
  position: relative;
  margin: 30px 0 34px;
  padding: 24px 28px 24px 32px;
  border: 1px solid var(--ltih-border);
  border-left: 6px solid var(--ltih-blue-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--ltih-blue-light) 0%, #ffffff 100%);
  color: var(--ltih-heading);
  box-shadow: 0 10px 26px rgba(31, 58, 87, 0.045);
}

.ltih-content :where(blockquote p) {
  margin-bottom: 0.85em;
  font-size: 1.08em;
  line-height: 1.65;
}

.ltih-content :where(blockquote p:last-child) {
  margin-bottom: 0;
}

.ltih-content :where(blockquote cite) {
  display: block;
  margin-top: 14px;
  color: var(--ltih-muted);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 700;
}

.ltih-content :where(figure) {
  margin: 30px 0 34px;
}

.ltih-content :where(img) {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.ltih-content :where(figure img) {
  width: 100%;
}

.ltih-content :where(figcaption) {
  margin-top: 10px;
  color: var(--ltih-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ltih-content :where(figcaption a) {
  font-size: inherit;
}

.ltih-content :where(table) {
  width: 100%;
  max-width: 100%;
  margin: 28px 0 34px;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--ltih-border);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(31, 58, 87, 0.055);
}

.ltih-content :where(caption) {
  padding: 0 0 12px;
  color: var(--ltih-muted);
  font-size: 0.95rem;
  text-align: left;
}

.ltih-content :where(thead) {
  background: linear-gradient(180deg, #f6fbff 0%, #eef7ff 100%);
}

.ltih-content :where(th) {
  color: var(--ltih-link);
  font-weight: 800;
  text-align: left;
}

.ltih-content :where(th, td) {
  padding: 15px 17px;
  vertical-align: top;
  border-right: 1px solid var(--ltih-border-soft);
  border-bottom: 1px solid var(--ltih-border-soft);
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

.ltih-content :where(th:first-child, td:first-child) {
  width: clamp(145px, 16%, 210px);
  min-width: 145px;
}

.ltih-content :where(th:last-child, td:last-child) {
  border-right: 0;
}

.ltih-content :where(tbody tr:last-child td) {
  border-bottom: 0;
}

.ltih-content :where(tbody tr:nth-child(even)) {
  background: #f8fcff;
}

.ltih-content :where(tbody tr:hover) {
  background: #f1f8ff;
}

.ltih-content :where(td strong) {
  color: var(--ltih-heading);
}

.ltih-content table:has(tr:first-child > :nth-child(4)) {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-color: var(--ltih-blue-strong) var(--ltih-blue-soft);
  scrollbar-width: auto;
  table-layout: auto;
  font-size: 0.95rem;
}

.ltih-content table:has(tr:first-child > :nth-child(4))::-webkit-scrollbar {
  height: 14px;
}

.ltih-content table:has(tr:first-child > :nth-child(4))::-webkit-scrollbar-track {
  border-radius: 999px;
  background: var(--ltih-blue-soft);
}

.ltih-content table:has(tr:first-child > :nth-child(4))::-webkit-scrollbar-thumb {
  border: 3px solid var(--ltih-blue-soft);
  border-radius: 999px;
  background: var(--ltih-blue-strong);
}

.ltih-content table:has(tr:first-child > :nth-child(4))::-webkit-scrollbar-thumb:hover {
  background: var(--ltih-link);
}

.ltih-content table:has(tr:first-child > :nth-child(4)) :where(th, td) {
  min-width: 190px;
  padding: 13px 12px;
  line-height: 1.45;
  overflow-wrap: break-word;
  hyphens: manual;
}

.ltih-content table:has(tr:first-child > :nth-child(4)) :where(th) {
  font-size: 0.92rem;
}

.ltih-content table:has(tr:first-child > :nth-child(4)) :where(th:first-child, td:first-child) {
  width: 150px;
  min-width: 150px;
}

.ltih-content table.ltih-table-wide {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-color: var(--ltih-blue-strong) var(--ltih-blue-soft);
  scrollbar-width: auto;
  table-layout: auto;
  font-size: 0.95rem;
}

.ltih-content table.ltih-table-wide::-webkit-scrollbar {
  height: 14px;
}

.ltih-content table.ltih-table-wide::-webkit-scrollbar-track {
  border-radius: 999px;
  background: var(--ltih-blue-soft);
}

.ltih-content table.ltih-table-wide::-webkit-scrollbar-thumb {
  border: 3px solid var(--ltih-blue-soft);
  border-radius: 999px;
  background: var(--ltih-blue-strong);
}

.ltih-content table.ltih-table-wide::-webkit-scrollbar-thumb:hover {
  background: var(--ltih-link);
}

.ltih-content table.ltih-table-wide :where(th, td) {
  min-width: 190px;
  padding: 13px 12px;
  line-height: 1.45;
  overflow-wrap: break-word;
  hyphens: manual;
}

.ltih-content table.ltih-table-wide :where(th:first-child, td:first-child) {
  width: 150px;
  min-width: 150px;
}

.ltih-content :where(td a.cta, td a.btn, td .cta, td .btn) {
  min-width: 140px;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-align: center;
}

@media (max-width: 720px) {
  .ltih-content {
    font-size: 17px;
  }

  .ltih-content :where(h2) {
    margin: 40px 0 16px;
    padding-left: 16px;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .ltih-content :where(h2)::before {
    width: 5px;
    height: 1.12em;
  }

  .ltih-content :where(blockquote) {
    margin: 24px 0 28px;
    padding: 20px 18px 20px 22px;
    border-left-width: 5px;
  }

  .ltih-content :where(figure) {
    margin: 24px 0 28px;
  }

  .ltih-content :where(table) {
    font-size: 0.95rem;
  }

  .ltih-content :where(th, td) {
    padding: 12px 13px;
  }

  .ltih-content table:has(tr:first-child > :nth-child(4)),
  .ltih-content table.ltih-table-wide {
    min-width: 0;
  }

  .ltih-content table:has(tr:first-child > :nth-child(4)) :where(th:first-child, td:first-child),
  .ltih-content table.ltih-table-wide :where(th:first-child, td:first-child) {
    width: 135px;
    min-width: 135px;
  }
}

/* Recipe and exercise catalogue summaries embedded in editorial Pages. */
.content-hub-collection {
  padding: clamp(34px, 5vw, 72px) 0;
}

.content-hub-collection__intro {
  max-width: 720px;
  margin: -6px 0 28px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
}

.content-hub-collection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.content-hub-collection__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.content-hub-collection__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef2f7;
}

.content-hub-collection__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.content-hub-collection__body h3 {
  margin: 0 0 10px;
  color: #172033;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.content-hub-collection__body > p:not(.content-hub-collection__meta) {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.content-hub-collection__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding-top: 20px;
}

.content-hub-collection__meta span {
  border-radius: 999px;
  padding: 5px 10px;
  background: #eef6fb;
  color: #27445b;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-hub-collection__cta {
  margin: 30px 0 0;
}

.content-hub-collection__empty {
  margin: 0;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 20px;
  color: #64748b;
  background: #f8fafc;
}

@media (max-width: 900px) {
  .content-hub-collection__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .content-hub-collection__grid {
    grid-template-columns: 1fr;
  }

  .content-hub-collection__body {
    padding: 20px;
  }
}
