/* Shared accessibility refinements. Loaded after the legacy stylesheet so
   keyboard states remain visible without changing the site's base palette. */
:root {
  /*
   * These action colors retain the warm brand palette while providing at
   * least 4.5:1 contrast with white text. They override the legacy gold
   * tokens anywhere a public page loads this accessibility layer.
   */
  --primary-color: #5c4300;
  --secondary-color: #4a3600;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: #5c4300;
}

form input:focus-visible,
form textarea:focus-visible,
form select:focus-visible {
  outline: 3px solid #5c4300;
  outline-offset: 2px;
}

.news-item {
  color: inherit;
  cursor: default;
  text-decoration: none;
}

.news-item[href] {
  cursor: pointer;
}

.faq-item h5 {
  margin: 0;
}

.faq-item h5 button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  margin: 0;
  font: inherit;
  font-weight: 600;
  line-height: inherit;
  text-align: left;
  border: 0;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: background 0.3s ease;
}

.faq-item h5 button:hover {
  background: var(--secondary-color);
}

.faq-item h5 button:focus-visible {
  outline: 3px solid #5c4300;
  outline-offset: 2px;
}

fieldset.question-section {
  border: 0;
}

legend.question-title {
  display: block;
  width: 100%;
  padding: 0;
}