/* Page-specific styles: How to Read a Room */

/* ===== HERO THEME — dark navy (matches Be the Bridge series) ===== */
.article-hero { background: linear-gradient(160deg, #0e1627 0%, #192038 55%, #1a2840 100%); }
.article-tag-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.tag-explainer     { background: #1a4a2a; }
.tag-career        { background: #2a5a9a; }
.article-hero-sub  { color: #8eadc8; }
.article-meta-read { color: #6a8aaa; }
.article-cta { background: linear-gradient(135deg, #0e1627 0%, #192038 100%); border: 2px solid #2a4a8a; }
.article-cta p { color: #8eadc8; }
.article-cta a.secondary { color: #8eadc8; border: 2px solid #3a5a8a; }
.article-cta a.secondary:hover { color: #c0d8f0; }

/* ===== ARCHETYPE STACK ===== */
.archetype-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}
.archetype-item {
  border: 2px solid #c8d8e8;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.archetype-item.is-visible { opacity: 1; transform: translateY(0); }

.archetype-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #f0f5ff;
  border-bottom: 2px solid #c8d8e8;
}
.arch-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #1a2a6a;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.arch-name {
  font-size: 17px;
  font-weight: 900;
  color: #1a2a6a;
  line-height: 1.2;
}
.arch-sub {
  font-size: 12px;
  color: #6a8aaa;
  margin-left: auto;
  font-style: italic;
  text-align: right;
}
.archetype-body { padding: 0; }

.arch-signal {
  display: flex;
  gap: 10px;
  padding: 13px 20px;
  background: #f0fdf4;
  border-bottom: 1px solid #bbf7d0;
  font-size: 14px;
  line-height: 1.6;
  color: #1a3a1a;
}
.arch-signal::before {
  content: '◎';
  font-size: 13px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 1px;
}
.arch-signal strong { color: #15803d; }

.arch-meet {
  display: flex;
  gap: 10px;
  padding: 13px 20px;
  background: #eff6ff;
  font-size: 14px;
  line-height: 1.6;
  color: #1a2a4a;
}
.arch-meet::before {
  content: '→';
  font-size: 13px;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 900;
}
.arch-meet strong { color: #1d4ed8; }

/* ===== SIGNAL READING SECTION ===== */
.signal-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 28px;
}
.signal-col {
  border-radius: 10px;
  padding: 18px 20px;
  border: 2px solid;
}
.signal-col.lost-col {
  background: #fff8f0;
  border-color: #f59e0b;
}
.signal-col.bored-col {
  background: #f0f5ff;
  border-color: #93c5fd;
}
.signal-col-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.lost-col .signal-col-label  { color: #b45309; }
.bored-col .signal-col-label { color: #1d4ed8; }
.signal-col-looks {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 12px;
}
.signal-col-fix {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  padding: 10px 12px;
  border-radius: 7px;
}
.lost-col  .signal-col-fix { background: #fef3c7; color: #92400e; }
.bored-col .signal-col-fix { background: #dbeafe; color: #1e40af; }

@media (max-width: 560px) { .signal-pair { grid-template-columns: 1fr; } }

/* ===== QUESTION SUBTEXT CALLOUT ===== */
.subtext-list {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.subtext-item {
  background: #fff;
  border: 1.5px solid #c8d8e8;
  border-radius: 9px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}
.subtext-item .q { font-style: italic; font-weight: 700; color: #1a2a4a; }
.subtext-item .a { color: #5a7a9a; margin-left: 6px; }

/* ===== FIVE TRAPS ===== */
.trap-stack {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trap-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 2px solid #fecaca;
  border-radius: 10px;
  padding: 18px 20px;
}
.trap-badge {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trap-content-title { font-size: 14px; font-weight: 900; color: #1a1a1a; margin-bottom: 4px; }
.trap-content-desc  { font-size: 13px; color: #555; line-height: 1.65; }

/* ===== IN-ROOM MOVES ===== */
.move-stack {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid #c8d8e8;
  border-radius: 12px;
  overflow: hidden;
}
.move-item {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #c8d8e8;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.move-item:last-child { border-bottom: none; }
.move-item.is-visible { opacity: 1; transform: translateX(0); }
.move-label {
  width: 140px;
  flex-shrink: 0;
  padding: 18px 16px;
  background: #0e1627;
  color: #8eadc8;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex; align-items: flex-start;
  border-right: 2px solid #2a3a5a;
  line-height: 1.4;
}
.move-text {
  padding: 18px 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  background: #fff;
}
@media (max-width: 560px) {
  .move-item { flex-direction: column; }
  .move-label { width: 100%; border-right: none; border-bottom: 1px solid #2a3a5a; }
}

/* ===== SERIES FOOTER CARD ===== */
.series-link-card {
  background: linear-gradient(135deg, #0e1627 0%, #192038 100%);
  border: 2px solid #2a4a8a;
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}
.slc-label {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #4a7aaa;
  margin-bottom: 4px;
}
.slc-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.slc-title em { font-style: normal; color: #d1db24; }
.slc-desc {
  font-size: 14px;
  color: #8eadc8;
  line-height: 1.6;
  margin-bottom: 8px;
}
.slc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #d1db24;
}
