/* =========================================================
   4HE / FULLSTORY CONTENT
   Full story content, rich text, tags, related posts, comments shell
   ========================================================= */

/* =========================
   FULL STORY CARD
   ========================= */

.feed-card--full {
  margin-bottom: 16px;
}

.feed-card__title--full {
  font-size: 30px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.feed-card__media + .full_text,
.video-card + .full_text,
.nsfw + .full_text,
.pk-gallery + .full_text {
  margin-top: 16px;
}

/* =========================
   FULL TEXT BASE
   ========================= */

.full_text {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.full_text::after {
  content: "";
  display: block;
  clear: both;
}

.full_text > :first-child {
  margin-top: 0 !important;
}

.full_text > :last-child {
  margin-bottom: 0 !important;
}

.full_text p {
  margin: 0 0 1.08em;
  color: var(--text);
}

.full_text a {
  color: var(--accent-main);
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgba(45, 123, 255, 0.34);
  transition:
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.full_text a:hover {
  color: var(--accent-main-hover);
  box-shadow: inset 0 -2px 0 rgba(45, 123, 255, 0.46);
}

/* ссылки-картинки и галереи не должны получать подчёркивание */
.full_text a.highslide,
.full_text .pk-gallery a,
.full_text figure a,
.full_text .image a,
.full_text .fr-dib a,
.full_text .fr-fic a {
  box-shadow: none !important;
  text-decoration: none !important;
}

.full_text a.highslide:hover,
.full_text .pk-gallery a:hover,
.full_text figure a:hover,
.full_text .image a:hover,
.full_text .fr-dib a:hover,
.full_text .fr-fic a:hover {
  box-shadow: none !important;
  text-decoration: none !important;
}

/* =========================
   HEADINGS
   ========================= */

.full_text h1,
.full_text h2,
.full_text h3,
.full_text h4,
.full_text h5,
.full_text h6 {
  margin: 1.34em 0 0.54em;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.full_text h1 {
  font-size: 34px;
  font-weight: 800;
}

.full_text h2 {
  font-size: 28px;
  font-weight: 800;
}

.full_text h3 {
  font-size: 23px;
  font-weight: 700;
}

.full_text h4 {
  font-size: 19px;
  font-weight: 700;
}

.full_text h5 {
  font-size: 16px;
  font-weight: 700;
}

.full_text h6 {
  color: var(--text-fade);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.full_text h2::after,
.full_text h3::before {
  display: none !important;
  content: none !important;
}

/* =========================
   INLINE TYPOGRAPHY
   ========================= */

.full_text strong,
.full_text b {
  color: var(--text);
  font-weight: 700;
}

.full_text em,
.full_text i {
  font-style: italic;
}

.full_text u {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.full_text s,
.full_text del {
  opacity: 0.75;
}

.full_text small {
  color: var(--text-soft);
  font-size: 0.88em;
}

.full_text mark {
  padding: 0.08em 0.28em;
  background: var(--accent-fire-soft);
  color: var(--text);
  border-radius: 6px;
}

.full_text sub,
.full_text sup {
  position: relative;
  font-size: 0.72em;
  line-height: 0;
  vertical-align: baseline;
}

.full_text sup {
  top: -0.45em;
}

.full_text sub {
  bottom: -0.2em;
}

/* =========================
   LISTS
   ========================= */

.full_text ul,
.full_text ol {
  margin: 0 0 1.22em;
  padding: 0;
  color: var(--text);
}

.full_text ul {
  list-style: none;
}

.full_text ol {
  list-style: none;
  counter-reset: fulltext-ol;
}

.full_text ul li,
.full_text ol li {
  position: relative;
  margin: 0 0 0.72em;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.78;
}

.full_text ul li:last-child,
.full_text ol li:last-child {
  margin-bottom: 0;
}

.full_text ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-main);
}

.full_text ol > li {
  counter-increment: fulltext-ol;
}

.full_text ol > li::before {
  content: counter(fulltext-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-main);
  font-size: 0.95em;
  font-weight: 700;
}

.full_text ul ul,
.full_text ul ol,
.full_text ol ul,
.full_text ol ol {
  margin: 0.55em 0 0;
}

.full_text ul ul li,
.full_text ul ol li,
.full_text ol ul li,
.full_text ol ol li {
  padding-left: 22px;
}

.full_text ul ul > li::before,
.full_text ol ul > li::before {
  top: 0.8em;
  width: 5px;
  height: 5px;
  background: var(--text-fade);
}

.full_text li > :last-child {
  margin-bottom: 0;
}

/* =========================
   QUOTES
   ========================= */

.full_text blockquote,
.full_text .quote {
  position: relative;
  margin: 26px 0;
  padding: 20px 22px 20px 24px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  color: var(--text);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-main);
  border-radius: 20px;
  box-shadow: var(--shadow-xs);
  font-size: 17px;
  line-height: 1.72;
}

.full_text blockquote p:last-child,
.full_text .quote p:last-child {
  margin-bottom: 0;
}

.full_text blockquote cite,
.full_text .quote cite {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
  font-style: normal;
}

/* =========================
   CODE
   ========================= */

.full_text code {
  display: inline-block;
  vertical-align: baseline;
  padding: 4px 8px;
  background: var(--surface-2);
  color: var(--accent-main);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 0.92em;
  line-height: 1.5;
  font-family: var(--font-mono);
}

.full_text pre {
  margin: 24px 0;
  padding: 18px 20px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: auto;
  box-shadow: var(--shadow-xs);
}

.full_text pre code {
  display: block;
  padding: 0;
  background: transparent;
  color: var(--text);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre;
  word-break: normal;
}

/* =========================
   IMAGES / FIGURES
   ========================= */

.full_text img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: none;
}

.full_text > img,
.full_text > p > img:only-child {
  margin: 26px auto;
}

.full_text a.highslide,
.full_text figure,
.full_text .image,
.full_text .fr-dib,
.full_text .fr-fic {
  display: block;
  margin: 26px 0;
}

.full_text figure {
  width: 100%;
}

.full_text figure img,
.full_text .fr-dib img,
.full_text .fr-fic img {
  margin: 0 auto;
}

.full_text figcaption {
  margin-top: 10px;
  color: var(--text-soft);
  text-align: center;
  font-size: 14px;
  line-height: 1.58;
}

.full_text .aligncenter,
.full_text .text-center,
.full_text figure.image.image-style-align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.full_text .alignleft,
.full_text img[style*="float: left"],
.full_text img[style*="float:left"],
.full_text figure.image.image-style-align-left {
  float: left;
  clear: left;
  max-width: min(46%, 340px);
  margin: 8px 24px 14px 0;
}

.full_text .alignright,
.full_text img[style*="float: right"],
.full_text img[style*="float:right"],
.full_text figure.image.image-style-align-right {
  float: right;
  clear: right;
  max-width: min(46%, 340px);
  margin: 8px 0 14px 24px;
}

/* =========================
   TABLES
   ========================= */

.full_text table {
  width: 100%;
  display: block;
  overflow-x: auto;
  margin: 26px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--shadow-xs);
}

.full_text th,
.full_text td {
  padding: 14px 16px;
  background: transparent;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  white-space: normal;
}

.full_text th {
  background: var(--surface-2);
  font-weight: 700;
}

.full_text tr:last-child td {
  border-bottom: 0;
}

.full_text table td + td,
.full_text table th + th {
  border-left: 1px solid var(--border);
}

/* =========================
   EMBEDS / VIDEO
   ========================= */

.full_text iframe,
.full_text video,
.full_text embed,
.full_text object {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 26px 0;
  border: 0;
  border-radius: 18px;
  background: #000;
  overflow: hidden;
  box-shadow: none;
}

.full_text iframe {
  aspect-ratio: 16 / 9;
  min-height: 320px;
}

.full_text video {
  min-height: 220px;
}

.full_text .video-responsive,
.full_text .embed-responsive,
.full_text .ratio {
  position: relative;
  width: 100%;
  margin: 26px 0;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
}

.full_text .video-responsive::before,
.full_text .embed-responsive::before,
.full_text .ratio::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.full_text .video-responsive iframe,
.full_text .video-responsive video,
.full_text .embed-responsive iframe,
.full_text .embed-responsive embed,
.full_text .embed-responsive object,
.full_text .ratio iframe,
.full_text .ratio video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
}

