.faq-with-image-section .faq-section-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  column-gap: var(--grid-gap-large);
}
.faq-with-image-section .faq-section-content.right_image {
  flex-direction: row-reverse;
}

.faq-with-image-section .image-section {
  position: relative;
  width: 30%;
  border-radius: var(--card-radius);
  overflow: hidden;
}
.faq-with-image-section .image-section img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-with-image-section .image-opacity,
.faq-with-image-section .image-blur {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.faq-with-image-section .image-text {
  position: relative;
  z-index: 3;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  row-gap: var(--grid-gap-medium);
  padding: var(--card-space-small);
  color: var(--text-color);
}
.faq-with-image-section .image-text[class*='-center'],
.faq-with-image-section .image-text.center {
  text-align: center;
}
.faq-with-image-section .image-text[class*='-right'] {
  text-align: end;
}
.faq-with-image-section .image-text[class*='bottom-'] {
  justify-content: flex-end;
}
.faq-with-image-section .image-text[class*='center-'],
.faq-with-image-section .image-text.center {
  justify-content: center;
}
.faq-with-image-section .image-text[class*='-left'] .button-list {
  justify-content: flex-start;
}
.faq-with-image-section .image-text[class*='-center'] .button-list,
.faq-with-image-section .image-text.center .button-list {
  justify-content: center;
}
.faq-with-image-section .image-text[class*='-right'] .button-list {
  justify-content: flex-end;
}

.faq-with-image-section .faq-list {
  flex: 1;
  row-gap: var(--card-space-small);
}
.faq-with-image-section .faq-item {
  padding: var(--card-space-small) var(--card-space-medium);
  border-radius: var(--card-radius);
}
.faq-with-image-section .faq-item:hover,
.faq-with-image-section .faq-item.active {
  background-color: #dadada40;
}

@media (max-width: 992px) {
  .faq-with-image-section .image-section {
    width: 100%;
  }
  .faq-with-image-section .image-section img {
    aspect-ratio: 4/3 !important;
  }
  .faq-with-image-section .image-text {
    min-height: 70vw;
  }
  .faq-with-image-section .faq-section-content {
    flex-direction: column-reverse !important;
    align-items: normal;
    row-gap: 40px;
  }
}

@media (max-width: 767px) {
  .faq-with-image-section .faq-list {
    row-gap: 0;
  }
  .faq-with-image-section .faq-section-content {
    row-gap: 24px;
  }
}