@font-face {
  font-family: "TitilliumWeb";
  src: url("../fonts/TitilliumWeb-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "TitilliumWeb";
  src: url("../fonts/TitilliumWeb-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TitilliumWeb";
  src: url("../fonts/TitilliumWeb-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

* {
  box-sizing: border-box;
}
body {
  font-family: "TitilliumWeb", sans-serif;
  margin: 0;
  padding: 0;
}

/* Hide native search clear/cancel icons across browsers */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

p {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  font-family: "Inter";
  font-weight: 400;
}
h1 {
  font-size: clamp(28px, 3vw, 50px);
  line-height: 120%;
  font-weight: 700;
  margin: 0 0 14px;
}
h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 120%;
  font-weight: 700;
  margin: 0 0 14px;
}
h3 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 120%;
  font-weight: 700;
  margin: 0 0 14px;
}
h4 {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 120%;
  font-weight: 700;
  margin: 0 0 14px;
}
h5 {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 120%;
  font-weight: 700;
  margin: 0 0 14px;
}
h6 {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 120%;
  font-weight: 700;
  margin: 0 0 14px;
}

ol,
ul {
  padding-left: 15px;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  font-family: "Inter";
}

ol li {
  padding-bottom: 4px;
}
ul li::marker {
  color: #005c8b;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 16px;
}
/* =========================
   Hero Main
   ========================= */

.hero.hero--main {
  position: relative;
  overflow: visible;

  /* Desktop height */
  height: 540px;
  min-height: 540px;

  /* Reserve space for the floating card */
  margin-bottom: 120px;
}

/* Background wrapper */
.hero--main .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Background image */
.hero--main .hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Inner container (floating card) */
.hero--main .hero__inner {
  position: absolute;
  left: 0;
  right: 0;

  /* Put it near bottom and pull down for "floating" */
  bottom: -35px;
  transform: translateY(60px);

  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero--main .hero__content {
  width: min(947px, 100%);
  background: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  padding: 48px;
  text-align: center;
}

.hero--main .hero__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.hero--main .hero__subtitle {
  margin: 0;
  font-size: clamp(16px, 3vw, 24px);
  line-height: 1.6;
  color: #1f1f1f;
  margin-inline: auto;
  padding-bottom: 32px;
  max-width: 60ch;
}

.hero-search {
  width: min(940px, 100%);
  margin: 0 auto;
  position: relative;
}

.hero-search__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border: 1px solid #cecece;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
}

.hero-search__field {
  position: relative;
}

.hero-search__input {
  padding: 0;
  height: 50px;
  font-size: 16px;
  color: #1f1f1f;
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font-family: "Inter";
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.hero-search__input:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}

.hero-search__btn {
  border: 0;
  background: #ffba13;
  color: #1f1f1f;
  font-size: clamp(18px, 1.8vw, 18px);
  font-weight: 600;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Inter";
  border-radius: 4px;
}

.hero-search__btn:hover {
  background: #ffcc50;
}

.hero-search__btn-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.hero-search__hint {
  position: absolute;
  left: 20px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  color: #1f1f1f;
}

.hero-search__hint-icon {
  width: 20px;
  flex: 0 0 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.hero-search__hint-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.hero-search__hint-top {
  font-size: 12px;
  color: #757575;
}

.hero-search__hint-bottom {
  margin-top: 2px;
  font-size: 16px;
  color: #1f1f1f;
}

.hero-search__input:focus + .hero-search__hint,
.hero-search__field:focus-within .hero-search__hint,
.hero-search__input:not(:placeholder-shown) + .hero-search__hint {
  opacity: 0;
  visibility: hidden;
}

.hero-search__suggestions {
  top: calc(100% + 6px);
}

.hero--main .hero__sticky-media {
  position: absolute;
  right: clamp(16px, 4vw, 44px);
  bottom: 18px;
  z-index: 3;
}

.hero--main .hero__sticky-media.is-fixed {
  position: fixed;
  right: clamp(16px, 4vw, 44px);
  bottom: clamp(16px, 5vh, 40px);
  z-index: 30;
}

.hero--main .hero__sticky-media-link,
.hero--main .hero__sticky-media-image {
  display: block;
}

/* =========================
   Steps Section
   ========================= */

.steps {
  padding: 80px 0;
}

.steps__header {
  text-align: center;
  margin-bottom: 32px;
}

.steps__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 120%;
  font-weight: 700;
  color: #1f1f1f;
}

/* Grid: auto adapts to number of steps */
.steps__grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

/* If only 1 step: keep it centered and not stretched too wide */
.steps__grid[data-count="1"] {
  grid-template-columns: minmax(240px, 360px);
  justify-content: center;
}

.steps__card {
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 4px;
  padding: 48px 28px;
}

.steps__icon-wrap {
  margin-bottom: 28px;
}

.steps__icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.steps__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f1f1f;
  background: #ffba13;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 12px;
  font-family: "Inter";
}

.steps__pill-num {
  display: inline-flex;
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 8px;
  color: #1f1f1f;
  font-family: "Inter", sans-serif;
}

.steps__card-title {
  margin: 0 0 10px;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 120%;
  font-weight: 700;
  color: #005c8b;
}

.steps__card-text {
  margin: 0;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 160%;
  color: #1f1f1f;
}

/* CTA */
.steps__cta {
  margin-top: 32px;
  background: #e6eff4;
  border-radius: 4px;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.steps__cta-title {
  margin: 0 0 14px;
  font-weight: 700;
  color: #1f1f1f;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 120%;
}

.steps__cta-text {
  margin: 0;
  font-size: clamp(16px, 3vw, 18px);
  color: #1f1f1f;
  line-height: 160%;
}

a.btn.btn--primary {
  font-size: 18px;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 600;
  background: #ffba13;
  padding: 14px 60px;
  border-radius: 4px;
  font-family: "Inter";
}
a.btn.btn--primary:hover {
  background-color: #ffcc50;
}

.steps__cta a.btn.btn--primary:hover {
    background-color: transparent;
    color: #013A57;
    border: 1px solid #013A57;
}
.steps__cta-content {
  width: 70%;
}

/* =========================
   About + Stats
   ========================= */

.about-stats {
  padding: 120px 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.about-stats:not(:has(.about-stats__grid)) {
  padding: 60px 0;
}
.about-stats--reverse .about-stats__content {
  order: 2;
}
.about-stats--reverse .about-stats__media {
  order: 1;
}

.eyebrow__text {
  margin: 0 0 8px;
  font-size: clamp(14px, 2vw, 16px);
  text-transform: uppercase;
  color: #757575;
  font-weight: 600;
  font-family: "TitilliumWeb";
}

.about-stats__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.about-stats__text {
  margin: 0 0 28px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: #1f1f1f;
  max-width: 62ch;
}

.about-stats__media {
  display: flex;
  justify-content: flex-end;
}

.about-stats__image {
  width: 100%;
  max-width: 560px;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

/* Features list */
.about-stats__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.about-stats__feature {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.about-stats__feature-icon-wrap {
  width: 24px;
  height: 24px;
}

.about-stats__feature-icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.about-stats__feature-title {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  color: #1f1f1f;
  font-family: "TitilliumWeb";
  font-weight: 700;
  line-height: 120%;
}

.about-stats__feature-text {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: #1f1f1f;
  font-weight: 400;
}

/* Counters bar */
.about-stats__counters {
  /* margin-top: 48px; */
  background: #f5f5f5;
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.about-stats__counter {
  padding: 28px 18px;
  text-align: center;
  position: relative;
}

.about-stats__counter:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  right: 0;
  width: 1px;
  background: #cecece;
}

.about-stats__counter-value {
  font-size: clamp(60px, 4vw, 100px);
  line-height: 100%;
  font-weight: 300;
  color: #005c8b;
  font-family: "Inter";
}

.about-stats__counter-label {
  margin-top: 20px;
  font-size: clamp(20px, 4vw, 24px);
  color: #1f1f1f;
  font-weight: 400;
  line-height: 120%;
  font-family: "Inter";
}

/* =========================
   Partner CTA + Image Collage
   - Desktop: 5 images in one row (no slider)
   - Mobile: 4 images as 2x2 grid (5th hidden)
   ========================= */

.partner-cta {
  padding: 0;
}

/* --- Images collage (desktop) --- */
.partner-cta__images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.partner-cta__img-item {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  background: rgba(0, 0, 0, 0.04);
}

.partner-cta__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* --- Yellow CTA bar --- */
.partner-cta__bar {
  background: #ffc21a;
}

.partner-cta__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 66px 16px;
}

.partner-cta__content {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}

.partner-cta__icon-wrap {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-cta__icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

.partner-cta__text {
  min-width: 0;
}

.partner-cta__title {
  display: block;
  margin: 0 0 14px;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.2;
}

.partner-cta__desc {
  margin: 0;
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.6;
  color: #1f1f1f;
  max-width: 72ch;
}

/* Button style (light like screenshot) */
.btn.btn--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 60px;
  border-radius: 4px;
  background: #fff;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1;
  white-space: nowrap;
  font-family: "Inter";
  border: 1px solid #fff;
}
a.btn.btn--light:hover {
  background-color: #ffcc50;
}

/* =========================
   Testimonials (Scoped)
   ========================= */

.eza-testimonials {
  padding: 180px 0;
  background: #f5f5f5;
}

.eza-testimonials__header {
  text-align: center;
  margin-bottom: 28px;
}

.eza-testimonials__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.55);
}

.eza-testimonials__title {
  display: block;
  margin: 0 0 48px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.eza-testimonials__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.eza-testimonials__swiper {
  width: 100%;
}

.eza-testimonials__swiper-wrapper {
  align-items: stretch;
}

.eza-testimonials__slide {
  height: auto;
  display: flex;
}

.eza-testimonials__nav {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #757575;
  cursor: pointer;
  flex: 0 0 auto;
}

.eza-testimonials__nav-icon {
  width: 17px;
}

.eza-testimonials__card {
  position: relative;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 4px;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.eza-testimonials__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.eza-testimonials__logo {
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  object-position: right center;
  display: block;
  flex: 0 1 auto;
}

.eza-testimonials__stars {
  margin-bottom: 28px;
  font-size: 20px;
}

.eza-testimonials__star {
  color: rgba(31, 31, 31, 0.25);
}

.eza-testimonials__star.is-active {
  color: #ffc21a;
}

.eza-testimonials__text {
  margin: 0;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 160%;
  color: #1f1f1f;
}

.eza-testimonials__name {
  margin: auto 0 0;
  padding-top: 28px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  color: #1f1f1f;
  font-family: "TitilliumWeb";
}

.eza-testimonials--is-static .eza-testimonials__wrap {
  display: block;
}

.eza-testimonials--is-static .eza-testimonials__nav {
  display: none;
}

.eza-testimonials--is-static .eza-testimonials__swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.eza-testimonials--is-static .eza-testimonials__slide {
  width: auto !important;
}

.eza-testimonials__swipe-hint {
  display: none;
}

/* =========================
   Categories Section
   ========================= */

.eza-categories {
  padding: 120px 0;
  background: #e6eff4;
}

.eza-categories__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  color: #1f1f1f;
}
.eza-categories__card-title:hover {
  text-decoration: underline;
}
.eza-categories__text {
  margin: 0;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.6;
  color: #1f1f1f;
  max-width: 70ch;
  margin: 0 0 48px;
}

.eza-categories__wrap {
  position: relative;
  display: block;
}

.eza-categories__swiper {
  width: 100%;
}

.eza-categories__swiper-wrapper {
  align-items: stretch;
}

.eza-categories__slide {
  height: auto;
  display: flex;
}

.eza-categories__card {
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.eza-categories__media {
  aspect-ratio: 1 / 1.2;
}

.eza-categories__img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}

.eza-categories__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.eza-categories__card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #005c8b;
  font-weight: 600;
  font-family: "Inter";
}

.eza-categories__arrow {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex: 0 0 28px;
  cursor: pointer;
}

.eza-categories__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #5fa2c7;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.eza-categories__nav--prev {
  left: -68px;
}

.eza-categories__nav--next {
  right: -68px;
}

.eza-categories__nav-icon {
  width: 17px;
  height: 17px;
  display: block;
}

.eza-categories__swipe-hint {
  display: none;
}

.eza-categories--is-static .eza-categories__wrap {
  grid-template-columns: 1fr;
}

.eza-categories--is-static .eza-categories__nav {
  display: none;
}

.eza-categories--is-static .eza-categories__swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.eza-categories--is-static[data-count="3"] .eza-categories__swiper-wrapper {
  grid-template-columns: repeat(3, minmax(0, calc((100% - 54px) / 4)));
  justify-content: center;
}

.eza-categories--is-static[data-count="2"] .eza-categories__swiper-wrapper {
  grid-template-columns: repeat(2, minmax(0, calc((100% - 54px) / 4)));
  justify-content: center;
}

.eza-categories--is-static[data-count="1"] .eza-categories__swiper-wrapper {
  grid-template-columns: minmax(0, calc((100% - 54px) / 4));
  justify-content: center;
}

.eza-categories--is-static .eza-categories__slide {
  width: auto !important;
}

.eza-categories--is-static .eza-categories__slide {
  display: block;
}

.eza-categories--is-static .eza-categories__card {
  height: auto;
}

/* =========================
   Info Cards Section
   ========================= */

.eza-info-cards {
  padding: 60px 0;
}

.eza-info-cards__grid {
  display: grid;
  gap: 32px;
}

.eza-info-cards__grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.eza-info-cards__grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eza-info-cards__grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eza-info-cards__card {
  background: #e6eff4;
  border-radius: 4px;
  padding: 32px;
}

.eza-info-cards__badge-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.eza-info-cards__badge {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 36px 7px 14px;
  background: #005c8b;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Inter";
  text-transform: uppercase;
}

.eza-info-cards__badge-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #005c8b;
  font-weight: 700;
  font-size: 14px;
  font-family: "Inter";
}

