/* ═══════════════════════════════════════════════════════
   TEROC — Monthly report page styles
   Used by: reports/april2026.html, reports/_template.html
   ═══════════════════════════════════════════════════════ */

.amber-bar { margin: 0.75rem 0 1rem; }

/* ── Page layout ── */
.page-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 2rem 5rem; }

/* ── Report header ── */
.report-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px solid var(--moss); }
.report-label { font-family: Calibri, Arial, sans-serif; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.report-title { font-family: Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 0.5rem; }
.report-intro { font-size: 1rem; color: #2C3E30; max-width: 680px; line-height: 1.7; }

/* ── Category sections ── */
.sections { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.report-section { background: var(--white); border: 1px solid #e0dbd0; border-left: 4px solid var(--moss); padding: 1.5rem 1.75rem; }
.section-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.section-header h2 { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--forest); }

/* Movement indicators */
.movement { font-family: Calibri, Arial, sans-serif; font-size: 0.8rem; font-weight: 700; padding: 0.25rem 0.6rem; letter-spacing: 0.04em; }
.movement.up     { background: #fdf0f0; color: var(--red); border: 1px solid #f5c6c6; }
.movement.down   { background: #f0faf4; color: #1e7a48; border: 1px solid #b8e8cc; }
.movement.stable { background: #f4f4f4; color: var(--muted); border: 1px solid #ddd; }

.section-body { color: #2C3E30; margin-bottom: 1rem; line-height: 1.7; }
.recommendation { background: var(--offwhite); border-left: 3px solid var(--amber); padding: 0.75rem 1rem; }
.rec-label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--amber); margin-bottom: 0.3rem; }
.recommendation p { font-size: 0.9rem; color: #2C3E30; line-height: 1.6; }

/* ── One to Watch ── */
.one-to-watch { background: var(--forest); padding: 2rem; margin-bottom: 3rem; }
.one-to-watch .otw-label { font-family: Calibri, Arial, sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 0.5rem; }
.one-to-watch h2 { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 700; color: var(--offwhite); margin-bottom: 0.75rem; }
.one-to-watch p { color: var(--muted); line-height: 1.7; font-size: 0.95rem; }

/* ── Subscribe footer ── */
.subscribe-section { background: var(--white); border: 1px solid var(--moss); padding: 2rem 2.25rem; text-align: center; }
.subscribe-title { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.4rem; }
.subscribe-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.subscribe-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.subscribe-form input {
  background: var(--offwhite);
  border: 1px solid var(--moss);
  color: var(--dark-txt);
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  font-family: Calibri, Arial, sans-serif;
  outline: none;
  width: 260px;
  transition: border-color 0.15s;
}
.subscribe-form input:focus { border-color: var(--sage); }
.subscribe-form input::placeholder { color: #aab8b4; }
.subscribe-btn { background: var(--amber); color: var(--dark-txt); border: none; padding: 0.65rem 1.5rem; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.subscribe-btn:hover:not(:disabled) { background: var(--amber2); }
.subscribe-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.subscribe-msg { font-size: 0.85rem; margin-top: 0.75rem; }
.subscribe-msg.success { color: #1e7a48; }
.subscribe-msg.error { color: var(--red); }

@media (max-width: 560px) {
  .report-title { font-size: 1.5rem; }
  .subscribe-form { flex-direction: column; align-items: stretch; }
  .subscribe-form input { width: 100%; }
}
