/* Sections module — section links with monochrome brand-orange glyphs.
   Shared by the home sidebar and rails (e.g. the Roster Center). */
.ob-home-card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--ob-radius);
  padding: 0.75rem;
}

.ob-home-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-2);
}

.ob-home-sections ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ob-home-sections a {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) 0;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-heading-color);
  transition: color 0.15s ease;
}

.ob-home-sections__icon {
  flex: none;
  width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-primary-color); /* abstract glyphs in brand orange */
}

.ob-home-sections__icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.ob-home-sections a:hover {
  color: var(--site-primary-color);
}
