.article-wrapper {
  max-width: 42rem;
  margin: 2.5rem auto;
}

.article-glass {
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-l);
  border: 1px solid var(--c-border);
  overflow: hidden;
}

.article-cover {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

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

.article-inner {
  padding: 2rem 2.5rem 2.5rem;
}

.article-header {
  margin-bottom: 2rem;
}

.article-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.article-date {
  display: block;
  color: var(--c-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.article-subheading {
  margin-top: 0.75rem;
  color: var(--c-text-muted);
  font-size: 1rem;
}

.article-text {
  line-height: 1.75;
}

.article-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  margin-top: 2rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-tags a {
  padding: 0.3rem 0.85rem;
  background: var(--c-light);
  border-radius: var(--r-s);
  font-size: 0.85rem;
  transition: background var(--tr-fast), color var(--tr-fast);
}

.article-tags a:hover {
  background: var(--c-brand);
  color: var(--c-white);
}

@media (max-width: 48rem) {
  .article-inner {
    padding: 1.5rem 1.25rem 2rem;
  }
}
