/* English section captions echo the teal-to-blue cooperative logo. */
main .section-label, main .section-eyebrow {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 12px;
  color: #007c87;
  font-size: clamp(.85rem, 1.15vw, 1rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .09em;
  overflow-wrap: normal;
}
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  main .section-label, main .section-eyebrow {
    background: linear-gradient(105deg, #008d91 0%, #007eae 52%, #0755a2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  main .participation-label {
    background-image: linear-gradient(105deg, #69ddd0, #83c9ff);
  }
}
main .poster-label { font-size: .75rem; letter-spacing: .055em; }
@media (max-width: 760px) {
  .poster-sidebar .poster-label { flex-basis: 100%; margin-bottom: -8px; }
}
@media (forced-colors: active) {
  main .section-label, main .section-eyebrow { background: none; color: CanvasText; }
}