/* ============================================
   MINZO Article Pages
   Extends style.css — article-specific only
   ============================================ */

/* ── Article index cards ── */
.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 0;
  border-bottom: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.article-card:first-child {
  border-top: 1px solid #e2e8f0;
}

.article-card:hover .article-card-title {
  color: #0003ff;
}

.article-card-meta {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.article-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.article-card-teaser {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.article-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0003ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-card-link::after {
  content: '→';
  transition: transform 0.15s;
}

.article-card:hover .article-card-link::after {
  transform: translateX(4px);
}

/* ── Article page body ── */
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.article-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0003ff;
  margin-bottom: 0.75rem;
}

.article-headline {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.article-byline {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #0003ff;
}

.article-byline strong {
  color: #1a1a1a;
}

/* ── Article content typography ── */
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2d2d2d;
}

.article-content p {
  margin-bottom: 1.4rem;
}

.article-content h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 3px solid #fffc08;
  display: inline-block;
  padding-right: 0.5rem;
}

.article-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0003ff;
  margin: 2rem 0 0.6rem;
}

.article-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 1.5rem 0 0.4rem;
}

.article-content ul,
.article-content ol {
  margin: 0.75rem 0 1.4rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content strong {
  color: #1a1a1a;
  font-weight: 700;
}

.article-content em {
  font-style: italic;
}

/* ── Myth/Fact callout ── */
.article-callout {
  background: #f0f2ff;
  border-left: 4px solid #0003ff;
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.article-callout .callout-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0003ff;
  margin-bottom: 0.3rem;
}

.article-callout p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ── Data table ── */
.article-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.article-table th {
  background: #0003ff;
  color: #ffffff;
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.article-table tr:nth-child(even) td {
  background: #f8fafc;
}

/* ── Warning / tip highlight box ── */
.article-highlight {
  background: #fffbea;
  border: 1px solid #fffc08;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.article-highlight .highlight-label {
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a6a00;
  margin-bottom: 0.3rem;
}

/* ── Back link ── */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0003ff;
  text-decoration: none;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.article-back::before {
  content: '←';
}

.article-back:hover {
  color: #0002cc;
}

/* ── CTA block at end of article ── */
.article-cta {
  background: #0003ff;
  color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.article-cta p {
  font-size: 0.95rem;
  opacity: 0.88;
  margin-bottom: 1.25rem;
}

.article-cta .btn-book {
  display: inline-block;
  background: #fffc08;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.article-cta .btn-book:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .article-body {
    padding: 0 0 3rem;
  }

  .article-content h2 {
    font-size: 1.2rem;
  }

  .article-table th,
  .article-table td {
    padding: 0.5rem 0.6rem;
    font-size: 0.82rem;
  }
}