/* =========================
   SPOILERS / DETAILS
   ========================= */

.full_text details {
  margin: 24px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.full_text summary {
  position: relative;
  display: block;
  padding: 15px 16px 15px 42px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.full_text summary:hover {
  background: var(--surface-2);
}

.full_text summary::-webkit-details-marker {
  display: none;
}

.full_text summary::before {
  content: "+";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.full_text details[open] summary::before {
  content: "−";
}

.full_text details > *:not(summary) {
  padding-left: 16px;
  padding-right: 16px;
}

.full_text details > :last-child {
  padding-bottom: 16px;
}

.full_text .title_spoiler {
  display: block;
  margin: 24px 0 0;
  padding: 14px 16px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.full_text .text_spoiler,
.full_text .hide {
  margin: 0 0 24px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.full_text .text_spoiler > :last-child,
.full_text .hide > :last-child {
  margin-bottom: 0;
}

/* =========================
   CALLOUTS
   ========================= */

.full_text .callout,
.full_text .notice,
.full_text .alert {
  position: relative;
  margin: 24px 0;
  padding: 16px 16px 16px 46px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-xs);
}

.full_text .callout::before,
.full_text .notice::before,
.full_text .alert::before {
  content: "i";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-main-soft);
  color: var(--accent-main);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.full_text .callout > :last-child,
.full_text .notice > :last-child,
.full_text .alert > :last-child {
  margin-bottom: 0;
}

.full_text .callout--success,
.full_text .notice--success,
.full_text .alert-success {
  background: var(--success-soft);
}

.full_text .callout--success::before,
.full_text .notice--success::before,
.full_text .alert-success::before {
  content: "✓";
  background: rgba(32, 177, 90, 0.14);
  color: var(--success);
}

.full_text .callout--warning,
.full_text .notice--warning,
.full_text .alert-warning {
  background: var(--accent-fire-soft);
}

.full_text .callout--warning::before,
.full_text .notice--warning::before,
.full_text .alert-warning::before {
  content: "!";
  background: rgba(255, 138, 31, 0.14);
  color: var(--accent-fire);
}

/* =========================
   HR / ALIGN
   ========================= */

.full_text hr {
  display: block;
  height: 1px;
  margin: 30px 0;
  border: 0;
  background: var(--border);
  overflow: visible;
}

.full_text hr::after {
  display: none;
}

.full_text .text-left {
  text-align: left;
}

.full_text .text-right {
  text-align: right;
}

.full_text .text-center {
  text-align: center;
}

.full_text .text-justify {
  text-align: justify;
}

/* =========================
   TAGS
   ========================= */

.feed-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.feed-card__tags a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.feed-card__tags a:hover {
  background: var(--surface-3);
  color: var(--text);
  text-decoration: none;
}

.feed-card__tags .page_tags-more {
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}

/* =========================================================
   STORY RELATED / RELATED NEWS
   ========================================================= */

.story-related {
  margin-top: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: none;
  overflow: hidden;
}

.story-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}

.story-related__title {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.story-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* =========================
   RELATED CARD
   ========================= */

.related-card {
  min-width: 0;
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text);
  text-decoration: none;
  box-shadow: none;
  isolation: isolate;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.related-card:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-1px);
}

.related-card:active {
  transform: scale(0.992);
}

.related-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 18% 18%, rgba(45, 123, 255, 0.12), transparent 34%),
    linear-gradient(180deg, var(--surface-2), var(--surface-3));
  isolation: isolate;
}

