/* ==========================================================================
   TV Visor — стили блога (блог / блог_статья)
   Все селекторы изолированы под .tvv-blog*, чтобы безопасно вставить в common.css
   Шрифт Roboto и контейнер ~1140px — как на tvvisor.com
   Акцент макета #d84900 (на сайте кнопки #d24000 — близко)
   ========================================================================== */

.tvv-blog {
  --tvv-color-accent: #d84900;
  --tvv-color-accent-soft: #ffe5d9;
  --tvv-color-accent-muted: #fff0e7;
  --tvv-color-text: #222326;
  --tvv-color-text-muted: #6d7075;
  --tvv-color-text-bread: #535353;
  --tvv-color-heading-site: #333333;
  --tvv-color-bg: #fafafa;
  --tvv-color-surface: #ffffff;
  --tvv-color-border: #e5e3de;
  --tvv-color-border-input: #d1d1d6;
  --tvv-color-page-soft: #f7f7f5;
  --tvv-color-filter: #f1f1f1;
  --tvv-color-dark: #2f2f31;
  --tvv-color-dark-muted: #a3a3a3;
  --tvv-color-inverse: #ffffff;
  --tvv-radius-sm: 8px;
  --tvv-radius-md: 12px;
  --tvv-radius-lg: 14px;
  --tvv-radius-xl: 16px;
  --tvv-radius-full: 999px;
  --tvv-shadow-card: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
  --tvv-container: 1140px;
  --tvv-content: 1126px;

  box-sizing: border-box;
  background: var(--tvv-color-bg);
  color: var(--tvv-color-text);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  padding:  80px 0;
}

.tvv-blog *,
.tvv-blog *::before,
.tvv-blog *::after {
  box-sizing: border-box;
}

 

.tvv-blog img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

.tvv-blog__container {
  width: 100%;
  max-width: var(--tvv-container);
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------- Breadcrumbs ---------- */

.tvv-blog__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--tvv-color-text-bread);
  text-align: center;
}

.tvv-blog__breadcrumbs a:hover {
  color: var(--tvv-color-accent);
}

.tvv-blog__breadcrumbs-sep {
  color: var(--tvv-color-text-bread);
  opacity: 0.7;
}

.tvv-blog__breadcrumbs-current {
  color: var(--tvv-color-text-bread);
}

/* ---------- Page head (listing) ---------- */

.tvv-blog__page-head {
  text-align: center;
  padding: 12px 0 28px;
}

.tvv-blog__page-title {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--tvv-color-heading-site);
}

.tvv-blog__page-title-line {
  display: block;
  width: 96px;
  height: 3px;
  margin: 0 auto;
  background: var(--tvv-color-accent);
  border: 0;
}

/* ---------- Filters ---------- */

.tvv-blog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.tvv-blog__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border: 0;
  border-radius: var(--tvv-radius-full);
  background: var(--tvv-color-filter);
  color: var(--tvv-color-text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tvv-blog__filter:hover {
  background: var(--tvv-color-accent-soft);
  color: var(--tvv-color-accent);
}

.tvv-blog__filter.is-active {
  background: var(--tvv-color-accent-soft);
  color: var(--tvv-color-accent);
}

/* ---------- Tags ---------- */

.tvv-blog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tvv-blog__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: var(--tvv-radius-full);
  background: var(--tvv-color-accent-soft);
  color: var(--tvv-color-accent);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.tvv-blog__tag:hover {
  opacity: 0.85;
}

/* ---------- Cards grid ---------- */

.tvv-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 40px;
}

.tvv-blog__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--tvv-color-surface);
  border-radius: var(--tvv-radius-md);
  box-shadow: var(--tvv-shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tvv-blog__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.12);
}

.tvv-blog__card-cover {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  background: #e8e8e8;
}

.tvv-blog__card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tvv-blog__card-date {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: var(--tvv-radius-full);
  background: rgba(13, 13, 15, 0.72);
  color: var(--tvv-color-inverse);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.tvv-blog__card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  flex: 1;
}

.tvv-blog__card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--tvv-color-text);
}
.tvv-blog__card-title a{
    color: inherit;
}
.tvv-blog__card-title a:hover {
  color: var(--tvv-color-accent);
}

.tvv-blog__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.tvv-blog__stars {
  color: var(--tvv-color-accent);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
}