.eza-info-cards__title {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  color: #1f1f1f;
}

.eza-info-cards__text {
  margin: 0 0 20px;
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.6;
  color: #1f1f1f;
}

.eza-info-cards__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.eza-info-cards__item {
  position: relative;
  margin: 0;
  padding-left: 16px;
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.45;
  color: #1f1f1f;
  font-weight: 600;
  font-family: "Inter";
}

.eza-info-cards__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #005c8b;
  position: absolute;
  left: 0;
  top: 0.6em;
}

/* =========================
   Checklist Section
   ========================= */

.eza-checklist {
  padding: 60px 0;
}

.eza-checklist__title {
  margin: 0 0 28px;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.2;
  color: #1f1f1f;
  font-weight: 700;
}

.eza-checklist__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.eza-checklist__item {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 12px;
}

.eza-checklist__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  margin-top: 6px;
}

.eza-checklist__text {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.6;
  color: #1f1f1f;
  font-family: "Inter";
}

/* =========================
   Downloads Section
   ========================= */

.eza-downloads {
  padding: 60px 0 120px 0;
}

.eza-downloads__eyebrow {
  margin-bottom: 35px;
  color: #1f1f1f;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 18px);
}

.eza-downloads__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 32px);
}

.eza-downloads__card {
  min-height: 50px;
  border: 1px solid #cecece;
  border-radius: 4px;
  background: #fff;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.3s, border-color 0.3s;
}

.eza-downloads__card:hover {
  background: #013A57;
  border-color: #013A57;
}

.eza-downloads__card:hover .eza-downloads__title {
  color: #fff;
}

.eza-downloads__card:hover .eza-downloads__icon {
  filter: brightness(0) invert(1);
}

.eza-downloads__title {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.2;
  font-weight: 600;
  color: #1f1f1f;
  transition: color 0.3s;
}
.eza-downloads__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  flex: 0 0 22px;
  transition: filter 0.3s;
}

/* =========================
   Benefits Strip Section
   ========================= */

.eza-benefits-strip {
  padding: 14px 0;
}
.eza-benefits-strip .container {
  background-color: #f5f5f5;
  padding: 14px 24px;
}
.eza-benefits-strip__list {
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 28px;
  align-items: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.eza-benefits-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.eza-benefits-strip__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.eza-benefits-strip__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.eza-benefits-strip__text {
  font-family: "Inter";
  font-size: 18px;
  line-height: 160%;
  color: #1f1f1f;
  white-space: nowrap;
}

/* =========================
   Articles Teaser
   ========================= */

.articles-teaser {
  padding: 120px 0;
  border-bottom: 1px solid #cecece;
}

.articles-teaser__header {
  text-align: center;
  margin-bottom: 28px;
}

.articles-teaser__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  color: #1f1f1f;
}

.articles-teaser__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.articles-teaser__chip {
  appearance: none;
  border: 1px solid #ffba13;
  background: #fff;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: #1f1f1f;
  font-family: "Inter";
  text-decoration: none;
}

.articles-teaser__chip.is-active,
.articles-teaser__chip:hover {
  background: #ffba13;
  border-color: #ffba13;
}

