/* ============================================
   JINO — Article / Blog Post Styles
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}
.breadcrumb ol li:not(:last-child)::after {
  content: '/';
  color: var(--text-muted);
  opacity: 0.4;
}
.breadcrumb ol li a {
  color: var(--text-muted);
  transition: color .2s;
}
.breadcrumb ol li a:hover { color: var(--primary); }
.breadcrumb ol li[aria-current="page"] { color: var(--primary); }

/* Article Hero */
.article-hero {
  padding: 100px 0 48px;
  background: linear-gradient(180deg, rgba(27,142,242,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.article-hero .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
  background: rgba(27,142,242,0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.article-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--text);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.article-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

/* Article Body */
.article-body {
  padding: 64px 0 80px;
}

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

.article-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--text);
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.article-content h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 28px 0 10px;
}

.article-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content ul {
  margin: 16px 0 24px 0;
  padding: 0;
  list-style: none;
}

.article-content ul li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.article-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

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

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-content a:hover { color: var(--secondary); }

/* CTA block */
.article-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
}
.article-cta .cta-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text) !important;
  margin-bottom: 8px !important;
}
.article-cta p {
  margin-bottom: 20px !important;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.back-link:hover { color: var(--primary); }

/* ============================================
   Blog index — live post cards
   ============================================ */
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.post-card:hover {
  box-shadow: var(--card-hover);
  border-color: rgba(27,142,242,0.35);
  transform: translateY(-3px);
}
.post-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 14px;
}
.post-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.post-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  flex-grow: 1;
}
.post-card .meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-card .meta .read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
}

/* Mobile */
@media (max-width: 600px) {
  .article-hero { padding: 80px 0 36px; }
  .article-body { padding: 40px 0 60px; }
  .article-content h2 { margin-top: 32px; }
  .article-cta { padding: 24px; }
  .breadcrumb ol { font-size: 0.75rem; }
}