.tvv-blog__rating-text {
  color: var(--tvv-color-text-muted);
  font-size: 13px;
  line-height: 1.2;
}

.tvv-blog__card-divider {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--tvv-color-border);
}

.tvv-blog__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.tvv-blog__stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tvv-color-text-muted);
  font-size: 13px;
  line-height: 1.2;
}

.tvv-blog__stat-icon {
  display: block;
  width: 18px;
  height: 15px;
  flex-shrink: 0;
  object-fit: contain;
}

.tvv-blog__stat-icon--views {
  width: 20px;
  height: 13px;
}

/* ---------- Load more ---------- */

.tvv-blog__card[hidden],
.tvv-blog__card.is-filtered-out {
  display: none !important;
}

.tvv-blog__filter-empty {
  margin: 24px 0 0;
  text-align: center;
  color: var(--tvv-color-text-muted);
  font-size: 16px;
}

.tvv-blog__more {
  display: flex;
  justify-content: center;
  margin: 8px 0 0;
}

.tvv-blog__more[hidden] {
  display: none !important;
}

.tvv-blog__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  color: var(--tvv-color-accent);
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.tvv-blog__more-btn:hover {
  opacity: 0.8;
}

/* ---------- Article header ---------- */

.tvv-blog--article .tvv-blog__breadcrumbs {
  justify-content: center;
  padding-top: 28px;
}

.tvv-blog__article-title {
  margin: 12px auto 28px;
  max-width: 1094px;
  font-size: 40px;
  font-weight: 700;
  line-height: 43px;
  text-align: center;
  color: var(--tvv-color-heading-site);
}

.tvv-blog__article-title-line {
  display: block;
  width: 96px;
  height: 3px;
  margin: 0 auto 36px;
  background: var(--tvv-color-accent);
  border: 0;
}

.tvv-blog__hero {
  display: block;
  width: 100%;
  max-width: var(--tvv-content);
  margin: 0 auto 32px;
  border-radius: 10px;
  overflow: hidden;
}

.tvv-blog__hero img {
  display: block;
  width: 100%;
  height: 417px;
  object-fit: cover;
}

.tvv-blog__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0 0 20px;
}

.tvv-blog__author {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.tvv-blog__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tvv-blog__author-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-text);
}

.tvv-blog__author-role {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  color: var(--tvv-color-text-muted);
}

.tvv-blog__meta-spacer {
  flex: 1 1 24px;
  min-width: 24px;
  height: 1px;
  background: transparent;
}

.tvv-blog__meta .tvv-blog__stars {
  font-size: 18px;
  font-weight: 700;
}

.tvv-blog__meta .tvv-blog__rating-text {
  font-size: 14px;
}

.tvv-blog__meta-date {
  color: var(--tvv-color-text-muted);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.tvv-blog__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 28px;
  padding-bottom: 0;
}

.tvv-blog__meta-row .tvv-blog__tags {
  flex: 1;
}

/* ---------- Article layout ---------- */

.tvv-blog__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
  max-width: var(--tvv-content);
  margin: 0 auto;
}

.tvv-blog__content {
  min-width: 0;
}

.tvv-blog__content > p,
.tvv-blog__lead {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  color: var(--tvv-color-text);
}

.tvv-blog__content > p {
  font-weight: 400;
  line-height: 25px;
}

.tvv-blog__content h2,
.tvv-blog__section-title {
  margin: 40px 0 18px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-text);
}

.tvv-blog__content h2:first-child,
.tvv-blog__section-title:first-child {
  margin-top: 0;
}

.tvv-blog__content img.tvv-blog__inline-img {
  display: block;
  width: 100%;
  max-height: 293px;
  margin: 28px 0;
  border-radius: 10px;
  object-fit: cover;
}

/* TOC */

.tvv-blog__toc {
  margin: 0 0 36px;
  padding: 24px 28px;
  border-radius: var(--tvv-radius-lg);
  background: var(--tvv-color-accent-muted);
}

.tvv-blog__toc-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-accent);
}

.tvv-blog__toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tvv-blog__toc-list li {
  margin: 0 0 10px;
}

.tvv-blog__toc-list li:last-child {
  margin-bottom: 0;
}

.tvv-blog__toc-list a {
  font-size: 16px;
  line-height: 1.2;
  color: #000;
}