.articles-teaser__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.articles-teaser__card {
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.articles-teaser__card[hidden] {
  display: none !important;
}

.articles-teaser__media {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.articles-teaser__img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.articles-teaser__body {
  padding-top: 28px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.articles-teaser__card-title {
  margin: 0 0 14px;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.25;
  font-weight: 700;
  color: #005c8b;
}

.articles-teaser__card-title a {
  color: inherit;
  text-decoration: none;
}

.articles-teaser__excerpt {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
}

.articles-teaser__readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  text-decoration: none;
  color: #005c8b;
  font-family: "Inter";
  font-weight: 600;
  margin-top: auto;
  padding-top: 14px;
  margin-right: 14px;
}
a.articles-teaser__readmore:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.articles-teaser__footer {
  margin-top: 48px;
  text-align: center;
}
.search-results-section {
  padding-top: 40px;
}
.search-results .articles-teaser__header {
  text-align: left;
}
.search-results-section__header {
  margin-bottom: 18px;
}
.search-results-section__count {
  margin: 0;
  color: #656565;
  font-size: 16px;
  font-family: "Inter";
}
.articles-teaser__pagination {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.articles-teaser__pagination .page-numbers {
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #cecece;
  color: #1f1f1f;
  text-decoration: none;
  border-radius: 4px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
}
.articles-teaser__pagination .page-numbers.current {
  background: #005c8b;
  color: #fff;
  border-color: #005c8b;
}
.articles-teaser__pagination .page-numbers.dots {
  font-size: 44px;
  line-height: 1;
  letter-spacing: 4px;
}
.articles-teaser__pagination-arrow {
  width: 7px;
  height: 12px;
  display: block;
}

.articles-teaser__swipe-hint {
  display: none;
}

/* =========================
   Single Post Layout
   ========================= */
.single-post-layout {
  padding-top: 60px;
}

.single-post-layout__container {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
}

.single-post-layout__header {
  margin-bottom: 28px;
}

.single-post-layout__title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 120%;
  color: #1f1f1f;
}

.single-post-layout__excerpt {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: #1f1f1f;
  font-family: "Inter";
  font-weight: 600;
}

.single-post-layout__featured {
  margin: 0 0 18px;
}

.single-post-layout__featured img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.single-post-layout__caption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #4f4f4f;
  font-family: "Inter";
}

.single-post-layout__content {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.7;
  color: #1f1f1f;
  font-family: "Inter";
  padding-bottom: 20px;
}
h4.faq-cta__phone-number {
    margin: 0;
}

.single-post-layout__faq {
  margin: 56px auto 120px auto;
}

.single-post-layout__related,
.single-post-layout__latest {
  border-top: 1px solid #cecece;
}

.entry-content .eza-note-box,
.single-post-layout__content .eza-note-box {
  background: #e6eff4;
  border-radius: 4px;
  padding: 32px;
  margin: 24px 0;
}

.entry-content .eza-note-box .eza-info-cards__badge-wrap,
.single-post-layout__content .eza-note-box .eza-info-cards__badge-wrap {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 10px 6px 12px;
  border-radius: 999px;
  background: #005c8b;
  margin-bottom: 24px;
}

.entry-content .eza-note-box .eza-info-cards__badge,
.single-post-layout__content .eza-note-box .eza-info-cards__badge {
  background: transparent;
  padding: 0;
  color: #fff;
  text-transform: uppercase;
}

.entry-content .eza-note-box .eza-info-cards__badge-icon,
.single-post-layout__content .eza-note-box .eza-info-cards__badge-icon {
  position: static;
  top: auto;
  right: auto;
  transform: none;
}

.entry-content .eza-note-box .inline-related-wrapper,
.entry-content .eza-note-box .inline-related-box,
.single-post-layout__content .eza-note-box .inline-related-wrapper,
.single-post-layout__content .eza-note-box .inline-related-box {
  display: none !important;
}
.single-post-layout__content a,
.entry-content a,
.text-module__content a,
.content-media-section__description a,
.eza-info-cards__content a,
.faq-answer__inner a {
  text-decoration: none;
  color: #005c8b;
}
.single-post-layout__content a:hover,
.entry-content a:hover,
.text-module__content a:hover,
.content-media-section__description a:hover,
.eza-info-cards__content a:hover,
.faq-answer__inner a:hover {
  text-decoration: underline;
}

.entry-content .body-text-l,
.single-post-layout__content .body-text-l {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
  font-family: "Inter";
}

.entry-content .body-text-s,
.single-post-layout__content .body-text-s {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  font-family: "Inter";
  font-weight: 400;
}

.entry-content .eza-note-box ul,
.single-post-layout__content .eza-note-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-content .eza-note-box ul li,
.single-post-layout__content .eza-note-box ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin: 0 0 16px;
}

.entry-content .eza-note-box ul li:last-child,
.single-post-layout__content .eza-note-box ul li:last-child {
  margin-bottom: 0;
}

.entry-content .eza-note-box ul li > p,
.single-post-layout__content .eza-note-box ul li > p {
  margin: 0 0 8px;
}

.entry-content .eza-note-box ul li > p:last-child,
.single-post-layout__content .eza-note-box ul li > p:last-child {
  margin-bottom: 0;
}

.entry-content .eza-note-box ul li::before,
.single-post-layout__content .eza-note-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0081bf;
}

.entry-content .eza-note-box ul li.two-line-list-item,
.single-post-layout__content .eza-note-box ul li.two-line-list-item {
  padding-left: 20px !important;
}

.entry-content .eza-note-box ul li.two-line-list-item::before,
.single-post-layout__content .eza-note-box ul li.two-line-list-item::before {
  content: "";
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0081bf;
}

.entry-content .eza-note-box ol,
.single-post-layout__content .eza-note-box ol {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}

.entry-content .eza-note-box ol li,
.single-post-layout__content .eza-note-box ol li {
  padding-left: 0;
  margin: 0 0 16px;
  list-style: decimal;
}

.entry-content .eza-note-box ol li:last-child,
.single-post-layout__content .eza-note-box ol li:last-child {
  margin-bottom: 0;
}

.entry-content .eza-table-scroll,
.single-post-layout__content .eza-table-scroll {
  width: 100%;
  overflow-x: visible;
  margin: 22px 0;
}

.entry-content table,
.single-post-layout__content table {
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 4px;
  overflow: hidden;
  padding: 14px 28px;
  background: #f5f5f5;
}

.entry-content table.eza-table--wide,
.single-post-layout__content table.eza-table--wide {
  min-width: 640px;
}

.entry-content table thead th,
.single-post-layout__content table thead th {
  text-align: left;
  padding: 0 0 14px 0;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  color: #1f1f1f;
  border-bottom: 1px solid #cecece;
  font-family: "TitilliumWeb";
}
.entry-content table tbody td,
.single-post-layout__content table tbody td {
  padding: 28px 0;
  font-size: 18px;
  line-height: 1.5;
  color: #1f1f1f;
  border-bottom: 1px solid #cecece;
}
a.btn.btn--outline {
  color: #005c8b;
  text-decoration: none;
  padding: 14px 60px;
  border: 1px solid #005c8b;
  border-radius: 4px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 18px;
}
a.btn.btn--outline:hover {
  color: #1f1f1f;
  background-color: #ffcc50;
  border: 1px solid #ffcc50;
}

/* Glossar Preview Section */
.glossar-preview {
  padding: 60px 0;
}

.gp-head {
  text-align: center;
  margin-bottom: 18px;
}

.gp-title {
  margin: 0 0 48px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.glossar-preview .gp-letters{
  border-top:0px;
  border-bottom:0px
}

.gp-letters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 28px auto 48px auto;
    border-top: 1px solid #CECECE;
    border-bottom: 1px solid #CECECE;
    padding: 25px 0;
}
.gp-letters.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.gp-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-decoration: none;
  color: #005c8b;
  font-family: "TitilliumWeb";
}

span.gp-letter.is-disabled,
a.gp-letter.is-disabled {
  color: #cecece;
}

.gp-letter.is-active {
  color: #ffba13;
}
.gp-letters .gp-letter:first-child {
  color: #ffba13;
}
a.gp-card__link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* Cards */
.gp-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.gp-card {
  border: 1px solid #cecece;
  border-radius: 4px;
  padding: 14px;
  background: #fff;
}

.gp-card__title a{
  margin: 0 0 14px;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.2;
  color: #1F1F1F;
  text-decoration: none;
}

.gp-card__excerpt {
  margin: 0 0 12px;
  font-size: clamp(14px, 3vw, 16px);
  font-family: "Inter";
  color: #1f1f1f;
}

.gp-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  color: #005c8b;
  font-size: 18px;
  font-family: "Inter";
}

.gp-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* Loading state (optional) */
.glossar-preview.is-loading .gp-grid {
  opacity: 0.55;
  pointer-events: none;
}

.post-thumbnail {
  margin: 0 0 16px;
}

.post-thumbnail__copyright {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.65);
}

.eza-testimonials__quote-img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

.glossaries {
  padding: 64px 0;
}
.glossaries__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 18px;
}
.glossaries__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  color: #1f1f1f;
}
p.glossaries__text {
  font-size: clamp(16px, 3vw, 18px);
}

.glossaries__search {
  max-width: 1280px;
  margin: 18px auto 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 4px;
  background: #e6eff4;
}
.search-container {
  background-color: white;
  display: flex;
  width: 730px;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #bdbdbd;
}
.glossaries__search-input {
  width: min(560px, 100%);
  height: 50px;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  outline: none;
  background: #fff;
  color: #656565;
  font-size: 16px;
  font-weight: 400;
  line-height: 39px;
}
.glossaries__search-input::placeholder {
  color: #4f555c;
  opacity: 1;
}
.glossaries__search-btn {
  height: 50px;
  min-width: 190px;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 39px;
  background: #ffc107;
  color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Inter";
}
.glossaries__search-btn:hover {
  background: #f0b500;
}
.glossaries__search-btn:focus-visible {
  outline: 2px solid #005c8b;
  outline-offset: 2px;
}
.glossaries__search-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.glossaries__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px auto 18px;
}

.glossaries__group-title {
  color: #005c8b;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 28px;
}

.glossaries__group {
  margin-top: 48px;
}

/* CTA Banner (blue bar + yellow button) */
.cta-banner {
  background: #005c8b;
  padding: 60px 0;
  color: #fff;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner__title {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cta-banner__text {
  margin: 0;
  font-size: clamp(16px, 3vw, 18px);
  max-width: 820px;
  line-height: 160%;
}

/*FOOTER*/
.site-footer {
  background: #02283b;
  color: #fff;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid #005c8b;
}

.footer-bar__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
}
.footer-bar__logo img {
  height: 74px;
  width: 240px;
  display: block;
}

.footer-bar__text {
  font-size: 14px;
  line-height: 1.4;
  max-width: 410px;
  font-weight: 400;
  border-left: 1px solid rgba(0, 92, 139, 1);
  padding-left: 16px;
}
.footer-bar__actions {
  display: flex;
  align-items: center;
  gap: 50px;
}
span.footer-bar__phone h4 {
  margin: 0;
  font-size: 24px;
}
.footer-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
}

.footer-bar__phone-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.footer-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 4px;
  background: #f2b300;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer__main {
  padding: 28px 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid #005c8b;
}

.footer-col__title {
  display: block;
  font-size: clamp(14px, 3vw, 18px);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 28px;
  line-height: 120%;
}

.footer-menu,
.footer-bottom-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu__item a,
.footer-menu a,
.footer-bottom-menu a {
  display: inline-block;
  padding: 0 0 14px 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-family: "Inter";
}

.footer-menu a:hover,
.footer-bottom-menu a:hover {
  color: #fff;
}

/* split column 1 into 2 */
.footer-menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: clamp(20px, 3vw, 28px);
}