.related-card__media-bg {
  position: absolute;
  inset: -18px;
  z-index: 0;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(22px) saturate(1.08);
  opacity: 0.58;
  transform: scale(1.08);
  pointer-events: none;
}

.related-card__media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(15, 23, 42, 0.08);
}

.related-card__media-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.related-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.related-card:hover .related-card__image {
  transform: scale(1.025);
}

.related-card__media--video .related-card__image {
  object-fit: cover;
}

.related-card__media--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04),
    rgba(0, 0, 0, 0.22)
  );
  pointer-events: none;
}

/* =========================
   RELATED BADGES
   ========================= */

.related-card__badge {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 5;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  background: rgba(17, 24, 39, 0.58);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.related-card__badge .i-svg {
  width: 14px;
  height: 14px;
}

.related-card__badge--video {
  left: 50%;
  top: 50%;
  right: auto;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  gap: 0;
  transform: translate(-50%, -50%);
  background: rgba(17, 24, 39, 0.62);
  border-radius: 50%;
}

.related-card__badge--video .i-svg {
  width: 17px;
  height: 17px;
  margin-left: 2px;
}

.related-card__badge--video span {
  display: none;
}

/* =========================
   RELATED EMPTY
   ========================= */

.related-card__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 26% 20%, rgba(45, 123, 255, 0.12), transparent 34%),
    radial-gradient(circle at 76% 78%, rgba(155, 234, 60, 0.10), transparent 30%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
}

.related-card__empty-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text-fade);
  box-shadow: var(--shadow-xs);
}

.related-card__empty-icon .i-svg {
  width: 24px;
  height: 24px;
}

/* =========================
   RELATED BODY
   ========================= */

.related-card__body {
  min-width: 0;
  display: block;
  padding: 12px;
}

