/* Font families loaded via <link> in HTML for performance */

/* Section label (small cyan uppercase text) */
.label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .8rem;
}

/* Section heading */
.heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: .8rem;
}

/* Section description */
.desc {
  font-size: .95rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

.desc a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 200, 212, .3);
  transition: border-color var(--transition-fast);
}

.desc a:hover {
  border-color: var(--cyan);
}