.footer-bottom-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom__right {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter";
}

.back-to-top {
  position: fixed;
  right: clamp(84px, 8vw, 120px);
  bottom: 24px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #005c8b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 26;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #0074ad;
}

/*FAQ*/

.faq-section {
  padding: 120px 0;
  background: #f5f5f5;
}
.faq-section__container {
  margin: 0 auto;
}

.faq-section__head {
  text-align: center;
}
.faq-section__small-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 10px;
}
.faq-section__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #1f1f1f;
}

.faq-accordion {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}

.faq-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 24px);
}
h3.faq-question__text {
  margin: 0px;
  font-family: "TitilliumWeb";
  color: #1f1f1f;
  font-size: inherit;
  line-height: inherit;
}
.faq-question__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(180deg);
}

.faq-answer__inner {
  padding: 0px 32px 28px 32px;
  color: #1f1f1f;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
}
.faq-answer__inner p {
  margin: 0px;
  font-size: inherit;
  line-height: inherit;
}
/* Bottom CTA */
.faq-cta {
  text-align: center;
  margin-top: 48px;
}

span.faq-cta__title {
  display: block;
  font-weight: 700;
  color: #1f1f1f;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 120%;
  margin: 0 0 14px;
  
}
.faq-cta__text {
  font-size: clamp(16px, 3vw, 18px);
  margin: 0 0 28px;
}

.faq-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 28px;
  color: #1f1f1f;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 120%;
}
.faq-cta__phone-number{
font-weight: 700;
  text-decoration: none;
  color: #1f1f1f;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 120%;
}

a.footer-bar__phone h4 {
    margin-bottom: 0px;
}

.faq-cta__phone-icon {
  width: 28px;
  height: 28px;
  display: block;
}
span.faq-cta__phone span {
  color: #1f1f1f;
  text-decoration: none;
}
span.footer-bar__phone h4 {
  text-decoration: none;
  color: #fff;
}

/* Prevent iOS data-detector links from turning blue/underlined in FAQ/Footer */
.faq-section a[href^="tel"],
.faq-section a[x-apple-data-detectors],
.faq-section [x-apple-data-detectors],
.site-footer a[href^="tel"],
.site-footer a[x-apple-data-detectors],
.site-footer [x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font: inherit !important;
  line-height: inherit !important;
}

.contact__us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body.mce-content-body .eza-note-box {
  background: #e6eff4;
  border-radius: 4px;
  padding: 28px 28px 28px;
  margin: 24px 0;
}

body.mce-content-body .eza-note-box .eza-info-cards__badge-wrap {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 10px 6px 12px;
  border-radius: 999px;
  background: #005c8b;
  margin-bottom: 24px;
}

body.mce-content-body .eza-note-box .eza-info-cards__badge {
  background: transparent;
  padding: 0;
  color: #fff;
  text-transform: uppercase;
}

body.mce-content-body .eza-note-box .eza-info-cards__badge-icon {
  position: static;
  top: auto;
  right: auto;
  transform: none;
}

body.mce-content-body .eza-note-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.mce-content-body .eza-note-box ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin: 0 0 16px;
}

body.mce-content-body .eza-note-box ul li:last-child {
  margin-bottom: 0;
}

body.mce-content-body .eza-note-box ul li > p {
  margin: 0 0 8px;
}

body.mce-content-body .eza-note-box ul li > p:last-child {
  margin-bottom: 0;
}

body.mce-content-body .eza-note-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #005c8b;
}

body.mce-content-body .eza-note-box ul li.two-line-list-item {
  padding-left: 20px !important;
}

body.mce-content-body .eza-note-box ul li.two-line-list-item::before {
  content: "";
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #005c8b;
}

body.mce-content-body .eza-note-box ol {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}

body.mce-content-body .eza-note-box ol li {
  padding-left: 0;
  margin: 0 0 16px;
  list-style: decimal;
}

body.mce-content-body .eza-note-box ol li:last-child {
  margin-bottom: 0;
}

body.mce-content-body .body-text-l {
  font-size: 24px;
  line-height: 1.6;
  font-family: "Inter";
}

body.mce-content-body .body-text-s {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Inter";
}
ul li::marker {
  color: #005c8b;
}

body.mce-content-body table {
  width: 100%;
  border-collapse: collapse;
}

body.mce-content-body th,
body.mce-content-body td {
  border: 1px solid #cecece;
  padding: 10px 12px;
}

/*CUSTOM LIST*/

.two-line-list-item {
  margin-bottom: 28px;
  font-size: clamp(16px, 3vw + 10px, 18px);
  padding-left: 0 !important;
  list-style: none !important;
  position: relative;
  line-height: 156%;
  color: #1f1f1f;
}

.two-line-list-item::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #005c8b;
}

.two-line-list-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

/* === Inline Related Article Box === */

.inline-related-box {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.inline-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
  border-radius: 4px;
}

/* Thumbnail */
.inline-thumb {
  display: block;
  overflow: hidden;
  z-index: 5;
  margin-right: -2px;
  height: 100%;
}

.inline-thumb img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Right block */

.inline-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: start;
  padding: 30px;
  border-style: solid;
  border-color: #e6eff4;
  border-width: 6px 6px 6px 0;
  border-radius: 4px;
}

.inline-info a {
  text-decoration: none;
}

.inline-info a:hover {
  text-decoration: underline;
}

/* Title */
.inline-title {
  font-size: clamp(12px, 3vw + 10px, 20px);
  font-weight: 600;
  color: #005c8b;
  line-height: 120%;
  text-decoration: none;
}

a.inline-title:hover {
  text-decoration: underline;
}

.inline-more {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(12px, 3vw + 10px, 18px);
  color: #005c8b;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  line-height: 120%;
}

a.inline-more:hover {
  text-decoration: underline;
}

/* === Inline Post CTA Shortcode === */
.post-cta-inline {
  margin: 40px 0;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  border-radius: 4px;
  overflow: hidden;
  background: #e6eff4;
}

.post-cta-inline__media {
  height: 100%;
}
.post-cta-inline__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.post-cta-inline__content {
  padding: 32px;
}

h4.post-cta-inline__title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  line-height: 120%;
}
.post-cta-inline__text {
  margin: 0 0 24px;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.5;
  color: #1f1f1f;
}

.post-cta-inline__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*TABLE OF CONTENTS*/
div#ez-toc-container {
  border: none;
  padding: 32px;
  border-radius: 4px;
  margin: 28px 0px;
  background-color: #f5f5f5;
}
div#ez-toc-container .ez-toc-title {
  margin: 0 0 16px 0;
  font-size: clamp(20px, 3vw + 10px, 24px);
  font-weight: 600;
  color: #1f1f1f;
}
.ez-toc-list li {
  list-style: none !important;
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}

.ez-toc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/themes/eza-theme/assets/images/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
#ez-toc-container a:visited {
  color: #005c8b !important;
}
#ez-toc-container a:hover {
  text-decoration: none !important;
}

ul.ez-toc-list.ez-toc-list-level-1 {
  margin-top: 16px !important;
  padding: 0;
}
#ez-toc-container a {
  color: #005c8b !important;
  text-decoration: none;
}

/*404*/
.error-404 {
  text-align: center;
  padding: 120px 16px;
  max-width: 720px;
  margin: 0 auto;
}
.error404 .eza-breadcrumbs-wrap {
    display: none;
}
.error-404 h1 {
  font-size: clamp(26px, 3vw + 8px, 50px);
  font-weight: 700;
  line-height: 120%;
  color: #1f1f1f;
  margin-bottom: 28px;
}

.error-404 p {
  font-size: clamp(16px, 1vw + 8px, 24px);
  line-height: 156%;
  color: #1f1f1f;
  margin-bottom: 28px;
}

.error-404 .back-home-btn {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid #ffba13;
  border-radius: 2px;
  background: #ffba13;
  color: #1f1f1f;
  text-decoration: none;
  font-size: clamp(16px, 1vw + 8px, 18px);
  font-weight: 600;
  line-height: 120%;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.error-404 .back-home-btn:hover {
  background: #ffcc50;
  border: 1px solid #ffcc50;
}
/* SHORTCODE MODULE */
.shortcode-module .shortcode-module__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

/*TEXT MODULE */
.text-module__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 120px 0;
}
.single-location .text-module__content {
  max-width: initial;
  padding: 60px 0;
}
.single-location .text-module__content p {
  width: 80%;
}
.text-module__content a {
  color: #005c8b;
}
.text-module__content a:hover{
  text-decoration: underline;
}
.text-module__content img.alignnone[class*="wp-image-"] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.size-full {
  width: 100%;
  height: auto;
}

/* TinyMCE classic editor — breathing room around the content area */
body.mceContentBody {
  padding: 20px 28px!important;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Offset anchor jumps so the sticky header doesn't cover the target.
   Uses the header's exposed height variable + small breathing space. */
html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: calc(var(--eza-header-main-height, 90px) + 16px);
}

/* Stretch standalone content images to fill the post column */
.single-post-layout__content img,
.entry-content img {
  max-width: 100%;
  height: auto;
}

section.post-cta-inline .post-cta-inline__media img {
    height: 100%;
}
/* Centered / no-alignment / unaligned figures and bare images fill the column.
   No horizontal margins on any alignment per spec. */
