/* ── SECTION LABEL ──────────────────────────────────────────────── */
.crp-section-label {
  border-top: 3px solid var(--section-color, #C12527);
  padding-top: 10px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.crp-section-label__text {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--section-color, #C12527);
}

.crp-section-label__all {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--section-color, #C12527);
  opacity: 0.75;
  transition: opacity 0.15s;
}

.crp-section-label__all:hover { opacity: 1; }

/* ── BREADCRUMB ─────────────────────────────────────────────────── */
.crp-breadcrumb {
  background: #F5F5F5;
  border-bottom: 1px solid #EEEEEE;
  padding: 8px 40px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.crp-breadcrumb__link {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C12527;
  transition: opacity 0.15s;
}

.crp-breadcrumb__link:hover { opacity: 0.75; }

.crp-breadcrumb__current {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.crp-breadcrumb__sep {
  color: #ccc;
  font-size: 12px;
}

/* ── SCREEN READER ──────────────────────────────────────────────── */
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ── AUTHOR LINKS ───────────────────────────────────────────────── */
.crp-meta-author {
  color: inherit;
}
.crp-meta-author:hover { text-decoration: underline; }

.crp-byline__name:hover,
.crp-author-block__name:hover { text-decoration: underline; }