.related-card__title {
  display: -webkit-box;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card:hover .related-card__title {
  color: var(--accent-main);
}

/* =========================================================
   STORY COMMENTS SHELL
   ========================================================= */

.story-comments {
  margin-top: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: none;
}

.story-comments__head {
  margin: 0 0 14px;
}

.story-comments__title {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.story-comments__body {
  display: grid;
  gap: 14px;
}

/* =========================
   DARK
   ========================= */

.theme-dark .full_text blockquote,
.theme-dark .full_text .quote {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.theme-dark .full_text table,
.theme-dark .full_text details,
.theme-dark .full_text .text_spoiler,
.theme-dark .full_text .hide {
  background: var(--surface);
}

.theme-dark .related-card__media-bg {
  opacity: 0.46;
  filter: blur(24px) saturate(1.05) brightness(0.82);
}

.theme-dark .related-card__media-bg::after {
  background: rgba(0, 0, 0, 0.22);
}

/* =========================
   RESPONSIVE
   ========================= */

@media screen and (max-width: 768px) {
  .feed-card__title--full {
    font-size: 25px;
    line-height: 1.2;
  }

  .full_text {
    font-size: 15px;
    line-height: 1.76;
    overflow: hidden;
  }

  .full_text h1 {
    font-size: 28px;
  }

  .full_text h2 {
    font-size: 24px;
  }

  .full_text h3 {
    font-size: 20px;
  }

  .full_text h4 {
    font-size: 18px;
  }

  .full_text h5 {
    font-size: 15px;
  }

  .full_text h6 {
    font-size: 12px;
  }

  .full_text ul li,
  .full_text ol li {
    font-size: 15px;
  }

  .full_text blockquote,
  .full_text .quote {
    padding: 18px 16px 16px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .full_text pre {
    padding: 16px;
    border-radius: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .full_text table {
    border-radius: 18px;
  }

  .full_text th,
  .full_text td {
    padding: 12px;
    font-size: 13px;
  }

  .full_text iframe {
    min-height: 240px;
    border-radius: 18px;
  }

  .full_text video,
  .full_text embed,
  .full_text object,
  .full_text .video-responsive,
  .full_text .embed-responsive,
  .full_text .ratio {
    border-radius: 18px;
  }

  .full_text .alignleft,
  .full_text .alignright,
  .full_text img[style*="float: left"],
  .full_text img[style*="float:left"],
  .full_text img[style*="float: right"],
  .full_text img[style*="float:right"],
  .full_text figure.image.image-style-align-left,
  .full_text figure.image.image-style-align-right {
    float: none;
    clear: none;
    display: block;
    max-width: 100%;
    margin: 22px auto;
  }

  .story-related,
  .story-comments {
    margin-top: 16px;
    padding: 16px;
    border-radius: 20px;
  }

  .story-related__grid {
    gap: 10px;
  }

  .related-card {
    border-radius: 16px;
  }

  .related-card__body {
    padding: 10px;
  }

  .related-card__title {
    font-size: 13px;
    line-height: 1.35;
  }

  .related-card__badge {
    right: 8px;
    top: 8px;
    min-height: 26px;
    padding: 0 8px;
    font-size: 11px;
  }

  .related-card__badge--video {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
  }
}

@media screen and (max-width: 640px) {
  .feed-card__title--full {
    font-size: 22px;
    line-height: 1.22;
  }

  .full_text {
    font-size: 15px;
    line-height: 1.74;
  }

  .full_text h1 {
    font-size: 24px;
  }

  .full_text h2 {
    font-size: 21px;
  }

  .full_text h3 {
    font-size: 18px;
  }

  .full_text h4 {
    font-size: 16px;
  }

  .full_text blockquote,
  .full_text .quote {
    margin: 20px 0;
    padding: 14px 14px 14px 16px;
    border-radius: 16px;
    font-size: 15px;
  }

  .full_text > img,
  .full_text > p > img:only-child,
  .full_text a.highslide,
  .full_text figure,
  .full_text .image,
  .full_text .fr-dib,
  .full_text .fr-fic,
  .full_text iframe,
  .full_text video,
  .full_text embed,
  .full_text object,
  .full_text table,
  .full_text pre,
  .full_text .video-responsive,
  .full_text .embed-responsive,
  .full_text .ratio {
    margin: 20px 0;
  }

  .full_text iframe {
    min-height: 220px;
  }

  .full_text summary {
    padding: 13px 14px 13px 38px;
    font-size: 14px;
  }

  .full_text summary::before {
    left: 14px;
  }

  .full_text details > *:not(summary),
  .full_text .text_spoiler,
  .full_text .hide {
    padding-left: 14px;
    padding-right: 14px;
  }

  .full_text .title_spoiler {
    padding: 13px 14px;
    font-size: 13px;
  }

  .full_text .callout,
  .full_text .notice,
  .full_text .alert {
    padding: 14px 14px 14px 40px;
  }

  .full_text .callout::before,
  .full_text .notice::before,
  .full_text .alert::before {
    left: 14px;
    top: 14px;
  }

  .full_text hr {
    margin: 24px 0;
  }

  .story-related,
  .story-comments {
    padding: 14px;
    border-radius: 18px;
  }

  .story-related__title,
  .story-comments__title {
    font-size: 17px;
  }

  .story-related__grid {
    grid-template-columns: 1fr;
  }

  .related-card__media {
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .full_text a,
  .feed-card__tags a,
  .related-card,
  .related-card__image {
    transition: none !important;
  }
}