.single-post-layout__content figure.wp-caption.aligncenter,
.single-post-layout__content figure.wp-block-image.aligncenter,
.single-post-layout__content figure.wp-caption.alignnone,
.single-post-layout__content figure.wp-block-image.alignnone,
.single-post-layout__content figure.wp-caption.alignfull,
.single-post-layout__content figure.wp-block-image.alignfull,
.single-post-layout__content figure.wp-caption.alignwide,
.single-post-layout__content figure.wp-block-image.alignwide,
.single-post-layout__content figure.wp-caption:not(.alignleft):not(.alignright),
.single-post-layout__content figure.wp-block-image:not(.alignleft):not(.alignright),
.entry-content figure.wp-caption.aligncenter,
.entry-content figure.wp-block-image.aligncenter,
.entry-content figure.wp-caption.alignnone,
.entry-content figure.wp-block-image.alignnone,
.entry-content figure.wp-caption.alignfull,
.entry-content figure.wp-block-image.alignfull,
.entry-content figure.wp-caption.alignwide,
.entry-content figure.wp-block-image.alignwide,
.entry-content figure.wp-caption:not(.alignleft):not(.alignright),
.entry-content figure.wp-block-image:not(.alignleft):not(.alignright) {
  width: 100% !important;
  max-width: 100%;
  margin: 24px 0;
}
.single-post-layout__content figure.aligncenter img,
.single-post-layout__content figure.alignnone img,
.single-post-layout__content figure.alignfull img,
.single-post-layout__content figure.alignwide img,
.single-post-layout__content figure.wp-caption:not(.alignleft):not(.alignright) img,
.single-post-layout__content figure.wp-block-image:not(.alignleft):not(.alignright) img,
.single-post-layout__content > img,
.single-post-layout__content > p > img,
.single-post-layout__content img.aligncenter,
.single-post-layout__content img.alignnone,
.single-post-layout__content img.alignfull,
.single-post-layout__content img.alignwide,
.entry-content figure.aligncenter img,
.entry-content figure.alignnone img,
.entry-content figure.alignfull img,
.entry-content figure.alignwide img,
.entry-content figure.wp-caption:not(.alignleft):not(.alignright) img,
.entry-content figure.wp-block-image:not(.alignleft):not(.alignright) img,
.entry-content > img,
.entry-content > p > img,
.entry-content img.aligncenter,
.entry-content img.alignnone,
.entry-content img.alignfull,
.entry-content img.alignwide {
  display: block;
  width: 100%;
  height: auto;
  margin: 24px 0;
}

/* Left / right aligned images — float, text wraps around.
   Outer side flush to column edge; inner side has a gap so text doesn't touch the image. */
.single-post-layout__content .alignleft,
.entry-content .alignleft {
  float: left;
  margin: 8px 24px 16px 0;
  max-width: 50%;
}
.single-post-layout__content .alignright,
.entry-content .alignright {
  float: right;
  margin: 8px 0 16px 24px;
  max-width: 50%;
}
.single-post-layout__content .alignleft img,
.single-post-layout__content .alignright img,
.entry-content .alignleft img,
.entry-content .alignright img {
  display: block;
  width: 100%;
  height: auto;
}
.single-post-layout__content .wp-caption-text,
.entry-content .wp-caption-text {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  text-align: left;
}

/* Responsive 16:9 wrapper for oEmbed video iframes */
.single-post-layout__content .wp-block-embed,
.entry-content .wp-block-embed {
  margin: 24px auto;
}
.single-post-layout__content .wp-block-embed__wrapper,
.entry-content .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.single-post-layout__content .wp-block-embed__wrapper iframe,
.entry-content .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Bare iframes (oEmbed in a <p>) — make them responsive 16:9 full-width */
.single-post-layout__content > p > iframe,
.single-post-layout__content > iframe,
.entry-content > p > iframe,
.entry-content > iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  margin: 24px auto;
}

/* Post content typography — consistent vertical rhythm */
.single-post-layout__content p,
.entry-content p {
  margin: 0 0 18px;
}
.single-post-layout__content h2,
.entry-content h2 {
  margin: 48px 0 18px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  font-weight: 700;
}
.single-post-layout__content h3,
.entry-content h3 {
  margin: 36px 0 14px;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
  font-weight: 700;
}
.single-post-layout__content h4,
.entry-content h4 {
  margin: 28px 0 12px;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.35;
  font-weight: 700;
}
.single-post-layout__content ul,
.single-post-layout__content ol,
.entry-content ul,
.entry-content ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.single-post-layout__content ul li,
.single-post-layout__content ol li,
.entry-content ul li,
.entry-content ol li {
  margin: 0 0 8px;
}
.single-post-layout__content ul li:last-child,
.single-post-layout__content ol li:last-child,
.entry-content ul li:last-child,
.entry-content ol li:last-child {
  margin-bottom: 0;
}
.single-post-layout__content > *:first-child,
.entry-content > *:first-child {
  margin-top: 0;
}
.single-post-layout__content > *:last-child,
.entry-content > *:last-child {
  margin-bottom: 0;
}

/* Blockquote — classic pulled-quote style */
.single-post-layout__content blockquote,
.entry-content blockquote {
  position: relative;
  margin: 32px 0;
  padding: 16px 16px 16px 64px;
  border-left: 3px solid #013a57;
  font-style: italic;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.5;
  color: #333;
}
.single-post-layout__content blockquote::before,
.entry-content blockquote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-size: 64px;
  line-height: 1;
  color: #013a57;
  opacity: 0.4;
  pointer-events: none;
}
.single-post-layout__content blockquote p,
.entry-content blockquote p {
  margin: 0 0 10px;
}
.single-post-layout__content blockquote p:last-child,
.entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.single-post-layout__content blockquote cite,
.entry-content blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 14px;
  color: #666;
}
.single-post-layout__content blockquote cite::before,
.entry-content blockquote cite::before {
  content: "\2014\00a0";
}
/* Iframe Embed Section */
.iframe-embed-section {
  background: #013a57;
  padding: 48px 0 0 0;
  height: 444px;
}

.iframe-embed-section__title {
  margin: 0 auto 40px;
  text-align: center;
  color: #fff;
  font-size: clamp(28px, 3vw, 50px);
  line-height: 1.2;
  font-weight: 700;
  width: 70%;
}

