/* Page-specific styles for Taste Is a Hypothesis */

/* ===== HERO THEME ===== */
.article-hero { background: linear-gradient(160deg, #0d0f1a 0%, #241610 55%, #150e0a 100%); }
.article-tag-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.article-hero-sub { color: #b89a8a; }
.article-meta-read { color: #6a5850; }
.article-cta { background: linear-gradient(135deg, #0d0f1a 0%, #241610 100%); border: 2px solid #4a2a10; }
.article-cta p { color: #b89a8a; }
.article-cta a.secondary { color: #b89a8a; border: 2px solid #4a2a10; }

/* ===== H3 OVERRIDE ===== */
.article-body h3 {
  font-size: 19px;
  font-weight: 900;
  color: #1a1006;
  text-transform: none;
  letter-spacing: 0;
  margin: 40px 0 10px;
}

/* ===== TASTE CLAIM GRID (reuses the Logic post's claim-card pattern) ===== */
.taste-grid {
  margin: 28px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.taste-grid.is-visible { opacity: 1; transform: translateY(0); }
.taste-grid-bundle { font-size: 13px; font-weight: 800; color: #6a5850; margin-bottom: 12px; font-family: 'Courier New', monospace; }
.taste-grid-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.taste-card { display: flex; flex-direction: column; background: #fafaf6; border: 1px solid #e6d8c8; border-radius: 10px; padding: 16px 18px; cursor: default; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.taste-card:hover { border-color: #a0451a; box-shadow: 0 4px 14px rgba(160,69,26,0.14); }
.taste-tag { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: #a0451a; margin-bottom: 8px; }
.taste-text { font-size: 14.5px; font-weight: 700; color: #1a1006; line-height: 1.5; }
.taste-falsify { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px dashed #e0d0bc; font-size: 13px; font-style: italic; color: #6a5848; line-height: 1.5; }
.taste-card:hover .taste-falsify { display: block; }

/* ===== TRAINED-INSTINCT BLOCK (proof-block pattern, reused) ===== */
.instinct-block {
  margin: 26px 0;
  background: #0d0f1a;
  border: 1px solid #4a2a1a;
  border-radius: 10px;
  padding: 22px 26px 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.instinct-block.is-visible { opacity: 1; transform: translateY(0); }
.instinct-premises { font-size: 14px; color: #b89a8a; font-family: 'Courier New', monospace; }
.instinct-premises div { margin: 3px 0; }
.instinct-bar { border: none; border-top: 1.5px solid #5a3a2a; margin: 14px 0 12px; position: relative; }
.instinct-rule-name { position: absolute; right: 0; top: 6px; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #8a6858; font-family: 'Courier New', monospace; }
.instinct-conclusion { font-size: 16px; font-weight: 800; color: #fff; }
.instinct-therefore { color: #d1893a; font-family: 'Courier New', monospace; margin-right: 8px; }

/* ===== TACTICS LIST ===== */
.taste-tactics { margin: 30px 0 10px; }
.taste-tactics .tactic { display: flex; gap: 18px; padding: 16px 0; border-top: 1px solid #e4e9d4; }
.taste-tactics .tactic:last-child { border-bottom: 1px solid #e4e9d4; }
.taste-tactics .tactic-num { font-size: 13px; font-weight: 900; color: #a0451a; font-family: 'Courier New', monospace; flex-shrink: 0; width: 26px; padding-top: 2px; }
.taste-tactics .tactic-title { font-size: 15.5px; font-weight: 800; color: #1a2a10; margin-bottom: 4px; }
.taste-tactics .tactic-detail { font-size: 14px; color: #445032; line-height: 1.6; }

@media (max-width: 640px) {
  .taste-grid-row { grid-template-columns: 1fr; }
}
