/* RentGuarantor CSS: faq-options.css (source: src/assets/scss/_faq-options.scss) */
.faq-options {
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  .faq-options {
    padding: 36px 0;
    margin-bottom: 30px !important;
  }
}

.faq-options__header {
  margin-bottom: 36px;
  max-width: 887px;
}
@media (max-width: 991.98px) {
  .faq-options__header h2 {
    font-size: var(--font-size-l);
    line-height: var(--line-height-l);
    margin-bottom: 16px;
  }
  .faq-options__header p {
    font-size: 16px;
    line-height: 23px;
  }
}

.faq-options__card {
  position: relative;
  height: 447px;
  padding: 36px 24px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.faq-options__card:hover [data-element=card-button] {
  color: var(--text-headings-invert);
  background-color: var(--bs-btn-bg);
  border-color: var(--button-primary-hover);
  scale: 1.05;
}
.faq-options__card:hover [data-element=card-button] > span.hover-fill::before {
  top: 60%;
}
.faq-options__card:hover [data-element=card-button] > span.hover-fill::before {
  width: 110%;
  height: 110%;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .faq-options__card {
    height: auto;
    min-height: 340px;
    padding: 24px 20px;
  }
}
.faq-options__card[data-variant=tenants] {
  background-color: var(--surface-general-secondary);
}
.faq-options__card[data-variant=tenants] .faq-options__card-stripe {
  background: linear-gradient(152deg, transparent 46.5%, var(--surface-general-tertiary) 46.5%);
}
.faq-options__card[data-variant=landlords] {
  background-color: var(--surface-landlord-highlight);
}
.faq-options__card[data-variant=landlords] .faq-options__card-stripe {
  background: linear-gradient(152deg, transparent 46.5%, var(--surface-landlord-secondary) 46.5%);
}
.faq-options__card[data-variant=students] {
  background-color: var(--surface-students-primary);
}
.faq-options__card[data-variant=students] .faq-options__card-stripe {
  background: linear-gradient(152deg, transparent 46.5%, var(--surface-students-secondary) 46.5%);
}

.faq-options__card-stripe {
  position: absolute;
  top: 25%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(152deg, transparent 46.5%, var(--color-light-blue-100) 46.5%);
  pointer-events: none;
  z-index: 1;
}

.faq-options__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .faq-options__card-content {
    gap: 16px;
  }
}
.faq-options__card-content h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
}

.faq-options__card-illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 302px;
  height: 346px;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .faq-options__card-illustration {
    width: 60%;
  }
}

.faq-options__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.faq-options__swiper {
  overflow: visible !important;
  padding-bottom: 32px;
}
.faq-options__swiper .swiper-wrapper {
  padding-right: 24px;
}
.faq-options__swiper .swiper-slide {
  height: auto;
  display: flex;
}
.faq-options__swiper .swiper-slide > * {
  width: 100%;
}

.faq-options__pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  bottom: -50px !important;
}
.faq-options__pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  gap: 8px;
  background: var(--color-light-blue-200);
  opacity: 1;
  transition: background-color 0.3s ease;
}
.faq-options__pagination .swiper-pagination-bullet-active {
  background: var(--button-primary-default);
}