@charset "UTF-8";
.dropdowns-with-images {
  --dwi-gap: clamp(24px, 4vw, 56px);
  --dwi-radius: 14px;
  --dwi-border: var(--light-green);
  --dwi-bg: transparent;
  --dwi-text: #2b2b2b;
  /* Make both sides equal width and fill space better */
  --dwi-col: minmax(0, 1fr);
  /* Deck sizing, still responsive but not forcing a huge gap */
  --deck-w: 100%;
  --deck-h: min(520px, 46vw);
  position: relative;
  width: 100%;
  padding: var(--margin-medium);
  /* CENTERED WRAPPER */
}
.dropdowns-with-images__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: var(--dwi-col) var(--dwi-gap) var(--dwi-col);
  grid-template-columns: var(--dwi-col) var(--dwi-col);
  /* equal columns */
  gap: var(--dwi-gap);
  /* THIS is what centers dropdowns against images */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 980px) {
  .dropdowns-with-images__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.dropdowns-with-images {
  /* LEFT */
}
.dropdowns-with-images .dwi__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  /* keep left column centered relative to the deck */
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 980px) {
  .dropdowns-with-images .dwi__left {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
.dropdowns-with-images .dwi__toggle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 2px solid var(--dwi-border);
  border-radius: 10px;
  background: var(--dwi-bg);
  cursor: pointer;
  text-align: left;
}
.dropdowns-with-images .dwi__toggle:focus {
  outline: 3px solid rgba(0, 0, 0, 0.1);
  outline-offset: 2px;
}
.dropdowns-with-images .dwi__title {
  font-weight: 700;
  font-size: 20px;
  color: var(--dwi-border);
  line-height: 1.2;
}
.dropdowns-with-images .dwi__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dwi-border);
  border-bottom: 2px solid var(--dwi-border);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 240ms ease;
  transition: -webkit-transform 240ms ease;
  transition: transform 240ms ease;
  transition: transform 240ms ease, -webkit-transform 240ms ease;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.dropdowns-with-images .dwi__item.is-open .dwi__chev {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.dropdowns-with-images .dwi__panel {
  margin-top: 10px;
  padding-left: 18px;
}
.dropdowns-with-images .dwi__panel-inner p {
  margin: 0;
  color: var(--dwi-text);
  line-height: 1.55;
}
.dropdowns-with-images {
  /* RIGHT */
}
.dropdowns-with-images .dwi__right {
  position: relative;
  /* ensure the deck is centered in its column */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 980px) {
  .dropdowns-with-images .dwi__right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.dropdowns-with-images .dwi__deck {
  position: relative;
  width: var(--deck-w);
  max-width: 680px;
  /* keeps it from getting absurdly wide on huge screens */
  height: var(--deck-h);
}
@media (max-width: 980px) {
  .dropdowns-with-images .dwi__deck {
    max-width: 100%;
    width: 100%;
    height: min(420px, 70vw);
  }
}
.dropdowns-with-images .dwi__card {
  position: absolute;
  inset: 0;
  border-radius: var(--dwi-radius);
  overflow: hidden;
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  /* Staggered stack based on --order */
  -webkit-transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
          transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
  -webkit-transition: -webkit-transform 420ms ease, -webkit-box-shadow 420ms ease;
  transition: -webkit-transform 420ms ease, -webkit-box-shadow 420ms ease;
  transition: transform 420ms ease, box-shadow 420ms ease;
  transition: transform 420ms ease, box-shadow 420ms ease, -webkit-transform 420ms ease, -webkit-box-shadow 420ms ease;
  z-index: calc(100 - var(--order));
  will-change: transform;
}
.dropdowns-with-images .dwi__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dropdowns-with-images .dwi__card.is-active {
  -webkit-box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
          box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}
.dropdowns-with-images {
  /* Featured image panel — replaces the card deck when show_images is off */
}
.dropdowns-with-images .dwi__featured {
  position: relative;
  width: var(--deck-w);
  max-width: 680px;
  height: var(--deck-h);
  border-radius: var(--dwi-radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
          box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}
@media (max-width: 980px) {
  .dropdowns-with-images .dwi__featured {
    max-width: 100%;
    width: 100%;
    height: min(420px, 70vw);
  }
}
.dropdowns-with-images .dwi__featured-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.55)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}
.dropdowns-with-images .dwi__featured-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: clamp(200px, 75%, 420px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  -webkit-filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}
.dropdowns-with-images {
  /* “Reshuffle into the deck” feel */
}
.dropdowns-with-images .dwi__deck.is-shuffling .dwi__card.is-active {
  -webkit-animation: dwi-card-pop 520ms ease both;
          animation: dwi-card-pop 520ms ease both;
}
@-webkit-keyframes dwi-card-pop {
  0% {
    -webkit-transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
            transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
  }
  45% {
    -webkit-transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px - 18px)) rotate(calc(var(--order) * 0.7deg - 1deg)) scale(1.02);
            transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px - 18px)) rotate(calc(var(--order) * 0.7deg - 1deg)) scale(1.02);
  }
  100% {
    -webkit-transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
            transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
  }
}
@keyframes dwi-card-pop {
  0% {
    -webkit-transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
            transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
  }
  45% {
    -webkit-transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px - 18px)) rotate(calc(var(--order) * 0.7deg - 1deg)) scale(1.02);
            transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px - 18px)) rotate(calc(var(--order) * 0.7deg - 1deg)) scale(1.02);
  }
  100% {
    -webkit-transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
            transform: translate(calc(var(--order) * 14px), calc(var(--order) * 10px)) rotate(calc(var(--order) * 0.7deg));
  }
}

@media (max-width: 768px) {
  .dropdowns-with-images {
    padding-left: var(--margin-small);
    padding-right: var(--margin-small);
  }
}