/* Editorial panel only. Existing brand tokens have fallbacks for legacy pages. */
.se-preferred-source {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: center;
  gap: 24px;
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 36px auto 48px;
  padding: 28px;
  border: 1px solid var(--border, #ece7e1);
  border-left: 4px solid var(--maroon, #7b2337);
  border-radius: 12px;
  background: var(--cream, #faf8f5);
  color: var(--text-soft, #4a4a4a);
  font-family: var(--sans, Inter, Arial, sans-serif);
}
.se-preferred-source h2 {
  margin: 0 0 10px;
  color: var(--maroon, #7b2337);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
  text-transform: none;
}
.se-preferred-source p { margin: 0; color: #4a4a4a; font-size: 1rem; line-height: 1.6; }
.se-preferred-source__actions { display: grid; gap: 12px; min-width: 0; }
.se-preferred-source__widget { max-width: 100%; }
.se-preferred-source__fallback {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--maroon, #7b2337);
  border-radius: 6px;
  background: transparent;
  color: var(--maroon, #7b2337);
  font-size: .875rem;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.se-preferred-source__fallback:hover { background: #f0e8e3; }
.se-preferred-source__fallback:focus-visible {
  outline: 3px solid var(--maroon, #7b2337);
  outline-offset: 3px;
}
@media (max-width: 680px) {
  .se-preferred-source { grid-template-columns: minmax(0, 1fr); width: calc(100% - 32px); padding: 20px; gap: 18px; }
}
