.section-teaser {
  --teaser-title: #111111;
  --teaser-text: rgba(0, 0, 0, 0.68);
  --teaser-link: #111111;
  --teaser-line: var(--highlight-color, #5AE98B);

  max-width: 640px;
  margin: 120px 0 80px;
}

.section-teaser__title {
  margin: 0 0 20px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--teaser-title);
}

.section-teaser__text {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--teaser-text);
}

.section-teaser__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teaser-link);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.section-teaser__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--teaser-line);
  transition: width 0.25s ease;
}

.section-teaser__arrow {
  transition: transform 0.25s ease;
}

.section-teaser__link:hover::after {
  width: 100%;
}

.section-teaser__link:hover .section-teaser__arrow {
  transform: translateX(4px);
}

/* light theme */
.section-teaser--light {
  --teaser-title: #111111;
  --teaser-text: rgba(0, 0, 0, 0.68);
  --teaser-link: #111111;
}

/* dark theme */
.section-teaser--dark {
  --teaser-title: #ffffff;
  --teaser-text: rgba(255, 255, 255, 0.72);
  --teaser-link: #ffffff;
}