.vertical-listicle {
  position: relative;
}
.vertical-listicle .component .container {
  min-height: 350px;
}
.vertical-listicle .component__header {
  text-align: center;
}
.vertical-listicle .component__header .component__title {
  margin-bottom: 16px;
}
.vertical-listicle .component__listicles {
  margin-top: 48px;
}
.vertical-listicle .component__listicle-title {
  display: flex;
  align-items: center;
  text-align: start;
  width: 100%;
  padding: 24px 8px;
}
.vertical-listicle .component__listicle-title .component__listicle-title-text {
  flex: 1 1 auto;
  text-align: start;
  margin-right: 24px;
}
.vertical-listicle .component__listicle-title svg {
  flex: 0 0 20px;
  margin-inline-start: auto;
  margin-left: auto;
  transition: transform .2s ease;
}
.vertical-listicle .component__listicle-title[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.vertical-listicle .component__listicle-content {
  margin-top: 8px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 24px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease;
  will-change: grid-template-rows;
}
.vertical-listicle .component__listicle-content > .component__listicle-inner {
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .2s ease, transform .2s ease;
  will-change: opacity, transform;
  overflow: hidden;
}
.vertical-listicle .component__listicle-title[aria-expanded="true"] + .vertical-listicle .component__listicle-content {
  grid-template-rows: 1fr;
}
.vertical-listicle .component__listicle-title[aria-expanded="true"] + .vertical-listicle .component__listicle-content > .component__listicle-inner {
  opacity: 1;
  transform: translateY(0);
}
.vertical-listicle .component__listicle-content[hidden] {
  display: none;
}
.vertical-listicle .component__listicle-links {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.vertical-listicle .component__textLink {
  gap: 8px;
}
.vertical-listicle .component__image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
}
.vertical-listicle .component__image-stage .component__stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  will-change: opacity;
}
.vertical-listicle .component__image-stage .component__stage-image.is-active {
  opacity: 1;
  pointer-events: auto;
}
.vertical-listicle .component__background.white {
  background-color: #ffffff;
}
.vertical-listicle .component__background.white * {
  color: #003652;
}
.vertical-listicle .component__background:not(.white) .component__listicle-title svg {
  fill: #ffffff;
}
.vertical-listicle .component__background.darkblue {
  background-color: #003652;
}
.vertical-listicle .component__background.darkteal {
  background-color: #01444c;
}
.vertical-listicle .component__background.darkblue *,
.vertical-listicle .component__background.darkteal * {
  color: #ffffff;
}
.vertical-listicle .component__background.darkblue .component__listicle-title:focus,
.vertical-listicle .component__background.darkteal .component__listicle-title:focus,
.vertical-listicle .component__background.darkblue .component__textLink:focus,
.vertical-listicle .component__background.darkteal .component__textLink:focus {
  outline-color: #ffffff;
}
@media screen and (max-width: 1023px) {
  .vertical-listicle .component .container {
    min-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .vertical-listicle .component .container {
    min-height: 280px;
  }
  .vertical-listicle .component__listicles .row {
    display: flex;
    flex-wrap: wrap;
  }
  .vertical-listicle .component__listicles.textLeft .row > .col-12.col-sm-6:first-child {
    order: 2;
  }
  .vertical-listicle .component__listicles.textLeft .row > .col-12.col-sm-6:last-child {
    order: 1;
  }
  .vertical-listicle .component__image-stage {
    margin-bottom: 32px;
  }
}
body[dir="rtl"] .vertical-listicle.component:not(.custom) {
  transform: scaleX(-1);
}
body[dir="rtl"] .vertical-listicle.component:not(.custom) > .container {
  transform: scaleX(-1);
}
body[dir="rtl"] .vertical-listicle .component__listicle-title-text {
  margin-left: 24px;
  margin-right: initial;
}
