.contact-teaser {
  padding: 2rem 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.contact-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 7rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-teaser__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3e8fff;
  margin-bottom: 1.2rem;
}
.contact-teaser__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #3e8fff;
  opacity: 0.6;
  flex-shrink: 0;
}
.contact-teaser__title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f0ede8;
  margin-bottom: 1.2rem;
}
.contact-teaser__title em {
  font-style: italic;
  font-weight: 400;
  color: #3e8fff;
}
.contact-teaser__desc {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(240, 237, 232, 0.5);
}
.contact-teaser__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}
.contact-teaser__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding-left 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
}
.contact-teaser__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.contact-teaser__item:hover {
  padding-left: 0.75rem;
}
.contact-teaser__item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62, 143, 255, 0.07);
  border: 1px solid rgba(62, 143, 255, 0.15);
  border-radius: 8px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.contact-teaser__item:hover .contact-teaser__item-icon {
  background: rgba(62, 143, 255, 0.13);
  border-color: rgba(62, 143, 255, 0.3);
}
.contact-teaser__item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #f0ede8;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
.contact-teaser__item:hover .contact-teaser__item-title {
  color: #fff;
}
.contact-teaser__item-text {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(240, 237, 232, 0.42);
  transition: color 0.25s ease;
}
.contact-teaser__item:hover .contact-teaser__item-text {
  color: rgba(240, 237, 232, 0.6);
}
@media (max-width: 860px) {
  .contact-teaser__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
    .contact-teaser {
        padding: 0;
    }
    .contact-teaser__item:hover {
        padding-left: 0;
    }
    .page-id-1008 .inside-article {
      padding: 1rem;
    }
    .page-id-1008 .wp-block-group__inner-container {
        padding: 0 !important;
    }
    .page-id-1008 .wpforms-submit-container {
        text-align: center;
    }
    .page-id-1008 .wpforms-submit {
        width: 100%;
        border-radius: 1rem;
    }
}
@media (prefers-reduced-motion: reduce) {
  .contact-teaser__item,
  .contact-teaser__item-icon,
  .contact-teaser__item-title,
  .contact-teaser__item-text {
    transition: none;
  }
}