/* SON PRIMITIVOS NO DEBERÍAMOS USARLOS REVISAR PARA CAMBIARLOS POR SEMÁNTICOS SI ES POSIBLE */
/* SON PRIMITIVOS NO DEBERÍAMOS USARLOS REVISAR PARA CAMBIARLOS POR SEMÁNTICOS SI ES POSIBLE */
.cmp-faq-teaser {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  min-width: 320px;
  padding: 0 var(--ds-layout-margin);
  z-index: 0;
}
.cmp-faq-teaser__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-spacing-m-4);
}
.cmp-faq-teaser__item {
  background-color: var(--ds-color-surface-default-subtle);
  padding: var(--ds-spacing-m-1);
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 280px;
}
.cmp-faq-teaser__item--with-image .cmp-faq-teaser__title {
  color: var(--ds-color-text-default);
}
.cmp-faq-teaser__item--with-image .cmp-faq-teaser__image {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.cmp-faq-teaser__item--with-image .cmp-faq-teaser__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ds-color-bg-overlay);
  z-index: 0;
}
.cmp-faq-teaser__item--text-white.cmp-faq-teaser__item--with-image .cmp-faq-teaser__overlay {
  background: var(--ds-color-surface-contrast-subtle);
}
.cmp-faq-teaser__item--text-white.cmp-faq-teaser__item--with-image .cmp-faq-teaser__title {
  color: var(--ds-color-text-default-inverted);
}
.cmp-faq-teaser__item:hover {
  text-decoration: none;
}
@media (min-width: 480px) {
  .cmp-faq-teaser__item {
    height: 290px;
  }
}
@media (min-width: 768px) {
  .cmp-faq-teaser__container {
    grid-template-columns: 1fr 1fr;
  }
  .cmp-faq-teaser__item {
    height: 280px;
  }
  .cmp-faq-teaser__title {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .cmp-faq-teaser__container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--ds-layout-gutter);
  }
  .cmp-faq-teaser__item {
    height: 216px;
  }
}
@media (min-width: 1440px) {
  .cmp-faq-teaser {
    max-width: 1512px;
  }
  .cmp-faq-teaser__item {
    height: 301px;
  }
}
