/* ==========================================================================
   Reports page (template-reports.php)
   ========================================================================== */

.reports-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.reports-page-title {
  font-size: var(--fs-34);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  text-align: center;
}

.reports-page-subtitle {
  font-size: var(--fs-13);
  color: var(--ink-soft);
  margin: 0 auto 8px;
  max-width: 680px;
  line-height: 1.7;
  text-align: center;
}

.reports-page-meta {
  font-size: var(--fs-11);
  color: var(--muted);
  margin-bottom: 32px;
  text-align: center;
}

/* Filter nav reuses .reports-page-meta for typography, but needs more
   breathing room above the results list than the header meta line does. */
nav.reports-page-meta {
  margin-bottom: 32px;
}

.reports-search-form {
  display: flex;
  gap: 0;
  margin: 24px auto;
  max-width: 480px;
}

.reports-search-input {
  flex: 1;
  padding: 10px 14px;
  font-size: var(--fs-13);
  border: 1px solid var(--rule);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--paper-deep);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.reports-search-input:focus {
  border-color: var(--signal);
}

.reports-search-btn {
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.reports-search-btn:hover {
  background: var(--signal);
}

.reports-rate-msg {
  font-size: var(--fs-13);
  color: var(--signal);
  margin-bottom: 16px;
  font-weight: 600;
}

.reports-search-meta {
  font-size: var(--fs-13);
  color: var(--muted);
  margin-bottom: 16px;
}

.reports-clear-link {
  margin-left: 8px;
  color: var(--signal);
  text-decoration: none;
}

.reports-clear-link[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.reports-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}


.reports-faq-wrap {
  margin-top: 48px;
  border-top: 2px solid var(--ink);
  padding-top: 32px;
}

.reports-faq-title {
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.reports-faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.reports-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.reports-faq-item h3 {
  font-size: var(--fs-15);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}

.reports-faq-item p {
  font-size: var(--fs-13);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.reports-faq-item a {
  color: var(--signal);
  text-decoration: none;
}

.reports-faq-item a:hover {
  text-decoration: underline;
}
