/* --- Hero --- */
.article-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.article-hero .hero-bg { position: absolute; inset: 0; }
.article-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.92));
}
.article-hero .hero-content { position: relative; z-index: 1; width: 100%; padding: 100px 0 60px; }
.article-hero-inner { max-width: 760px; margin: 0 auto; }

.article-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0;
}


/* --- Meta Bar (below hero, in white area) --- */
.article-meta-bar {
  max-width: 760px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.article-meta-left,
.article-meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-meta-detail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #64748b;
}

.article-meta-detail .material-symbols-outlined {
  font-size: 16px;
  color: #94a3b8;
}


/* --- Article Body (prose) --- */
.article-body {
  padding-top: 48px;
  padding-bottom: 48px;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
}

.article-content .prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-content .prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content .prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 20px;
}

.article-content .prose strong {
  color: var(--navy);
  font-weight: 600;
}

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

.article-content .prose ul,
.article-content .prose ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content .prose li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 8px;
}

.article-content .prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.article-content .prose thead th {
  background: var(--navy);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-content .prose tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}

.article-content .prose tbody tr:nth-child(even) {
  background: #f8fafc;
}

.article-content .prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.article-content .prose a:hover {
  color: var(--blue);
}

.article-content .prose blockquote {
  border-left: 4px solid var(--teal);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(0, 191, 165, 0.05);
  border-radius: 0 8px 8px 0;
}

.article-content .prose hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 40px 0;
}


/* --- Article CTA --- */
.article-cta {
  background: var(--light-bg);
  padding: 0 0 48px;
}

.article-cta-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.article-cta-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 12px;
}

.article-cta-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1rem;
}


/* --- Back Link --- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--teal);
}

.back-link .material-symbols-outlined {
  font-size: 18px;
}


/* --- Responsive --- */
@media (max-width: 768px) {
  .article-hero { min-height: 280px; }
  .article-hero .hero-content { padding: 60px 0 32px; }
  .article-cta-card { padding: 28px 20px; }
}
