  .rainbow-strip {
    margin: 60px 0 0;
    display: flex;
    height: 6px;
  }

  .rainbow-strip span {
    flex: 1;
  }

  /* SECTION */
section {
  margin: 0;
  padding: 80px clamp(16px, 4vw, 60px);
}

  .section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 12px;
    width: fit-content;
  }

  .section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--c-orange);
  }

  .section-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--c-dark);
    line-height: 1.1;
    margin-bottom: 64px;
  }