.article-not-found-wrap {
  max-width: 720px;
}

.article-back-link {
  margin-bottom: 2rem;
  display: inline-flex;
}

.article-fallback-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.25rem 0 1rem;
  line-height: 1.2;
}

.article-fallback-summary {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.article-fallback-box {
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 1.5rem;
  background: hsl(40, 30%, 98%);
  text-align: center;
}

.article-fallback-box p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-fallback-button {
  margin-top: 1rem;
  display: inline-flex;
}

.article-not-found-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
}

.article-not-found-text {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
}

.article-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.article-layout {
  max-width: 850px;
  margin: 0 auto;
}

.article-header-block {
  margin-bottom: 2.5rem;
}

.article-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 1.25rem 0 1rem;
}

.article-main-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.article-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
}

.article-author-name {
  font-weight: 600;
  color: var(--navy);
}

.article-featured-image,
.article-featured-figure {
  width: 100%;
  min-height: 260px;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.article-featured-figure {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: hsl(220, 20%, 88%);
}

.article-featured-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.article-tags-row {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.article-tags-icon {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-right: 0.5rem;
}

.article-related-section {
  border-top: 1px solid var(--border);
}

.article-related-grid {
  margin-top: 2rem;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 760px) {
  .article-featured-image,
  .article-featured-figure {
    min-height: 220px;
    margin-bottom: 2rem;
  }

  .article-meta-row {
    gap: 0.75rem;
  }
}


.author-box picture {
  width: 96px;
  height: 96px;
  min-width: 96px;
  display: block;
}

.author-avatar {
  width: 96px;
  height: 96px;
  min-width: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 2px solid rgba(176, 139, 87, 0.35);
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.12);
}