.tvv-blog__toc-list a:hover {
  color: var(--tvv-color-accent);
}

/* Distance / feature cards */

.tvv-blog__distance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 36px;
  padding: 22px 24px;
  border-radius: var(--tvv-radius-lg);
  background: var(--tvv-color-surface);
}

.tvv-blog__distance-item strong {
  display: block;
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-accent);
}

.tvv-blog__distance-item span {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: var(--tvv-color-text-muted);
}

.tvv-blog__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}

.tvv-blog__feature {
  padding: 22px 20px;
  border-radius: var(--tvv-radius-lg);
  background: var(--tvv-color-surface);
  min-height: 180px;
}

.tvv-blog__feature-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-text);
}

.tvv-blog__feature-text {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--tvv-color-text-muted);
}

/* Expert tip */

.tvv-blog__tip {
  margin: 0 0 36px;
  padding: 24px 28px;
  border-radius: var(--tvv-radius-lg);
  background: var(--tvv-color-dark);
  color: var(--tvv-color-inverse);
}

.tvv-blog__tip .tvv-blog__author {
  margin-bottom: 10px;
}

.tvv-blog__tip .tvv-blog__author-name {
  color: var(--tvv-color-inverse);
}

.tvv-blog__tip .tvv-blog__author-role {
  color: var(--tvv-color-dark-muted);
}

.tvv-blog__tip-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-inverse);
}

.tvv-blog__tip-text {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  color: var(--tvv-color-inverse);
}

/* Quote / highlight */

.tvv-blog__quote {
  margin: 28px 0;
  padding: 32px 48px;
  border: 2px solid var(--tvv-color-accent);
  border-radius: 10px;
  font-size: 18px;
  line-height: 25px;
  color: var(--tvv-color-text);
}

/* Lists */

.tvv-blog__checklist {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.tvv-blog__checklist li {
  position: relative;
  margin: 0 0 28px;
  padding-left: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--tvv-color-text);
}

.tvv-blog__checklist li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--tvv-color-accent);
  font-weight: 700;
}

.tvv-blog__content ul {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.tvv-blog__content ul li {
  position: relative;
  margin: 0 0 28px;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.3;
  color: var(--tvv-color-text);
}

.tvv-blog__content ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tvv-color-accent);
}

.tvv-blog__content ol {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  counter-reset: tvv-ol;
}

.tvv-blog__content ol li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.3;
  color: var(--tvv-color-text);
  counter-increment: tvv-ol;
}

.tvv-blog__content ol li::before {
  content: counter(tvv-ol) ".";
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--tvv-color-accent);
}

/* table */

.tvv-blog__content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ffe5d9;
    border-radius: 6px;
    overflow: hidden;
    font-size: 16px;
}

.tvv-blog__content table th,
.tvv-blog__content table td {
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #ffe5d9;
}

.tvv-blog__content table th {
    background: #d84900;
    color: #fff;
    font-weight: 700;
}

.tvv-blog__content table tbody tr:nth-child(even) {
    background: #fff7f3;
}

.tvv-blog__content table tbody tr:last-child td {
    border-bottom: none;
}

.tvv-blog__content table td + td,
.tvv-blog__content table th + th {
    border-left: 1px solid #ffe5d9;
}

.tvv-blog__content table a {
    color: #d84900;
    font-weight: 600;
}

/* Sidebar */

.tvv-blog__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 24px;
}

.tvv-blog__share {
  padding: 22px 24px;
  border-radius: var(--tvv-radius-xl);
  background: var(--tvv-color-surface);
}

.tvv-blog__share-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-text);
}

.tvv-blog__share-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.tvv-blog__share-links a {
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
}

.tvv-blog__share-links img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tvv-blog__cta {
  padding: 26px 24px;
  border-radius: var(--tvv-radius-xl);
  background: var(--tvv-color-accent);
  color: var(--tvv-color-inverse);
}

.tvv-blog__cta-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-inverse);
}

.tvv-blog__cta-text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 23px;
  color: var(--tvv-color-inverse);
}

.tvv-blog__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 0;
  border-radius: var(--tvv-radius-sm);
  background: var(--tvv-color-accent);
  color: var(--tvv-color-inverse);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s ease;
}

