.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.article-lead {
  color: var(--text);
  font-size: 18px;
  font-weight: 650;
}

.article-figure {
  margin: 24px 0;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(19, 40, 58, 0.12);
  border-radius: 16px;
  background: #eef3f7;
  box-shadow: 0 18px 42px rgba(12, 29, 46, 0.08);
}

.article-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.article-callout {
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  color: var(--text);
  background: rgba(35, 119, 154, 0.08);
  line-height: 1.85;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(19, 40, 58, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.article-actions a + a {
  color: var(--text);
  background: #ffffff;
}

@media (max-width: 760px) {
  .article-lead {
    font-size: 17px;
  }

  .article-figure {
    margin: 20px -14px;
  }

  .article-figure img {
    border-radius: 12px;
  }

  .article-actions a {
    width: 100%;
    justify-content: center;
  }
}
