/* "from Complexity --> to Clarity" banner */
.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: #555555;
}
.banner .light {
  font-weight: 200;
  color: #b0b0b0;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
}
.banner .word-complexity {
  color: #999999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.banner .word-clarity {
  color: #ff7a1a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.arrow {
  position: relative;
  width: 8rem;
  height: 1rem;
  margin: 2rem;
  background: linear-gradient(to right, #888888, #ff7a1a);
  border-radius: 999px;
}
.arrow::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  border-width: 1rem 0 1rem 1.5rem;
  border-style: solid;
  border-color: transparent transparent transparent #ff7a1a;
}