.iframe-embed-section__frame-wrap {
  background: #e6eff4;
  border-radius: 4px;
  padding: 20px;
  margin-top: -220px;
}
.embedd-container {
  padding: 0;
}
.iframe-embed-section__frame-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* Multistep Redirect Section */
.multistep-section.iframe-embed-section {
  height: auto;
  padding: 50px 0 0px 0;
  height: 444px;
}
.multistep-section__panel {
  margin-top: -200px;
  margin-bottom: 40px;
  padding: 48px;
  position: relative;
  z-index: 2;
}
.multistep-section__question {
  margin: 0 0 48px;
  text-align: center;
  color: #1F1F1F;
  font-size: clamp(20px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}

.multistep-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.multistep-section__card {
  flex: 0 1 calc((100% - 32px) / 5);
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding:48px 14px 28px 14px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  color: #013a57;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.multistep-section__card:hover,
.multistep-section__card:focus-visible {
  outline: none;
  box-shadow: 0 6px 18px rgba(1, 58, 87, 0.08);
}
.multistep-section__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
.multistep-section__icon {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  display: block;
}
.multistep-section__label {
  font-size: 18px;
  font-weight: 600;
  color: #005C8B;
}

.multistep-section__card:hover .multistep-section__label {
    border-bottom: 1px solid #005C8B;
}
.multistep-section__arrow {
  width: 20px;
  height: auto;
  display: block;
}

/* Content Media Section */
.content-media-section {
  background: #013a57;
  padding: 60px 0;
}

.content-media-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-media-section--reverse .content-media-section__content {
  order: 2;
}

.content-media-section--reverse .content-media-section__media {
  order: 1;
}

.content-media-section__title {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.content-media-section__description {
  color: #fff;
  margin-bottom: 16px;
}

.content-media-section__description p {
  color: #fff;
  margin: 0 0 12px;
}

.content-media-section__description p:last-child {
  margin-bottom: 0;
}

.content-media-section__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.content-media-section__button-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  object-fit: contain;
  flex: 0 0 18px;
}

.content-media-section__media {
  border-radius: 4px;
  overflow: hidden;
}

.content-media-section__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Locations Links Section */
.eza-locations-links .container {
  padding: 56px 16px;
  border-bottom: 1px solid #cecece;
}

.eza-locations-links__title {
  margin: 0 0 28px;
  color: #1f1f1f;
  text-transform: uppercase;
  font-size: clamp(16px, 2.3vw, 18px);
  line-height: 1.2;
}

.eza-locations-links__columns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 20px;
}

.eza-locations-links__column {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 14px;
}

.eza-locations-links__item {
  margin: 0;
  padding: 0;
}

.eza-locations-links__link {
  color: #005c8b;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.3;
}

/* HEADER */
.site-header {
  width: 100%;
}

.eza-breadcrumbs-wrap {
  background: #fff;
}

.eza-breadcrumbs-wrap--content-media-next {
  background: #013a57;
}

.eza-breadcrumbs {
  padding: 28px 16px;
}

.eza-breadcrumbs .yoast-breadcrumbs,
.eza-breadcrumbs .yoast-breadcrumbs span,
.eza-breadcrumbs .yoast-breadcrumbs a {
  color: #1f1f1f;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  font-family: "Inter";
}

nav.yoast-breadcrumbs span {
  display: flex;
  align-items: center;
}
span.breadcrumb_last {
  color: rgba(31, 31, 31, 0.7) !important;
}
.eza-breadcrumbs .eza-breadcrumb-sep {
  width: 12px;
  height: 12px;
  margin: 0 2px;
  vertical-align: middle;
  display: inline-block;
  background: url("../images/breadcrumb-arrow.svg") center / contain no-repeat;
}

.eza-breadcrumbs-wrap--content-media-next .yoast-breadcrumbs,
.eza-breadcrumbs-wrap--content-media-next .yoast-breadcrumbs span,
.eza-breadcrumbs-wrap--content-media-next .yoast-breadcrumbs a {
  color: #fff;
}

.eza-breadcrumbs-wrap--content-media-next span.breadcrumb_last {
  color: rgba(255, 255, 255, 0.7) !important;
}

.eza-breadcrumbs-wrap--content-media-next .eza-breadcrumb-sep {
  background-image: url("../images/breadcrumb-arrow-white.svg");
}

/* Topbar */
.header-topbar {
  background: #005c8b;
  color: #fff;
}
.header-topbar__inner {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
}
.header-topbar__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.header-topbar__icon img {
  width: 14px;
  height: 14px;
  display: block;
}
.header-topbar__text {
  font-size: clamp(12px, 3vw, 14px);
  line-height: 160%;
  font-family: "Inter";
}

/* Main row */
.header-main {
  background: #fff;
}
.header-main__inner {
  display: grid;
  grid-template-columns: 225px 1fr auto auto;
  gap: 40px;
  align-items: center;
  padding: 10px 16px;
}

.header-logo {
  display: inline-block;
  line-height: 0;
}
.header-logo img {
  height: 70px;
  width: 240px;
  display: block;
}
.header-mobile-controls {
  display: none;
}
.header-mobile-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: #ffba13;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.header-mobile-btn--search {
  background: transparent;
  position: relative;
}
.header-mobile-btn__icon {
  width: 20px;
  height: 20px;
  display: block;
}
.header-mobile-search-lines {
  position: absolute;
  inset: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
}
.header-mobile-btn--search.is-open .header-mobile-btn__icon {
  opacity: 0;
}
.header-mobile-btn--search.is-open .header-mobile-search-lines {
  opacity: 1;
}
.header-mobile-btn--menu {
  flex-direction: column;
  gap: 4px;
}
.header-mobile-btn__line {
  width: 16px;
  height: 1.4px;
  background: #1f1f1f;
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.header-mobile-btn--menu.is-open .header-mobile-btn__line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.header-mobile-btn--menu.is-open .header-mobile-btn__line:nth-child(2) {
  opacity: 0;
}
.header-mobile-btn--menu.is-open .header-mobile-btn__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.header-mobile-btn--search.is-open .header-mobile-btn__line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.header-mobile-btn--search.is-open .header-mobile-btn__line:nth-child(2) {
  opacity: 0;
}
.header-mobile-btn--search.is-open .header-mobile-btn__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.header-mobile-search {
  padding: 0 0 12px;
  background: #fff;
}
.header-mobile-search__inner {
  position: relative;
}
.header-mobile-menu {
  display: none;
  background: #005c8b;
  padding: 12px 0 20px;
}
.header-mobile-menu__panel {
  background: #f5f5f5;
  border-radius: 4px;
}
.header-mobile-menu__cat {
  border-bottom: 1px solid #bfd0d8;
}
.header-mobile-menu__cat:last-child {
  border-bottom: 0;
}
.header-mobile-menu__cat-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.header-mobile-menu__cat-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-mobile-menu__cat-icon img {
  width: 24px;
  height: 24px;
  display: block;
}
.header-mobile-menu__cat-label {
  font-family: "Inter";
  font-size: clamp(14px, 3vw, 18px);
  color: #1f1f1f;
}
.header-mobile-menu__cat-arrow {
  width: 12px;
  height: 12px;
  display: block;
  transition: transform 0.2s ease;
}
.header-mobile-menu__cat.is-open .header-mobile-menu__cat-arrow {
  transform: rotate(180deg);
}
.header-mobile-menu__cat-body {
    padding: 0 0 14px;
    background: #E6EFF4;
    padding: 20px 14px;
}
.header-mobile-menu__cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffba13;
  color: #1f1f1f;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 4px;
  font-family: "Inter";
  font-weight: 600;
  margin: 0 0 10px;
  font-size: clamp(14px, 3vw, 18px);
}
.header-mobile-menu__cat-cta-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
}
.header-mobile-menu__cat-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.header-mobile-menu__cat-links a {
  text-decoration: none;
  color: #005c8b;
  font-family: "Inter";
  font-size: 14px;
  font-family: 600;
}
.header-mobile-menu__bottom {
  padding-top: 16px;
  display: grid;
  gap: 14px;
}
.header-mobile-menu__nav {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-mobile-menu__nav-item + .header-mobile-menu__nav-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.header-mobile-menu__nav-link,
.header-mobile-menu__nav-toggle {
  width: 100%;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  font-family: "Inter";
  font-size: clamp(16px, 3vw, 32px);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header-mobile-menu__nav-arrow {
  width: 12px;
  height: 12px;
  display: block;
  transition: transform 0.2s ease;
}
.header-mobile-menu__nav-item.is-open .header-mobile-menu__nav-arrow {
  transform: rotate(180deg);
}
.header-mobile-menu__nav-body {
  padding: 0 0 12px;
}
.header-mobile-menu__nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.header-mobile-menu__nav-links a {
  color: #b9e1f5;
  text-decoration: none;
  font-family: "Inter";
  font-size: 14px;
}
.header-mobile-menu__phone {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter";
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  justify-self: center;
}
.header-mobile-menu__btn.btn.btn--outline {
  color: #fff;
  border-color: #fff;
  justify-content: center;
}

.header-search__form {
  display: flex;
  align-items: center;
  border: 1px solid #cecece;
  border-radius: 4px;
  overflow: hidden;
  /* max-width: 520px; */
  background: #fff;
  position: relative;
  z-index: 1002;
}
h5.header-phone__text {
  margin: 0;
}
.header-search {
  position: relative;
}
.header-search__input {
  border: 0;
  outline: none;
  padding: 11px 24px;
  width: 100%;
  background: #fff;
  color: #1f1f1f;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.header-search__input:-webkit-autofill,
.header-search__input:-webkit-autofill:hover,
.header-search__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #1f1f1f;
}

input.header-search__input::placeholder {
  color: #656565;
  font-size: 14px;
  line-height: 160%;
  font-family: "Inter", sans-serif;
}

.header-search__icon {
  width: 16px;
  height: 16px;
  display: block;
}

.header-menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header-menu > li {
  position: relative;
  list-style: none;
}
.header-menu > li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 4px;
  background: #ffba13;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.header-menu > li:hover::before,
.header-menu > li:focus-within::before,
.header-menu > li.is-open::before,
.header-menu > li.current-menu-item::before,
.header-menu > li.current-menu-ancestor::before,
.header-menu > li.current_page_item::before {
  opacity: 1;
  transform: scaleX(1);
}
.header-menu > li.header-menu__item--ratgeber > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-menu > li.header-menu__item--ratgeber > a::after {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  display: inline-block;
  background: url("../images/down-arrow-black.svg") center / contain no-repeat;
  transition: transform 0.2s ease;
}
.header-menu > li.header-menu__item--ratgeber.is-open > a::after {
  transform: rotate(180deg);
}
.header-menu .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  z-index: 1000;
}
.header-menu > li:hover > .sub-menu,
.header-menu > li:focus-within > .sub-menu {
  display: block;
}
.header-menu > li.header-menu__item--ratgeber > .sub-menu {
  display: none !important;
}
.header-menu .sub-menu li {
  list-style: none;
}
.header-menu .sub-menu a {
  display: block;
  padding: 8px 14px;
  font-weight: 500;
}
.header-menu a {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 16px;
  font-family: "Inter";
}

.header-actions {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #005c8b;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
}
.header-phone__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.header-actions .btn.btn--outline {
  padding: 14px 18px;
  font-size: 16px;
}
button.header-search__btn {
  background-color: white;
  border: none;
  padding-right: 11px;
}
.header-search__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 380px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1003;
  text-align: left;
}
.header-search__suggestion-heading {
  padding: 14px 25px;
  font-size: 40px;
  font-size: 14px;
  color: #656565;
  font-family: "Inter";
  font-weight: 400;
}
.header-search__suggestion-list {
  display: grid;
}
.header-search__suggestion-item {
  padding: 14px 39px;
  text-decoration: none;
  color: #1f1f1f;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.25;
  font-family: "Inter";
  border-top: 1px solid #f1f1f1;
}
.header-search__suggestion-item.is-highlighted,
.header-search__suggestion-list .header-search__suggestion-item:first-child {
  background: #e6eff4;
}
.header-search__suggestion-item:hover,
.header-search__suggestion-item:focus-visible {
  background: #e6eff4;
  color: #1f1f1f;
}
.header-search__suggestion-empty {
  padding: 16px;
  font-size: 16px;
  color: #5f5f5f;
  font-family: "Inter";
}
/* Icon nav row */
.header-iconnav {
  background: #e6eff4;
  position: relative;
  z-index: 1002;
  overflow: hidden;
}

.header-iconnav__sticky-sentinel {
  height: 0;
}
.header-iconnav__inner {
  position: relative;
  display: block;
  padding: 10px 0;
}

.header-iconnav__track {
  position: relative;
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  padding-right: 60px;
  scrollbar-width: none;
}

.header-iconnav__track::-webkit-scrollbar {
  display: none;
}
.header-iconnav__track.is-compact {
  justify-content: flex-start;
}
.header-iconnav__track.is-dragging {
  cursor: grabbing;
}

.header-iconnav__item {
  flex: 0 0 auto;
  box-sizing: border-box;
  text-decoration: none;
  color: #1f1f1f;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: calc(100% / 9);
  padding: 0 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.header-iconnav__inner::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 64px;
    background: linear-gradient(
  to left,
  #E6EFF4 30%,
  rgba(230, 239, 244, 0) 100%
);
    pointer-events: none;
    z-index: 1;
}


