.prose blockquote {
  margin: 34px 0;
  padding: 22px 26px;
  border-left: 3px solid var(--primary);
  background: var(--surface);
  font-size: 1.05em;
  line-height: 1.55;
}

.prose .article-inline-image {
  margin: 34px 0 38px;
}

.prose .article-inline-image img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  background: var(--surface);
}

.prose .article-inline-image figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.article-inline-image {
  margin: 38px 0 42px;
}

.article-inline-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--surface);
}

.article-inline-image--grid img {
  aspect-ratio: 1;
}

.article-inline-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .85em;
  line-height: 1.45;
}

/* The FSHN panel is one destination: the whole panel leads to the channel. */
.channel-cta {
  position: relative;
  overflow: hidden;
  transition: background .2s ease-out, transform .2s ease-out;
}

.channel-cta:hover {
  background: linear-gradient(135deg, oklch(.22 .05 170), var(--surface));
  transform: translateY(-2px);
}

.channel-cta > a {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  color: transparent;
  font-size: 0;
}

.channel-cta > a::after {
  content: 'Перейти в FSHN ↗';
  position: absolute;
  left: 32px;
  bottom: 30px;
  color: var(--primary);
  font-family: Manrope, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.channel-cta > a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -5px;
}

@media (max-width: 760px) {
  .prose blockquote { padding: 18px 20px; }
  .article-inline-image { margin: 28px 0 32px; }
  .channel-cta > a::after { left: 24px; bottom: 22px; }
}