.tvv-blog__btn:hover {
  opacity: 0.9;
  color: var(--tvv-color-inverse);
}

.tvv-blog__btn--light {
  background: var(--tvv-color-inverse);
  color: var(--tvv-color-accent);
}

.tvv-blog__btn--light:hover {
  color: var(--tvv-color-accent);
}

.tvv-blog__sidebar-toc {
  padding: 29px 20px 20px;
  border-radius: var(--tvv-radius-lg);
  background: var(--tvv-color-accent-muted);
}

.tvv-blog__sidebar-toc .tvv-blog__toc-title {
  font-size: 19px;
  margin-bottom: 10px;
}

.tvv-blog__sidebar-toc .tvv-blog__toc-list a {
  font-size: 15px;
  line-height: 22px;
  color: #161616;
}

.tvv-blog__content .tvv-blog__toc-list li::before {
    content: none;
}

/* Related */

.tvv-blog__related {
  margin: 56px 0 40px;
}

.tvv-blog__related-title {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-text);
}

/* Comments */

.tvv-blog__comments {
  margin: 0 auto;
  max-width: var(--tvv-content);
  padding: 32px 36px;
  border-radius: 18px;
  background: var(--tvv-color-surface);
}

.tvv-blog__comments-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tvv-color-text);
}

.tvv-blog__comments-text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 24px;
  color: var(--tvv-color-text-muted);
}

.tvv-blog__comments-field {
  display: block;
  width: 100%;
  min-height: 96px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid var(--tvv-color-border-input);
  border-radius: 10px;
  background: var(--tvv-color-page-soft);
  color: var(--tvv-color-text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  resize: vertical;
}

.tvv-blog__comments-field::placeholder {
  color: var(--tvv-color-text-muted);
}

.tvv-blog__comments-field:focus {
  outline: 2px solid var(--tvv-color-accent-soft);
  border-color: var(--tvv-color-accent);
}

/* ---------- Responsive ---------- */

@media (max-width: 1199px) {
  .tvv-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tvv-blog__layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
  }

  .tvv-blog__article-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .tvv-blog__hero img {
    height: 320px;
  }
}

@media (max-width: 991px) {
  .tvv-blog__layout {
    grid-template-columns: 1fr;
  }

  .tvv-blog__sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tvv-blog__sidebar-toc {
    grid-column: 1 / -1;
  }

  .tvv-blog__features {
    grid-template-columns: 1fr;
  }

  .tvv-blog__feature {
    min-height: 0;
  }

  .tvv-blog__distance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tvv-blog__meta {
    gap: 12px;
  }

  .tvv-blog__meta-spacer {
    display: none;
  }
}

@media (max-width: 767px) {
  .tvv-blog {
    padding-bottom: 48px;
    font-size: 16px;
  }

  .tvv-blog__breadcrumbs {
    justify-content: flex-start;
    padding-top: 24px;
    font-size: 14px;
    text-align: left;
  }

  .tvv-blog__page-head {
    text-align: left;
    padding-bottom: 20px;
  }

  .tvv-blog__page-title,
  .tvv-blog__article-title {
    font-size: 28px;
    line-height: 1.25;
    text-align: left;
  }

  .tvv-blog__page-title-line,
  .tvv-blog__article-title-line {
    margin-left: 0;
  }

  .tvv-blog__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 20px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .tvv-blog__filter {
    flex-shrink: 0;
    font-size: 13px;
  }

  .tvv-blog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tvv-blog__card-cover {
    height: 200px;
  }

  .tvv-blog__hero {
    margin-bottom: 24px;
  }

  .tvv-blog__hero img {
    height: 240px;
  }

  .tvv-blog__meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tvv-blog__sidebar {
    grid-template-columns: 1fr;
  }

  .tvv-blog__content h2,
  .tvv-blog__section-title,
  .tvv-blog__related-title {
    font-size: 24px;
  }

  .tvv-blog__toc {
    padding: 20px;
  }

  .tvv-blog__toc-title {
    font-size: 20px;
  }

  .tvv-blog__distance {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 12px;
  }

  .tvv-blog__quote {
    padding: 20px;
  }

  .tvv-blog__comments {
    padding: 22px 16px;
  }

  .tvv-blog__comments-title {
    font-size: 22px;
  }

  .tvv-blog__related {
    margin-top: 40px;
  }
}