.header-iconnav__item:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.header-iconnav__track.is-compact .header-iconnav__item {
  flex: 1 1 0;
  width: calc(100% / var(--eza-iconnav-columns, 1));
  min-width: 0;
  padding: 0 12px;
}
.header-iconnav__icon img {
  width: 30px;
  height: 30px;
  display: block;
}
.header-iconnav__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #1f1f1f;
  font-family: "Inter";
}

.header-iconnav__arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  background: #fff;
  /* box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08); */
  cursor: pointer;
  display: none; /* JS enables if needed */
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* .header-iconnav__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 88px;
  height: 64px;
  background: linear-gradient(
    to left,
    rgba(230, 239, 244, 0.96) 30%,
    rgba(230, 239, 244, 0)
  );
  pointer-events: none;
  z-index: -1;
} */

.header-iconnav__arrow-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.header-iconnav__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

/* Mega menu */
.header-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 85%;

  z-index: 1301;
}

.header-main {
  position: relative;
} /* makes mega position correct */

.header-main.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--eza-header-main-sticky-top, 0px);
  z-index: 1200;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.header-main__sticky-sentinel {
  height: 0;
}

.header-mega__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 0;
  background: #e6eff4;
  border-radius: 4px;
}

.header-mega__left {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 14px 32px 32px 32px;
}

.header-mega__cat {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #bfced5;
  position: relative;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.header-mega__cat::after {
  content: "";
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff url("../images/right-arrow.svg") center / 18px 18px no-repeat;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.header-mega__cat:hover::after,
.header-mega__cat.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.header-mega__cat-icon img {
  width: 30px;
  height: 30px;
  display: block;
}

.header-mega__cat-label {
  font-family: "Inter";
  font-weight: 400;
  color: #1f1f1f;
  font-size: 14px;
}

.header-mega__all {
  display: inline-flex;
  gap: 8px;
  margin-top: 32px;
  text-decoration: none;
  color: #005c8b;
  font-weight: 600;
  font-size: 18px;
  font-family: "Inter";
}

.header-mega__links {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: grid;
  gap: 12px;
}

.header-mega__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffba13;
  color: #1f1f1f;
  text-decoration: none;
  font-family: "Inter";
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  border-radius: 4px;
  padding: 14px 30px;
  margin: 8px 0 20px;
}
.header-mega__cta-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
  object-fit: contain;
}

.header-mega__links a {
  color: #005c8b;
  text-decoration: none;
  font-weight: 600;
  font-family: "Inter";
  font-size: 18px;
}

