.oh-section-intro {
  position: relative;
  margin: clamp(64px, 8vw, 128px) clamp(24px, 8vw, 158px);
  background: #f4f7ff;
  border-radius: 36px;
  display: block;
}

.oh-section-intro__inner {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
}

.oh-section-intro__content {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
  max-width: min(920px, 100%);
  margin: 0 auto;
}

.oh-section-intro__content--split {
  text-align: center;
  margin: 0;
}

.oh-section-intro__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.15;
  color: #050022;
}

.oh-section-intro__subtitle {
  margin: 0;
  color: rgba(5, 0, 34, 0.7);
}

.oh-section-intro__body {
  margin: 0;
  color: rgba(5, 0, 34, 0.85);
  display: grid;
  gap: 0.85rem;
}

.oh-section-intro__body p {
  margin: 0;
}

.oh-section-intro__ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 24px);
  flex-wrap: wrap;
}

.oh-section-intro__cta {
  text-align: center;
}

.oh-section-intro__split {
  display: grid;
  gap: clamp(16px, 2.5vw, 32px);
  align-content: start;
}

.oh-section-intro__media {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  min-height: 240px;
  box-shadow: 0 32px 60px -36px rgba(5, 0, 34, 0.3);
}

.oh-section-intro__media-image,
.oh-section-intro__media-video {
  width: 100%;
  height: 100%;
}

.oh-section-intro__media-img,
.oh-section-intro__video,
.oh-section-intro__iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-section-intro__video {
  background: #000;
}

.oh-section-intro__iframe {
  border: 0;
  aspect-ratio: 16 / 9;
}

.oh-section-intro__cards {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
}

.oh-section-intro__card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 10px;
  background: #ffffff;
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  color: #050022;
  box-shadow: 0 24px 48px -32px rgba(5, 0, 34, 0.18);
  height: 100%;
}

.oh-section-intro__card-badge {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(5, 0, 34, 0.55);
}

.oh-section-intro__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.oh-section-intro__card-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.oh-section-intro__card-subtitle {
  margin: 0;
  color: rgba(5, 0, 34, 0.7);
  font-weight: 600;
}

.oh-section-intro__card-description {
  margin: 0;
  color: rgba(5, 0, 34, 0.75);
}

.oh-section-intro__slider {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.oh-section-intro__slider .oh-slider {
  width: 100%;
}

.oh-btn--ghost {
  background: transparent;
  border: 1px solid rgba(18, 50, 158, 0.25);
  color: #12329e;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.oh-btn--ghost:hover,
.oh-btn--ghost:focus-visible {
  background: rgba(18, 50, 158, 0.1);
  border-color: rgba(18, 50, 158, 0.4);
  color: #0b1f65;
}

@media (min-width: 768px) {
  .oh-section-intro__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .oh-section-intro__inner {
    gap: clamp(32px, 4vw, 64px);
  }

  .oh-section-intro__content--split {
    text-align: left;
  }

  .oh-section-intro--fifty_fifty .oh-section-intro__ctas {
    grid-column: 1 / -1;
    justify-content: center;
    justify-self: center;
    width: 100%;
    max-width: 100%;
    order: 3;
    margin-top: clamp(16px, 4vw, 32px);
  }

  .oh-section-intro--fifty_fifty .oh-section-intro__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .oh-section-intro--media-left .oh-section-intro__split {
    order: 2;
  }

  .oh-section-intro--media-left .oh-section-intro__media {
    order: 1;
  }

  .oh-section-intro--media-right .oh-section-intro__split {
    order: 1;
  }

  .oh-section-intro--media-right .oh-section-intro__media {
    order: 2;
  }
}

@media (min-width: 1280px) {
  .oh-section-intro__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .oh-section-intro {
    margin: clamp(48px, 10vw, 72px) clamp(16px, 6vw, 32px);
    /* padding: clamp(32px, 8vw, 56px); */
  }

  .oh-section-intro__media {
    min-height: 200px;
  }

  .oh-section-intro__slider.swiper {
    padding-inline-end: clamp(28px, 10vw, 64px);
  }
}
