/* ============================================================
   Mayhem Threads — Annual Testimonial Report (Light Card Design)
   ============================================================ */

.testimonials-section {
  background-color: #f8fafc;
  color: #1e293b;
  padding: 5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Report Executive Banner Box */
.report-header-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-left: 5px solid #1e3c72;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.report-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e3c72;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}

/* Filter Bar */
.editorial-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.editorial-filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.editorial-filter-btn:hover {
  color: #1e3c72;
  border-color: #1e3c72;
  background: #f1f5f9;
}

.editorial-filter-btn.active {
  color: #ffffff;
  background: #1e3c72;
  border-color: #1e3c72;
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
}

/* Clean White Testimonial Card */
.editorial-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.editorial-card:hover {
  transform: translateY(-4px);
  border-color: #1e3c72;
  box-shadow: 0 12px 30px rgba(30, 60, 114, 0.12);
}

.story-program-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1e3c72;
  margin-bottom: 0.5rem;
}

.story-beneficiary-title {
  font-family: var(--font-display, "Manrope", sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.story-meta-line {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.story-meta-line span {
  color: #334155;
  font-weight: 500;
}

.editorial-quote-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
  font-style: italic;
  margin-bottom: 1.5rem;
  border-left: 3px solid #f59e0b;
  padding-left: 0.85rem;
}

.editorial-read-btn {
  background: #f8fafc;
  color: #1e3c72;
  border: 1px solid #cbd5e1;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.editorial-read-btn:hover {
  background: #1e3c72;
  border-color: #1e3c72;
  color: #ffffff;
}

/* Search Input */
.editorial-search-input {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.editorial-search-input:focus {
  background: #ffffff;
  border-color: #1e3c72;
  color: #0f172a;
  outline: none;
  box-shadow: 0 0 10px rgba(30, 60, 114, 0.15);
}

.editorial-search-input::placeholder {
  color: #94a3b8;
}

/* Report Reader Modal */
.report-modal .modal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.report-modal .modal-header {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 2rem;
  background: #f8fafc;
}

.report-modal .modal-body {
  padding: 2rem;
}

.modal-editorial-callout {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  border-radius: 0 6px 6px 0;
  color: #92400e;
}

.report-paragraph {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }
  .report-header-card {
    padding: 1.5rem;
  }
  .editorial-card {
    padding: 1.5rem;
  }
  .editorial-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .editorial-filter-btn {
    white-space: nowrap;
  }
  .editorial-search-input {
    margin-top: 1rem;
  }
}