/* ===== Mobile ===== */
@media (max-width: 1228px) {
  .hero.hero--main {
    height: 420px;
    min-height: 420px;
  }

  .hero--main .hero__bg-img {
    object-position: top center;
  }

  .hero--main .hero__inner {
    width: calc(100% - 16px);
    transform: translateY(48px);
    bottom:-150px
  }

  .hero--main .hero__content {
    padding: 32px 8px;
    text-align: center;
  }

  .hero--main .hero__subtitle {
    max-width: 40ch;
    padding-bottom: 24px;
  }

  .hero-search__form {
    grid-template-columns: 1fr;
  }

  .hero-search__input {
    min-height: 58px;
    padding-left: 56px;
  }

  .hero-search__btn {
    min-height: 54px;
    width: calc(100% - 16px);
    margin: 8px;
    border-radius: 4px;
  }

  .hero-search__hint {
    left: 14px;
  }

  .hero-search__hint-icon {
    width: 26px;
    flex-basis: 26px;
    height: 26px;
  }

  .hero-search__hint-top {
    font-size: 12px;
  }

  .hero-search__hint-bottom {
    font-size: 20px;
  }

  .hero--main .hero__sticky-media {
    position: static;
    right: auto;
    bottom: auto;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
  }

  .hero--main .hero__sticky-media.is-fixed {
    position: static;
    right: auto;
    bottom: auto;
    z-index: auto;
  }

  .hero--main .hero__sticky-media-image {
    width: clamp(72px, 24vw, 96px);
  }

  .hero__sticky-media.hero__sticky-media--below {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: auto;
    width: 100%;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .about-stats__feature-title {
    margin: 0 0 10px;
  }

  .partner-cta__img-item {
    min-height: 150px;
  }

  .about-stats {
    padding: 60px 0;
  }
  .about-stats__title {
    margin: 0 0 20px;
  }

  .about-stats__media {
    justify-content: flex-start;
  }

  .about-stats__image {
    max-width: 100%;
  }

  .about-stats__counters {
    grid-template-columns: 1fr;
  }

  .about-stats__counter:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
  }

  .eza-testimonials {
    padding: 28px 0;
  }

  .eza-categories {
    padding: 30px 0;
  }

  .eza-categories__wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .eza-categories__nav {
    display: none;
  }

  .eza-categories__card-title {
    font-size: 18px;
  }

  .eza-categories--is-static .eza-categories__swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .eza-categories--is-static[data-count="1"] .eza-categories__swiper-wrapper {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .eza-categories--is-static[data-count="1"] .eza-categories__media {
    aspect-ratio: 4 / 3;
  }

  .eza-categories--is-slider .eza-categories__swipe-hint {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .eza-categories--is-slider .eza-categories__swipe-hint img {
    width: 36px;
    height: auto;
    display: block;
  }

  .eza-info-cards {
    padding: 28px 0;
  }

  .eza-info-cards__grid--count-1,
  .eza-info-cards__grid--count-2,
  .eza-info-cards__grid--count-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .eza-info-cards__card {
    padding: 20px 14px;
  }

  /* .eza-info-cards__badge {
    font-size: 16px;
    padding: 7px 34px 7px 12px;
  } */

  .eza-downloads {
    padding: 60px 0;
  }

  .eza-downloads__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .eza-downloads__eyebrow {
    margin-bottom: 14px;
  }

  .eza-downloads__card {
    min-height: 44px;
    padding: 21px 16px;
  }

  .eza-benefits-strip__list {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px 0px;
  }
  .eza-benefits-strip .container {
    padding: 0 16px;
  }
  .eza-benefits-strip__item {
    justify-content: flex-start;
  }

  .eza-benefits-strip__icon {
    width: 30px;
    height: 30px;
  }

  .eza-testimonials__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .partner-cta__images {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-cta__img-item--5 {
    display: none;
  }

  .partner-cta__img-item {
    min-height: 140px;
  }

  .partner-cta__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 16px;
    gap: 16px;
  }

  .partner-cta__content {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-cta__action {
    width: 100%;
  }

  .partner-cta__action .btn {
    width: 100%;
    text-align: center;
  }
  .partner-cta__img-item {
    min-height: 120px;
  }

  .partner-cta__icon-wrap,
  .partner-cta__icon {
    width: 80px;
    height: 80px;
  }

  .glossaries__search {
    flex-direction: column;
    align-items: stretch;
  }

  .glossaries__search-input,
  .glossaries__search-btn {
    font-size: 16px;
    line-height: 1.2;
  }
  .glossaries__search-input,
  .glossaries__search-btn {
    height: 30px;
  }
  .glossaries__search-btn {
    padding: 0 10px;
  }
  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner__action,
  .cta-banner__button {
    width: 100%;
  }

  /*steps*/
  .steps {
    padding: 60px 0;
  }
  .steps__header,
  .gp-title {
    margin-bottom: 20px;
  }
  .steps__card {
    padding: 32px 14px;
  }
  .steps__icon {
    width: 80px;
    height: 80px;
  }
  .steps__cta {
    padding: 20px 14px;
    flex-direction: column;
    align-items: start;
  }
  .steps__cta-content {
    width: 100%;
  }

  /*testimonials*/
  .eza-testimonials__title,
  .eza-testimonials__stars,
  .eza-testimonials__text {
    margin: 0 0 20px;
  }
  .eza-testimonials__card {
    padding: 32px 14px;
  }
  .eza-testimonials--is-slider .eza-testimonials__swipe-hint {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .eza-testimonials--is-slider .eza-testimonials__swipe-hint img {
    width: 36px;
    height: auto;
    display: block;
    margin-top: 20px;
  }
  .articles-teaser {
    padding: 40px 0;
  }

  .eza-testimonials__nav {
    display: none;
  }
  .articles-teaser__img {
    height: 174px;
  }
  .articles-teaser__inner a.btn.btn--outline,
  .gp-footer a.btn.btn--outline {
    display: block;
    width: 100%;
    text-align: center;
  }

  .articles-teaser--swipe-mobile .articles-teaser__grid {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .articles-teaser--swipe-mobile .articles-teaser__grid::-webkit-scrollbar {
    display: none;
  }

  .articles-teaser--swipe-mobile .articles-teaser__card {
    flex: 0 0 calc((100% - 12px) / 1.2);
    scroll-snap-align: start;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .articles-teaser--swipe-mobile .articles-teaser__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }

  .articles-teaser--swipe-mobile
    .articles-teaser__grid
    > .articles-teaser__card:only-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .articles-teaser--swipe-mobile .articles-teaser__swipe-hint {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .articles-teaser--swipe-mobile .articles-teaser__swipe-hint img {
    width: 36px;
    height: auto;
    display: block;
  }

  .post-cta-inline {
    grid-template-columns: 1fr;
  }

  .post-cta-inline__content {
    padding: 22px;
  }

  .single-post-layout__related .articles-teaser__grid,
  .single-post-layout__latest .articles-teaser__grid {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .single-post-layout__related .articles-teaser__grid::-webkit-scrollbar,
  .single-post-layout__latest .articles-teaser__grid::-webkit-scrollbar {
    display: none;
  }

  .single-post-layout__related .articles-teaser__card,
  .single-post-layout__latest .articles-teaser__card {
    flex: 0 0 calc((100% - 12px) / 1.2);
    scroll-snap-align: start;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .single-post-layout__related .articles-teaser__body,
  .single-post-layout__latest .articles-teaser__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
  }

  .single-post-layout__related
    .articles-teaser__grid
    > .articles-teaser__card:only-child,
  .single-post-layout__latest
    .articles-teaser__grid
    > .articles-teaser__card:only-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single-post-layout__related .articles-teaser__body,
  .single-post-layout__latest .articles-teaser__body {
    padding-top: 14px;
  }

  .single-post-layout__related .articles-teaser__excerpt,
  .single-post-layout__latest .articles-teaser__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }

  .single-post-layout__related .articles-teaser__swipe-hint,
  .single-post-layout__latest .articles-teaser__swipe-hint {
    margin-top: 12px;
    display: flex;
    justify-content: center;
  }

  .single-post-layout__related .articles-teaser__swipe-hint img,
  .single-post-layout__latest .articles-teaser__swipe-hint img {
    width: 26px;
    height: auto;
    display: block;
  }

  /*glossaries preview*/
  .gp-grid {
    grid-template-columns: 1fr;
  }

  .gp-letters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 24px 0 32px;
    padding: 16px 8px  16px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .gp-letters::-webkit-scrollbar {
    display: none;
  }

  .gp-letter {
    flex: 0 0 auto;
  }

  /* Mobile: all content images full-width, no floats, no horizontal margins.
     Scoped to direct content images + aligned images so component icons
     (inline-card arrows, FAQ icons, post-cta media) aren't affected. */
  .single-post-layout__content .alignleft,
  .single-post-layout__content .alignright,
  .single-post-layout__content .alignnone,
  .single-post-layout__content .aligncenter,
  .single-post-layout__content .alignwide,
  .single-post-layout__content .alignfull,
  .single-post-layout__content > img,
  .single-post-layout__content > p > img,
  .single-post-layout__content > figure,
  .single-post-layout__content > figure img,
  .entry-content .alignleft,
  .entry-content .alignright,
  .entry-content .alignnone,
  .entry-content .aligncenter,
  .entry-content .alignwide,
  .entry-content .alignfull,
  .entry-content > img,
  .entry-content > p > img,
  .entry-content > figure,
  .entry-content > figure img {
    float: none;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .gp-footer {
    padding: 0 16px;
    margin-top: 20px;
  }
  .glossar-preview {
    padding: 30px 0;
  }
  /*CTA BANNER*/
  .cta-banner {
    padding: 40px 0;
  }
  a.btn.btn--primary {
    display: block;
    text-align: center;
    width: 100%;
  }
  /*FAQ*/
  .faq-section {
    padding: 60px 0;
  }
  .faq-accordion,
  .faq-cta {
    margin-top: 20px;
  }
  .faq-question {
    padding: 10px 14px;
  }
  .faq-answer__inner {
    padding: 0 14px 10px 14px;
  }

  /*footer*/
  .footer-bar__brand,
  .footer-bar,
  .footer-bar__actions {
    flex-direction: column;
  }

  .footer-bar,
  .footer-bar__actions {
    gap: 20px;
  }
  .footer-bar__actions {
    width: 100%;
  }
  .footer-bar__actions .btn.btn--primary {
    width: 100%;
  }
  a.footer-bar__phone h4 {
    margin: 0px;
  }
  .footer-bar__text {
    padding: 20px 0 0 0;
    border: none;
    text-align: center;
    border-top: 1px solid #005c8b;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-col__title {
    margin-bottom: 14px;
  }
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bar,
  .site-footer__main {
    padding: 20px 0;
  }
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  .back-to-top__icon {
    font-size: 24px;
  }
  /*glossaries search*/
  .search-container {
    width: 100%;
    justify-content: space-between;
  }
  .glossaries {
    padding: 40px 16px;
  }
  .glossaries__group {
    padding: 0px;
    margin-top: 20px;
  }
  button.glossaries__search-btn span {
    display: none;
  }
  .glossaries__search-input,
  .glossaries__search-btn {
    width: initial;
    min-width: 0;
  }
  .text-module__content {
    max-width: 100%;
    padding: 30px 0;
  }

  .entry-content table tbody td,
  .single-post-layout__content table tbody td {
    padding: 10px 0;
    font-size: 14px;
  }
  .entry-content table thead th,
  .single-post-layout__content table thead th {
    padding: 10px 0;
  }
  .iframe-embed-section {
    --iframe-overlap: 48px;
    padding: 28px 0 var(--iframe-overlap);
    margin-bottom: var(--iframe-overlap);
  }
  .iframe-embed-section__title {
    margin-bottom: 20px;
  }
  .iframe-embed-section__frame-wrap {
    padding: 10px;
    margin-bottom: calc(-1 * var(--iframe-overlap));
  }
  .iframe-embed-section__frame-wrap iframe {
    min-height: 300px;
  }
  .multistep-section__panel {
    padding: 20px 14px;
  }
  .multistep-section__card {
    flex: 0 1 calc((100% - 8px) / 2);
    min-width: 0;
    padding: 18px 10px;
  }
  .glossaries__chips {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
    scroll-snap-type: x proximity;
    max-width: 100%;
  }
  .glossaries__chips::-webkit-scrollbar {
    display: none;
  }
  .glossaries__chips .articles-teaser__chip {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .content-media-section {
    padding: 40px 0;
  }
  .content-media-section__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .content-media-section--reverse .content-media-section__content,
  .content-media-section--reverse .content-media-section__media {
    order: initial;
  }

  .eza-categories__text,
  .eza-categories__title {
    margin-bottom: 20px;
  }

  .entry-content .eza-note-box,
  .single-post-layout__content .eza-note-box {
    padding: 20px 14px 20px 14px;
  }
  .entry-content .eza-note-box .eza-info-cards__badge-wrap,
  .single-post-layout__content .eza-note-box .eza-info-cards__badge-wrap {
    margin-bottom: 20px;
  }
  .inline-card {
    grid-template-columns: 1fr;
  }
  .inline-info {
    width: 100%;
    padding: 20px 14px;
    border-width: 0px 6px 6px 6px;
  }
  .inline-thumb img {
    height: 218px;
  }
  .entry-content table,
  .single-post-layout__content table {
    padding: 10px 14px;
  }

  .entry-content .eza-table-scroll.eza-table-scroll--mobile,
  .single-post-layout__content .eza-table-scroll.eza-table-scroll--mobile {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*HEADER*/
  .header-main__inner {
    grid-template-columns: 1fr auto auto;
    gap: 24px;
  }
  .header-logo img {
    width: 123px;
    height: auto;
    max-height: 56px;
  }
  .header-mobile-controls {
    display: contents;
  }
  .header-search,
  .header-nav,
  .header-actions {
    display: none;
  }
  .header-search__form {
    max-width: 100%;
  }
  .header-topbar__inner {
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }
  .header-topbar__inner::-webkit-scrollbar {
    display: none;
  }
  .header-topbar__inner.is-dragging {
    cursor: grabbing;
  }
  .header-topbar__item {
    flex: 0 0 auto;
  }
  .header-topbar__item:not(:first-child) {
    display: none;
  }
  .header-mobile-menu.is-open {
    display: block;
    min-height: 100dvh;
  }
  .site-header:has(.header-main.is-sticky) .header-mobile-menu.is-open {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--eza-header-main-sticky-top, 0px) + var(--eza-header-main-height, 90px));
    bottom: 0;
    z-index: 1199;
    overflow-y: auto;
    min-height: 0;
  }
  .site-header.is-mobile-menu-open .header-iconnav {
    display: none;
  }
  .header-mobile-menu__btn.btn.btn--outline {
    text-align: center;
  }
  .header-iconnav__track {
    justify-content: flex-start;
    gap: 0;
  }
  .header-iconnav__track.is-compact {
    justify-content: flex-start;
  }
  .header-iconnav__track.is-compact .header-iconnav__item {
    flex: 0 0 auto;
    width: auto;
    min-width: auto;
    padding: 0 20px;
  }
  .header-iconnav__item {
    flex: 0 0 auto;
    width: auto;
    min-width: auto;
    padding: 0 20px;
  }
.embedd-container{
  padding:  16px;
}
.multistep-section__panel,.iframe-embed-section__frame-wrap {
 
margin-top: -320px;
}
  .articles-teaser__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .articles-teaser__grid .articles-teaser__img {
    height: 220px;
  }
  .articles-teaser__body {
    padding-top: 20px;
  }
  .content-media-section__button {
    display: block;
    width: 100%;
    text-align: center;
  }
  .eza-locations-links {
    padding: 42px 16px 10px 16px;
  }
  .eza-locations-links .container {
    padding: 0 0 42px 0;
  }
  .eza-locations-links__title {
    margin-bottom: 18px;
  }
  .eza-locations-links__columns {
    grid-template-columns: 1fr;
    column-gap: 16px;
    row-gap: 16px;
  }
  .single-location .text-module__content p {
    width: 100%;
  }
  .single-location .text-module__content{
    padding:40px 0 0 0
  }
  .single-post-layout {
    padding-top: 40px;
  }
  .container.eza-breadcrumbs {
    padding: 10px 16px 0 16px;
  }

  div#ez-toc-container {
    padding: 20px 14px;
  }
  a.header-mobile-menu__cat-cta {
    width: 100%;
}
.hero.hero--main{
  height: 389px;
  margin-bottom: 240px;
}
.about-stats:not(:has(.about-stats__grid)) {
  padding: 20px 0;
}

}




