/* CLIEAIR FOIA Action Cards
   ==========================
   Custodial, no alarm colors. The user receives finished work, never blanks.
*/

.foia-cards-host {
  margin: 2rem auto;
  max-width: 56rem;
  padding: 1.25rem;
  background: rgba(13, 27, 42, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 12px;
}

.foia-cards-head { margin-bottom: 1rem; border-bottom: 1px solid rgba(201,162,39,0.18); padding-bottom: 0.75rem; }
.foia-cards-title { margin: 0 0 0.3rem; font-size: 1.35rem; color: #f0e6d2; font-weight: 600; }
.foia-cards-sub   { margin: 0; font-size: 0.95rem; color: #a9b6cb; font-style: italic; line-height: 1.5; }

.foia-cards-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
}

.foia-card {
  background: #0d1b2a;
  border-radius: 8px;
  border-left: 4px solid #c9a227;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.foia-card__label  { font-size: 1rem; font-weight: 600; color: #f0e6d2; }
.foia-card__blurb  { margin: 0; font-size: 0.88rem; color: #d9d3c4; line-height: 1.5; }
.foia-card__best   { margin: 0; font-size: 0.78rem; color: #8a9bb0; font-style: italic; line-height: 1.45; }

.foia-card__btn {
  margin-top: auto;
  align-self: stretch;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(180deg, #c9a227 0%, #a9871f 100%);
  color: #0d1b2a;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.foia-card__btn:hover  { filter: brightness(1.06); }
.foia-card__btn:focus  { outline: 2px solid #f0e6d2; outline-offset: 1px; }

.foia-card__channel-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.83rem;
  color: #c9a227;
  text-decoration: none;
  border-bottom: 1px dotted rgba(201, 162, 39, 0.45);
  padding-bottom: 1px;
  align-self: flex-start;
}
.foia-card__channel-link:hover, .foia-card__channel-link:focus {
  color: #ffd54a;
  border-bottom-style: solid;
  border-bottom-color: #ffd54a;
  outline: none;
}

.foia-cards-pledge {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(201, 162, 39, 0.05);
  border: 1px dashed rgba(201, 162, 39, 0.22);
  border-radius: 8px;
  color: #d9d3c4;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.55;
}

/* Modal */
body.foia-modal-open { overflow: hidden; }

.foia-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9990;
}

.foia-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(48rem, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: #0d1b2a;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 9999;
  overflow: hidden;
}

.foia-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.foia-modal__title { margin: 0; font-size: 1.05rem; color: #f0e6d2; }
.foia-modal__close {
  background: transparent;
  color: #c9a227;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.3rem;
}
.foia-modal__close:focus { outline: 2px solid #c9a227; }

.foia-modal__body {
  padding: 1rem 1.1rem 1.1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Busy state */
.foia-modal__busy {
  text-align: center;
  padding: 2rem 1rem;
}
.foia-modal__busy-spinner {
  width: 36px; height: 36px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid rgba(201, 162, 39, 0.22);
  border-top-color: #c9a227;
  animation: foia-spin 1.1s linear infinite;
}
.foia-modal__busy-msg { margin: 0 0 0.4rem; color: #f0e6d2; font-weight: 600; }
.foia-modal__busy-sub { margin: 0; color: #a9b6cb; font-style: italic; font-size: 0.9rem; line-height: 1.5; }

@keyframes foia-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .foia-modal__busy-spinner { animation: none; border-top-color: rgba(201,162,39,0.22); }
}

/* Ready state */
.foia-modal__ready {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}
.foia-modal__ready-icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  background: rgba(106, 168, 106, 0.18);
  color: #6aa86a;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  border: 1px solid rgba(106, 168, 106, 0.4);
}
.foia-modal__ready-title { margin: 0 0 0.2rem; font-size: 1rem; color: #f0e6d2; }
.foia-modal__ready-sub { margin: 0; color: #a9b6cb; font-style: italic; font-size: 0.88rem; }

/* Pending soft-banner */
.foia-modal__pending {
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  color: #d9d3c4;
  font-size: 0.85rem;
  line-height: 1.5;
}
.foia-modal__pending strong { color: #c9a227; }

/* Editor */
.foia-modal__editor {
  width: 100%;
  background: #0a1422;
  color: #f0e6d2;
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  font-family: ui-monospace, SFMono-Regular, "Menlo", monospace;
  font-size: 0.86rem;
  line-height: 1.55;
  resize: vertical;
  min-height: 18rem;
}
.foia-modal__editor:focus { outline: 2px solid #c9a227; }

.foia-modal__disclaimer {
  margin: 0;
  font-size: 0.75rem;
  color: #758496;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.45rem;
}

/* Actions */
.foia-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  border-top: 1px solid rgba(201,162,39,0.18);
  padding-top: 0.8rem;
}

.foia-modal__hash {
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  color: #c9a227;
  background: rgba(201, 162, 39, 0.06);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  margin-right: auto;
}

.foia-modal__btn {
  padding: 0.5rem 0.95rem;
  background: rgba(201, 162, 39, 0.1);
  color: #c9a227;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.foia-modal__btn:hover  { background: rgba(201, 162, 39, 0.18); }
.foia-modal__btn:focus  { outline: 2px solid #f0e6d2; }
.foia-modal__btn--primary {
  background: linear-gradient(180deg, #c9a227 0%, #a9871f 100%);
  color: #0d1b2a;
  border-color: transparent;
}
.foia-modal__btn--primary:hover { filter: brightness(1.06); }

/* Error state */
.foia-modal__error {
  text-align: center;
  padding: 1.5rem 0.75rem;
}
.foia-modal__error-msg { margin: 0 0 0.4rem; color: #c9a227; font-weight: 600; }
.foia-modal__error-sub { margin: 0 0 1rem; color: #a9b6cb; font-style: italic; font-size: 0.88rem; }

@media (max-width: 600px) {
  .foia-modal { width: 96vw; max-height: 92vh; }
  .foia-cards-grid { grid-template-columns: 1fr; }
}
