:root {
  --bk-surface-page:        #f8f8fd;
  --bk-surface-secondary:   #eeeefa;
  --bk-surface-tertiary:    #f5f5fb;
  --bk-surface-card:        #ffffff;
  --bk-border:              #e0e0ee;
  --bk-border-light:        #ebebf5;
  --bk-text-primary:        #1a1a1a;
  --bk-text-secondary:      #3a3e48;
  --bk-text-tertiary:       #5a6070;
  --bk-text-muted:          #7a8090;
  --bk-text-faint:          #9aa0b0;
  --bk-text-divider:        #c4c8d2;
  --bk-accent-blue:         #1a4fb8;
  --bk-accent-green:        #1f7a45;
  --bk-accent-green-bg:     #e8f5ee;
  --bk-accent-amber:        #f5a623;
  --bk-accent-red:          #a32d2d;
  --bk-accent-red-bg:       #fceaea;
  --bk-cta-blue:            linear-gradient(90deg, #4F91FF 0%, #3D36B9 100%);
  --bk-cta-blue-border:     #468AFD;
}

.bk-page {
  max-width: 930px;
  margin: 0 auto;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* ===== Breadcrumb ===== */
.bk-bc { font-size: 12.5px; color: var(--bk-text-muted); margin: 0 0 14px; font-family: inherit; }
.bk-bc a { color: var(--bk-accent-blue); text-decoration: none; }
.bk-bc a:hover { text-decoration: underline; }
.bk-bc span { color: var(--bk-text-muted); }

/* ===== H1 + intro ===== */
.bk-rev__title {
  font-size: 30px; font-weight: 600; line-height: 1.2;
  margin: 0 0 14px; color: var(--bk-text-primary); font-family: inherit;
}
.bk-rev__intro { margin: 0 0 22px; }
.bk-rev__intro-paragraph {
  font-size: 18px; line-height: 1.7; color: #2a2e38; margin: 0 0 14px; font-family: inherit;
}
.bk-rev__intro-paragraph:last-child { margin-bottom: 0; }
.bk-rev__intro-paragraph--secondary { font-size: 16px; color: var(--bk-text-secondary); }
.bk-rev__intro-paragraph b { color: var(--bk-text-primary); font-weight: 600; }

/* ===== Service header card ===== */
.bk-rev-header {
  border: 1px solid var(--bk-border); border-radius: 12px; overflow: hidden;
  margin: 0 0 18px; background: #fff; font-family: inherit;
}
.bk-rev-header__top { display: flex; align-items: center; gap: 16px; padding: 18px 20px; flex-wrap: wrap; }
.bk-rev-header__logo {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 10px;
  background: #eef3ff; color: #468AFD; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
}
.bk-rev-header__info { flex: 1; min-width: 180px; }
.bk-rev-header__name-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bk-rev-header__name { font-size: 22px; font-weight: 700; color: var(--bk-text-primary); line-height: 1; }
.bk-rev-header__rating {
  display: inline-flex; align-items: center; gap: 4px; font-size: 14px;
  color: var(--bk-text-tertiary); background: #fff7e6; padding: 3px 9px; border-radius: 5px;
}
.bk-rev-header__rating svg { color: var(--bk-accent-amber); }
.bk-rev-header__rating b { color: var(--bk-text-primary); }
.bk-rev-header__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 9px; }
.bk-rev-tag {
  font-size: 11.5px; font-weight: 600; color: var(--bk-text-tertiary);
  background: var(--bk-surface-secondary); border-radius: 4px; padding: 3px 9px; white-space: nowrap;
}
.bk-rev-header__action { flex-shrink: 0; text-align: right; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.bk-rev-header__price { font-size: 13px; color: var(--bk-text-tertiary); }
.bk-rev-header__price b { color: var(--bk-text-primary); font-size: 15px; }
.bk-rev-header__cta {
  padding: 11px 22px; background: var(--bk-cta-blue); border: 1px solid var(--bk-cta-blue-border);
  color: #fff; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none;
  white-space: nowrap; transition: opacity 0.15s ease;
}
.bk-rev-header__cta:hover { opacity: 0.92; color:#fff; }
.bk-rev-header__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bk-surface-secondary); border-top: 1px solid var(--bk-border);
}
.bk-rev-stat { padding: 10px 12px; text-align: center; border-right: 1px solid var(--bk-border); }
.bk-rev-stat:last-child { border-right: none; }
.bk-rev-stat__label {
  display: block; font-size: 10px; color: var(--bk-text-muted); text-transform: uppercase;
  letter-spacing: 0.4px; font-weight: 500; margin-bottom: 2px;
}
.bk-rev-stat__value { display: block; font-size: 13.5px; font-weight: 600; color: var(--bk-text-primary); }

/* ===== Author byline ===== */
.author-byline {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px; margin: 0 0 24px;
  background: var(--bk-surface-secondary); border: 1px solid var(--bk-border);
  border-radius: 10px; font-family: inherit; flex-wrap: wrap;
}
.author-byline__avatar {
  flex-shrink: 0; display: block; width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.author-byline__avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
.author-byline__info { flex: 1; min-width: 200px; }
.author-byline__line { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.author-byline__label { color: var(--bk-text-muted); font-size: 13px; }
.author-byline__name {
  color: var(--bk-text-primary); font-weight: 600; font-size: 15px; text-decoration: underline;
  text-decoration-color: var(--bk-text-divider); text-decoration-thickness: 1px; text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease;
}
.author-byline__name:hover { text-decoration-color: var(--bk-accent-blue); }
.author-byline__role { color: var(--bk-text-muted); font-size: 13px; }
.author-byline__dates {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  color: var(--bk-text-tertiary); font-size: 13px;
}
.author-byline__date { display: inline-flex; align-items: center; gap: 5px; }
.author-byline__date svg { color: var(--bk-text-faint); }
.author-byline__divider { color: var(--bk-text-divider); }
.author-byline__badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px;
  background: var(--bk-accent-green-bg); color: var(--bk-accent-green);
  border-radius: 999px; font-size: 12px; font-weight: 500; white-space: nowrap;
}

/* ===== Pros / Cons ===== */
.bk-proscons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 26px; font-family: inherit;
}
/* Переключатель-вкладки и радио нужны только на мобилке — на десктопе скрыты */
.bk-proscons__radio { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.bk-proscons__switch { display: none; }
.bk-proscons__hint { display: none; }
.bk-proscons__col { border: 1px solid var(--bk-border); border-radius: 10px; padding: 16px 18px; background: #fff; }
.bk-proscons__title {
  display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700;
  margin: 0 0 12px; color: var(--bk-text-primary);
}
.bk-proscons__col--pro .bk-proscons__title svg { color: var(--bk-accent-green); }
.bk-proscons__col--con .bk-proscons__title svg { color: var(--bk-accent-red); }
.bk-proscons__list { list-style: none; padding: 0; margin: 0; }
.bk-proscons__list li {
  position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 14.5px;
  line-height: 1.5; color: var(--bk-text-secondary);
}
.bk-proscons__list li::before {
  position: absolute; left: 0; top: 1px; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; line-height: 1;
}
.bk-proscons__col--pro .bk-proscons__list li::before {
  content: '✓'; background: var(--bk-accent-green-bg); color: var(--bk-accent-green);
}
.bk-proscons__col--con .bk-proscons__list li::before {
  content: '✕'; background: var(--bk-accent-red-bg); color: var(--bk-accent-red);
}

/* ===== Article body ===== */
.bk-article { color: #2a2e38; line-height: 1.7; margin: 0 0 28px; font-family: inherit; }
.bk-article__intro { font-size: 17px; margin: 0 0 18px; }
.bk-article__intro b { color: var(--bk-text-primary); font-weight: 600; }
.bk-article h2 {
  font-size: 24px; font-weight: 600; color: var(--bk-text-primary); margin: 32px 0 12px; line-height: 1.3;
}
.bk-article h3 {
  font-size: 18px; font-weight: 600; color: var(--bk-text-primary); margin: 22px 0 8px; line-height: 1.35;
}
.bk-article p { font-size: 16px; margin: 0 0 14px; }
.bk-article p b { color: var(--bk-text-primary); font-weight: 600; }
.bk-article ul { list-style: none; padding: 0; margin: 0 0 16px; }
.bk-article ul li { position: relative; padding-left: 18px; margin-bottom: 8px; font-size: 16px; }
.bk-article ul li::before {
  content: ''; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px;
  background: var(--bk-text-divider); border-radius: 50%;
}
.bk-article ul li b { color: var(--bk-text-primary); font-weight: 600; }
.bk-article__warn {
  background: var(--bk-accent-red-bg); border-left: 3px solid var(--bk-accent-red);
  padding: 12px 16px; border-radius: 6px; font-size: 15px;
}
.bk-article__note {
  font-size: 14px; color: var(--bk-text-tertiary); font-style: italic; margin: -6px 0 16px;
}

/* ===== Tables ===== */
.bk-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 16px;
  border: 1px solid var(--bk-border); border-radius: 8px;
}
.bk-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
.bk-table th {
  background: var(--bk-surface-secondary); color: var(--bk-text-primary); font-weight: 600;
  text-align: left; padding: 10px 14px; white-space: nowrap; border-bottom: 1px solid var(--bk-border);
}
.bk-table td { padding: 10px 14px; border-bottom: 1px solid var(--bk-border-light); color: var(--bk-text-secondary); }
.bk-table tr:last-child td { border-bottom: none; }
.bk-table tbody tr:nth-child(odd) { background: var(--bk-surface-tertiary); }
.bk-table td b { color: var(--bk-text-primary); }

/* ===== Inline CTA ===== */
.bk-cta-wrap { margin: 4px 0 22px; text-align: center; }
.bk-inline-cta {
  display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px;
  background: var(--bk-cta-blue); border: 1px solid var(--bk-cta-blue-border); color: #fff;
  border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: opacity 0.15s ease;
}
.bk-inline-cta:hover { opacity: 0.92; color:#fff; }

/* ===== Disclaimer ===== */
.bk-disclaimer {
  margin: 24px 0 0; padding: 14px 16px; background: var(--bk-surface-tertiary);
  border: 1px solid var(--bk-border-light); border-radius: 8px;
}
.bk-disclaimer p { font-size: 13px; color: var(--bk-text-tertiary); line-height: 1.6; margin: 0; }

/* ===== Related: hub + cards ===== */
.bk-related { margin: 28px 0 40px; font-family: inherit; }
.bk-related-hub {
  display: flex; align-items: center; gap: 18px; padding: 18px 22px; margin: 0 0 28px;
  border-radius: 12px; text-decoration: none; color: #fff;
  background: linear-gradient(90deg, #193b56 0%, #21527a 100%); border: 1px solid #2c5a7e;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bk-related-hub:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(25,59,86,.28); color:#fff; }
.bk-related-hub__logo {
  flex-shrink: 0; width: 72px; height: 64px; background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; padding: 8px 12px;
}
.bk-related-hub__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.bk-related-hub__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; opacity: .85; }
.bk-related-hub__title { font-size: 19px; font-weight: 700; line-height: 1.25; }
.bk-related-hub__desc { font-size: 14px; opacity: .9; line-height: 1.45; }
.bk-related-hub__arrow { flex-shrink: 0; font-size: 24px; font-weight: 700; line-height: 1; transition: transform .18s ease; }
.bk-related-hub:hover .bk-related-hub__arrow { transform: translateX(4px); color:#fff; }

.bk-related__heading { font-size: 22px; font-weight: 600; line-height: 1.3; color: var(--bk-text-primary); margin: 0 0 16px; }
.bk-related__heading + .bk-related__grid { margin-bottom: 28px; }
.bk-related__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.bk-rel-card {
  display: flex; flex-direction: column; padding: 16px; background: #fff;
  border: 1px solid var(--bk-border); border-radius: 12px; text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.bk-rel-card:hover { transform: translateY(-3px); border-color: #21527a; box-shadow: 0 8px 22px rgba(33,82,122,.16); }
.bk-rel-card__logo {
  width: 64px; height: 40px; box-sizing: border-box; background: #eef3ff; color: #468AFD;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  padding: 5px 8px; margin-bottom: 12px; font-size: 18px; font-weight: 700;
}
.bk-rel-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.bk-rel-card__name { font-size: 15px; font-weight: 600; color: var(--bk-text-primary); line-height: 1.35; margin-bottom: 6px; }
.bk-rel-card__meta { font-size: 13px; color: var(--bk-text-tertiary); line-height: 1.45; margin-bottom: 14px; }
.bk-rel-card__cta { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--bk-accent-blue); }
.bk-rel-card:hover .bk-rel-card__cta { text-decoration: underline; text-underline-offset: 2px; }

/* ===== FAQ accordion ===== */
.bn-list-faq { margin: 0 0 40px; counter-reset: faq; font-family: inherit; }
.bn-list-faq__title {
  font-size: 24px; font-weight: 600; color: var(--bk-text-primary); margin: 0 0 16px; line-height: 1.3;
}
.bn-list-faq__item {
  border: 1px solid var(--bk-border); border-radius: 8px; margin-bottom: 8px;
  background: #fff; overflow: hidden; counter-increment: faq;
}
.bn-list-faq__item[open] { border-color: var(--bk-text-divider); }
.bn-list-faq__item > summary {
  list-style: none; cursor: pointer; padding: 14px 18px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; transition: background-color 0.15s ease;
}
.bn-list-faq__item > summary::-webkit-details-marker { display: none; }
.bn-list-faq__item > summary::marker { display: none; }
.bn-list-faq__item > summary:hover { background: var(--bk-surface-tertiary); }
.bn-list-faq__item > summary::before {
  content: counter(faq, decimal-leading-zero) " /"; flex-shrink: 0; font-size: 14px; font-weight: 600;
  color: var(--bk-text-muted); letter-spacing: 0.5px; min-width: 36px; margin-right: 6px; transition: color 0.2s ease;
}
.bn-list-faq__item[open] > summary::before { color: var(--bk-accent-blue); }
.bn-list-faq__question { font-size: 16px; font-weight: 600; color: var(--bk-text-primary); margin: 0; flex: 1; line-height: 1.4; }
.bn-list-faq__item > summary::after {
  content: ''; flex-shrink: 0; width: 14px; height: 14px;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 100% 2px, 2px 100%; background-position: center; background-repeat: no-repeat;
  color: var(--bk-text-muted); transition: transform 0.25s ease, color 0.2s ease;
}
.bn-list-faq__item[open] > summary::after { transform: rotate(45deg); color: var(--bk-accent-blue); }
.bn-list-faq__answer {
  color: var(--bk-text-secondary); font-size: 15px; line-height: 1.6;
  height: 0; overflow: hidden; transition: height 0.28s ease; box-sizing: border-box;
}
.bn-list-faq__item[open] > .bn-list-faq__answer { height: auto; }
.bn-list-faq__answer p { margin: 0; padding: 0 18px 16px; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .bk-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bk-rev__title { font-size: 24px; }
  .bk-rev__intro-paragraph { font-size: 16px; }
  .bk-rev__intro-paragraph--secondary { font-size: 15px; }

  .bk-rev-header__top { padding: 14px 16px; gap: 12px; }
  .bk-rev-header__action { width: 100%; text-align: left; align-items: stretch; }
  .bk-rev-header__cta { width: 100%; text-align: center; padding: 12px; box-sizing: border-box; }
  .bk-rev-header__price { text-align: center; }
  .bk-rev-header__stats { grid-template-columns: repeat(2, 1fr); }
  .bk-rev-stat:nth-child(2) { border-right: none; }
  .bk-rev-stat:nth-child(1), .bk-rev-stat:nth-child(2) { border-bottom: 1px solid var(--bk-border); }
  /* Теги: одна строка с горизонтальным скроллом, без рваного переноса */
  .bk-rev-header__tags {
    flex-wrap: nowrap; overflow-x: auto; margin-top: 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .bk-rev-header__tags::-webkit-scrollbar { display: none; }
  .bk-rev-tag { flex-shrink: 0; }

  .bk-article h2, .bn-list-faq__title { font-size: 20px; }
  .bk-article h3 { font-size: 17px; }
  .bk-article p, .bk-article ul li, .bk-article__intro { font-size: 15px; }

  .bk-disclaimer { margin: 18px 0 0; padding: 10px 12px; border-radius: 6px; }
  .bk-disclaimer p { font-size: 11.5px; line-height: 1.45; }

  /* ===== Pros / Cons — вкладки на мобилке ===== */
  /* Сетка отключается, всё складывается в одну карточку.          */
  /* Переключатель показывается, панели Pros/Cons управляются       */
  /* через :checked у радио-инпутов — активна одна за раз.          */
  .bk-proscons {
    display: block; margin: 0 0 22px;
    border: 1px solid var(--bk-border); border-radius: 10px;
    background: #fff; overflow: hidden;
  }
  .bk-proscons__switch { display: flex; border-bottom: 1px solid var(--bk-border); }
  /* Подсказка, что вкладки кликабельны — видна только на мобилке */
  .bk-proscons__hint {
    margin: 0; padding: 7px 14px 0; font-size: 11.5px; color: var(--bk-text-muted);
    text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px;
  }
  .bk-proscons__hint::before {
    content: ''; width: 13px; height: 13px; flex-shrink: 0;
    background: currentColor;
    -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 13V5a2 2 0 0 1 4 0v6'/%3E%3Cpath d='M12 11V4a2 2 0 0 1 4 0v8'/%3E%3Cpath d='M16 12a2 2 0 0 1 4 0v4a6 6 0 0 1-6 6h-2a6 6 0 0 1-5.2-3l-2.3-4a2 2 0 0 1 3.4-2.1'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 13V5a2 2 0 0 1 4 0v6'/%3E%3Cpath d='M12 11V4a2 2 0 0 1 4 0v8'/%3E%3Cpath d='M16 12a2 2 0 0 1 4 0v4a6 6 0 0 1-6 6h-2a6 6 0 0 1-5.2-3l-2.3-4a2 2 0 0 1 3.4-2.1'/%3E%3C/svg%3E");
  }
  .bk-proscons__tab {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 10px; font-size: 13px; font-weight: 600; cursor: pointer;
    color: var(--bk-text-muted); user-select: none; transition: color 0.15s ease;
  }
  .bk-proscons__tab--pro { border-right: 1px solid var(--bk-border); }
  .bk-proscons__tab svg { width: 15px; height: 15px; }
  /* Активная вкладка: цвет + подчёркивающая полоска (inset shadow) */
  .bk-proscons__radio--pro:checked ~ .bk-proscons__switch .bk-proscons__tab--pro {
    color: var(--bk-accent-green); box-shadow: inset 0 -2px 0 var(--bk-accent-green);
  }
  .bk-proscons__radio--con:checked ~ .bk-proscons__switch .bk-proscons__tab--con {
    color: var(--bk-accent-red); box-shadow: inset 0 -2px 0 var(--bk-accent-red);
  }
  /* Панели: по умолчанию скрыты, показывается выбранная радио-кнопкой */
  .bk-proscons__col {
    display: none; border: none; border-radius: 0; background: transparent;
    padding: 12px 14px;
  }
  .bk-proscons__radio--pro:checked ~ .bk-proscons__col--pro { display: block; }
  .bk-proscons__radio--con:checked ~ .bk-proscons__col--con { display: block; }
  /* Внутренний заголовок Pros/Cons больше не нужен — его роль у вкладок */
  .bk-proscons__col .bk-proscons__title { display: none; }
  .bk-proscons__list li {
    font-size: 13.5px; line-height: 1.45; padding-left: 22px; margin-bottom: 7px;
  }
  .bk-proscons__list li:last-child { margin-bottom: 0; }
  .bk-proscons__list li::before { width: 16px; height: 16px; font-size: 10px; top: 2px; }

  /* Доступность: видимый фокус при переходе по табам с клавиатуры */
  .bk-proscons__radio:focus-visible ~ .bk-proscons__switch .bk-proscons__tab {
    outline: 2px solid var(--bk-accent-blue); outline-offset: -2px;
  }

  .bn-list-faq__question { font-size: 15px; }
  .bn-list-faq__item > summary { padding: 12px 14px; }
  .bn-list-faq__answer { font-size: 14.5px; }
  .bn-list-faq__answer p { padding: 0 14px 14px; }

  .author-byline { padding: 12px 14px; flex-direction: column; align-items: stretch; gap: 0; }
  .author-byline__avatar { display: none; }
  .author-byline__line { margin-bottom: 4px; }
  .author-byline__name { font-size: 14px; }
  .author-byline__role { display: block; width: 100%; margin-top: 2px; font-size: 12px; }
  .author-byline__dates { font-size: 12px; margin-bottom: 10px; }
  .author-byline__badge { width: 100%; justify-content: center; padding: 6px 10px; box-sizing: border-box; }

  .bk-related-hub { flex-wrap: wrap; padding: 14px 16px; gap: 14px; }
  .bk-related-hub__logo { width: 56px; height: 52px; padding: 6px 10px; }
  .bk-related-hub__title { font-size: 17px; }
  .bk-related-hub__desc { display: none; }
  .bk-related-hub__arrow { display: none; }
  .bk-related__heading { font-size: 18px; margin-bottom: 14px; }
  .bk-related__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bk-rel-card { padding: 12px; border-radius: 10px; }
  .bk-rel-card__logo { width: 52px; height: 32px; margin-bottom: 9px; font-size: 15px; }
  .bk-rel-card__name { font-size: 13.5px; line-height: 1.3; margin-bottom: 8px; }
  .bk-rel-card__meta { display: none; }
  .bk-rel-card__cta { font-size: 13px; }
}