/* ═══════════════════════════════════════════════════════════════
   links.css  —  Links page: archived article reader
   Used by: links.php
═══════════════════════════════════════════════════════════════ */

/* ── Archived article buttons in left sidebar ── */
.arc-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.arc-btn {
  background: none;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  text-align: left;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  line-height: 1.4;
}

.arc-btn:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.55);
  color: var(--text);
}

.arc-btn.active {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

/* ── Article reader (center panel) ── */
.arc-reader {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1rem;
  animation: arcFadeIn 0.25s ease;
}

@keyframes arcFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.arc-reader-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.arc-back {
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.arc-back:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.arc-reader-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Article body typography ── */
.arc-reader-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
}

.arc-article-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.1rem;
  line-height: 1.3;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  padding-bottom: 0.75rem;
}

.arc-reader-body p {
  margin: 0 0 1.15rem;
  color: #bdc8d8;
  max-width: 68ch;
}

/* ── Embedded email block ── */
.arc-email-block {
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  margin: 0 0 1rem;
  overflow: hidden;
}

.arc-email-block > summary {
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  background: rgba(56, 189, 248, 0.06);
  transition: background 0.15s;
}
.arc-email-block > summary::-webkit-details-marker { display: none; }
.arc-email-block > summary:hover { background: rgba(56, 189, 248, 0.12); }

.arc-email-body {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #aeb9c8;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  font-style: italic;
}
.arc-email-body p { margin: 0 0 0.75rem; }
.arc-email-body p:last-child { margin-bottom: 0; }

/* ── Scripture blockquote ── */
.arc-scripture {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem 0.85rem 1.1rem;
  border-left: 3px solid rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.04);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #c8d3e0;
}

.arc-scripture cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.8;
}
