/* =======================================================
   blog-post.css — Leti Blog maqolasi shabloni
   Typography-first, readable article layout
   ======================================================= */

:root {
  --bp-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --bp-measure: 68ch;
  --bp-reading: #1A1420;
  --bp-reading-soft: #3a3342;
}

.bp-main { background: #fff; }

/* ===== READING PROGRESS ===== */
.bp-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}
.bp-progress #bp-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand, #8B0F3E), var(--brand-light, #b8145a));
  transition: width 0.08s linear;
}

/* ===== ARTICLE HEAD ===== */
.bp-head {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, var(--bg-light, #F8F5FA) 0%, #fff 100%);
  border-bottom: 1px solid var(--border, #eae5f0);
}

.bp-breadcrumb { margin-bottom: 20px; }

.bp-cat {
  display: inline-block;
  padding: 6px 14px;
  background: var(--brand-pale, #fdf0f5);
  color: var(--brand, #8B0F3E);
  border-radius: var(--radius-full, 100px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition, .22s);
}
.bp-cat:hover {
  background: var(--brand, #8B0F3E);
  color: #fff;
}

.bp-title {
  font-size: clamp(30px, 4.8vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary, #0F0A14);
  margin: 18px 0 18px;
  max-width: 20ch;
}

.bp-lede {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--text-secondary, #4A4358);
  max-width: 62ch;
  margin-bottom: 32px;
  font-weight: 400;
}

.bp-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--border, #eae5f0);
}
.bp-meta__divider {
  width: 1px;
  height: 28px;
  background: var(--border, #eae5f0);
}
.bp-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--text-muted, #8B8096);
  font-weight: 500;
}
.bp-meta__item svg { opacity: 0.7; }
.bp-meta__share { margin-left: auto; display: flex; gap: 8px; }

/* Author chip */
.bp-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.bp-author__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand, #8B0F3E), var(--brand-light, #b8145a));
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bp-author__info { display: flex; flex-direction: column; gap: 2px; }
.bp-author__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.bp-author__role {
  font-size: 12px;
  color: var(--text-muted, #8B8096);
  font-weight: 500;
}

.bp-share {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border, #eae5f0);
  color: var(--text-secondary, #4A4358);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--transition, .22s);
}
.bp-share:hover {
  border-color: var(--brand, #8B0F3E);
  color: var(--brand, #8B0F3E);
  transform: translateY(-1px);
}
.bp-share.is-copied { border-color: #16a34a; color: #16a34a; }
.bp-share--lg { width: 40px; height: 40px; }

/* ===== HERO IMAGE ===== */
.bp-hero {
  padding: 36px 24px 16px;
}
.bp-hero__image {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-xl, 28px);
  overflow: hidden;
  background: linear-gradient(135deg, #6b0c30 0%, #8B0F3E 55%, #a31148 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
}
.bp-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.12) 0%, transparent 36%),
    radial-gradient(circle at 82% 72%, rgba(255,255,255,.10) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 214, 229, .08) 0%, transparent 50%);
  pointer-events: none;
}
.bp-hero__tag {
  position: relative;
  z-index: 1;
  padding: 7px 16px;
  background: rgba(255,255,255,0.92);
  color: var(--brand, #8B0F3E);
  border-radius: var(--radius-full, 100px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.bp-hero__caption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text-muted, #8B8096);
  text-align: center;
  font-style: italic;
}

/* ===== BODY GRID (article + sticky TOC) ===== */
.bp-body { padding: 48px 0 72px; }
.bp-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

/* ===== TABLE OF CONTENTS ===== */
.bp-toc {
  position: sticky;
  top: 96px;
  align-self: start;
}
.bp-toc__inner {
  padding: 22px 20px;
  background: var(--bg-light, #F8F5FA);
  border: 1px solid var(--border, #eae5f0);
  border-radius: var(--radius-lg, 20px);
}
.bp-toc__title {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted, #8B8096);
  margin-bottom: 14px;
}
.bp-toc__list {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-toc__list li { counter-increment: toc; }
.bp-toc__link {
  display: block;
  position: relative;
  padding: 8px 10px 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary, #4A4358);
  border-radius: 8px;
  line-height: 1.4;
  transition: all var(--transition, .22s);
  border-left: 2px solid transparent;
}
.bp-toc__link:hover {
  color: var(--brand, #8B0F3E);
  background: rgba(139, 15, 62, 0.04);
}
.bp-toc__link.is-active {
  color: var(--brand, #8B0F3E);
  font-weight: 700;
  border-left-color: var(--brand, #8B0F3E);
  background: rgba(139, 15, 62, 0.06);
}

.bp-toc__cta {
  margin-top: 18px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--border, #eae5f0);
  text-align: center;
}
.bp-toc__cta > span {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand, #8B0F3E);
  background: var(--brand-pale, #fdf0f5);
  padding: 4px 10px;
  border-radius: var(--radius-full, 100px);
  margin-bottom: 10px;
}
.bp-toc__cta p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 12px;
}
.bp-toc__cta .btn { width: 100%; }

/* ===== ARTICLE TYPOGRAPHY ===== */
.bp-article {
  max-width: var(--bp-measure);
  font-family: var(--bp-serif);
  color: var(--bp-reading);
  font-size: 18.5px;
  line-height: 1.75;
  letter-spacing: -0.003em;
}

.bp-article > * + * { margin-top: 1.2em; }

.bp-article p {
  font-size: inherit;
  line-height: 1.75;
  color: var(--bp-reading-soft);
}

/* Drop-cap on first paragraph after callout */
.bp-article > .bp-callout + h2 { margin-top: 1.8em; }

.bp-article h2 {
  font-family: var(--font, 'Inter', sans-serif);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary, #0F0A14);
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  scroll-margin-top: 100px;
  position: relative;
  padding-left: 18px;
}
.bp-article h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  bottom: 0.32em;
  width: 4px;
  border-radius: 3px;
  background: var(--brand, #8B0F3E);
}

.bp-article h3 {
  font-family: var(--font, 'Inter', sans-serif);
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  scroll-margin-top: 100px;
}

.bp-article a {
  color: var(--brand, #8B0F3E);
  text-decoration: underline;
  text-decoration-color: rgba(139, 15, 62, 0.3);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: all var(--transition, .22s);
  font-weight: 500;
}
.bp-article a:hover {
  text-decoration-color: var(--brand, #8B0F3E);
  background: var(--brand-pale, #fdf0f5);
}

.bp-article strong { color: var(--text-primary, #0F0A14); font-weight: 700; }
.bp-article em { font-style: italic; color: var(--bp-reading); }

.bp-article ul, .bp-article ol {
  padding-left: 1.6em;
  color: var(--bp-reading-soft);
}
.bp-article ul { list-style: none; }
.bp-article ul li {
  position: relative;
  padding-left: 4px;
  margin-bottom: 0.55em;
  line-height: 1.7;
}
.bp-article ul li::before {
  content: "";
  position: absolute;
  left: -1em;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand, #8B0F3E);
}
.bp-article ol { list-style: none; counter-reset: li; }
.bp-article ol > li {
  counter-increment: li;
  position: relative;
  padding-left: 0.2em;
  margin-bottom: 0.7em;
  line-height: 1.7;
}
.bp-article ol > li::before {
  content: counter(li);
  position: absolute;
  left: -1.8em;
  top: 0.05em;
  width: 1.5em;
  height: 1.5em;
  background: var(--brand-pale, #fdf0f5);
  color: var(--brand, #8B0F3E);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

/* Blockquote */
.bp-quote {
  margin: 2em 0;
  padding: 24px 28px 24px 32px;
  background: var(--bg-light, #F8F5FA);
  border-left: 4px solid var(--brand, #8B0F3E);
  border-radius: 0 var(--radius-md, 12px) var(--radius-md, 12px) 0;
  font-style: italic;
}
.bp-quote p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-primary);
  margin: 0;
}
.bp-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font);
  font-size: 13.5px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted, #8B8096);
}

/* Callouts */
.bp-callout {
  margin: 2em 0;
  padding: 22px 24px;
  border-radius: var(--radius-lg, 20px);
  border: 1px solid var(--border, #eae5f0);
  background: #fff;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.bp-callout__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-light);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.bp-callout strong {
  display: block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.bp-callout p, .bp-callout ul, .bp-callout ol {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.bp-callout ul { padding-left: 1.3em; margin: 0; }
.bp-callout ul li { margin-bottom: 0.3em; }
.bp-callout ul li::before { top: 0.62em; }

.bp-callout--key {
  background: linear-gradient(135deg, #fdf0f5 0%, #fff 100%);
  border-color: rgba(139, 15, 62, 0.2);
}
.bp-callout--key .bp-callout__icon {
  background: var(--brand-pale);
}

.bp-callout--tip {
  background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
  border-color: #bae6fd;
}
.bp-callout--tip .bp-callout__icon { background: #e0f2fe; }

.bp-callout--warn {
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
  border-color: #fde68a;
}
.bp-callout--warn .bp-callout__icon { background: #fef3c7; }

/* Tables */
.bp-table-wrap {
  margin: 2em 0;
  overflow-x: auto;
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--border, #eae5f0);
  -webkit-overflow-scrolling: touch;
}
.bp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text-primary);
}
.bp-table thead {
  background: var(--bg-light, #F8F5FA);
}
.bp-table th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1.5px solid var(--border, #eae5f0);
  font-size: 13px;
  letter-spacing: 0.01em;
}
.bp-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border, #eae5f0);
  line-height: 1.55;
  color: var(--text-secondary);
}
.bp-table tr:last-child td { border-bottom: none; }
.bp-table td:first-child { font-weight: 600; color: var(--text-primary); }

/* Figures */
.bp-figure {
  margin: 2em 0;
}
.bp-figure__placeholder {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(139,15,62,0.08) 0%, rgba(184,20,90,0.06) 100%),
    repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(139,15,62,0.03) 10px, rgba(139,15,62,0.03) 20px);
  border: 1px dashed var(--border-dark, #C8C0D4);
  border-radius: var(--radius-lg, 20px);
  display: grid;
  place-items: center;
}
.bp-figure__label {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand, #8B0F3E);
  padding: 8px 18px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-full, 100px);
}
.bp-figure figcaption {
  margin-top: 12px;
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--text-muted, #8B8096);
  text-align: center;
  font-style: italic;
}

/* FAQ (details/summary) */
.bp-faq {
  margin: 12px 0;
  padding: 0;
  border: 1px solid var(--border, #eae5f0);
  border-radius: var(--radius-md, 12px);
  background: #fff;
  overflow: hidden;
  transition: all var(--transition, .22s);
}
.bp-faq[open] {
  border-color: rgba(139, 15, 62, 0.25);
  box-shadow: 0 4px 16px rgba(139, 15, 62, 0.06);
}
.bp-faq summary {
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 16px 48px 16px 20px;
  cursor: pointer;
  position: relative;
  list-style: none;
  line-height: 1.4;
}
.bp-faq summary::-webkit-details-marker { display: none; }
.bp-faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--brand-pale, #fdf0f5);
  color: var(--brand, #8B0F3E);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  transition: all var(--transition, .22s);
}
.bp-faq[open] summary::after {
  content: "−";
  background: var(--brand, #8B0F3E);
  color: #fff;
}
.bp-faq p {
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  padding: 0 20px 18px;
  margin: 0;
}

/* Inline CTA card */
.bp-inline-cta {
  margin: 2.4em 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, #8B0F3E 0%, #6b0c30 100%);
  border-radius: var(--radius-xl, 28px);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bp-inline-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.bp-inline-cta__text { position: relative; z-index: 1; }
.bp-inline-cta h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #fff;
}
.bp-inline-cta p {
  font-family: var(--font);
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.55;
}
.bp-inline-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bp-inline-cta .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.bp-inline-cta .btn--outline:hover {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.bp-inline-cta .btn--primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.bp-inline-cta .btn--primary:hover {
  background: var(--brand-pale);
  color: var(--brand-dark);
}

/* Article foot */
.bp-article__foot {
  margin-top: 3em;
  padding-top: 28px;
  border-top: 1px solid var(--border, #eae5f0);
  font-family: var(--font);
}

.bp-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.bp-tags__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted, #8B8096);
  margin-right: 4px;
}
.bp-tag {
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary, #4A4358);
  background: var(--bg-light, #F8F5FA);
  border-radius: var(--radius-full, 100px);
  transition: all var(--transition, .22s);
}
.bp-tag:hover {
  background: var(--brand-pale, #fdf0f5);
  color: var(--brand, #8B0F3E);
}

.bp-share-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bp-share-row__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted, #8B8096);
  margin-right: 6px;
}

.bp-author-card {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-light, #F8F5FA);
  border-radius: var(--radius-lg, 20px);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}
.bp-author-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light, #b8145a));
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  display: grid;
  place-items: center;
}
.bp-author-card__role {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand, #8B0F3E);
  margin-bottom: 6px;
}
.bp-author-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.bp-author-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.bp-author-card__link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand, #8B0F3E);
  transition: all var(--transition, .22s);
}
.bp-author-card__link:hover {
  color: var(--brand-dark, #6a0b2f);
  transform: translateX(2px);
  display: inline-block;
}

/* ===== RELATED ===== */
.bp-related {
  padding: 80px 0 40px;
  background: #fff;
  border-top: 1px solid var(--border, #eae5f0);
}
.bp-related .section-header { margin-bottom: 40px; }

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1024px) {
  .bp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bp-toc {
    position: static;
    order: -1;
  }
  .bp-toc__inner { padding: 18px; }
  .bp-toc__cta { display: none; }
  .bp-article { max-width: 720px; margin: 0 auto; }
  .bp-hero__image { aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .bp-head { padding: 28px 0 24px; }
  .bp-title { margin: 14px 0 14px; }
  .bp-lede { font-size: 16px; margin-bottom: 24px; }

  .bp-meta {
    gap: 12px;
    padding-top: 18px;
  }
  .bp-meta__share { margin-left: 0; width: 100%; order: 99; }
  .bp-meta__divider { display: none; }
  .bp-author__avatar { width: 40px; height: 40px; font-size: 13.5px; }

  .bp-hero { padding: 24px 16px 8px; }
  .bp-hero__image {
    border-radius: var(--radius-lg, 20px);
    padding: 20px;
    aspect-ratio: 4 / 3;
  }

  .bp-body { padding: 32px 0 56px; }

  /* Article typography scaling */
  .bp-article { font-size: 17px; line-height: 1.7; }
  .bp-article h2 {
    margin-top: 1.8em;
    padding-left: 14px;
    font-size: 22px;
  }
  .bp-article h2::before { width: 3px; }
  .bp-article h3 { font-size: 18px; margin-top: 1.5em; }

  .bp-quote {
    padding: 18px 20px 18px 22px;
    margin: 1.6em -4px;
  }
  .bp-quote p { font-size: 16.5px; }

  .bp-callout {
    padding: 18px;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    margin: 1.6em 0;
  }
  .bp-callout__icon {
    width: 36px; height: 36px;
    font-size: 18px;
    border-radius: 10px;
  }
  .bp-callout p, .bp-callout ul { font-size: 14px; }

  .bp-table { font-size: 13.5px; }
  .bp-table th, .bp-table td { padding: 10px 12px; }

  .bp-figure__placeholder { aspect-ratio: 4 / 3; }

  .bp-faq summary { font-size: 14.5px; padding: 14px 44px 14px 16px; }
  .bp-faq p { font-size: 14px; padding: 0 16px 14px; }

  .bp-inline-cta {
    padding: 24px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: var(--radius-lg, 20px);
  }
  .bp-inline-cta h3 { font-size: 19px; }
  .bp-inline-cta__actions { width: 100%; }
  .bp-inline-cta__actions .btn { flex: 1; }

  .bp-author-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .bp-author-card__avatar { width: 56px; height: 56px; font-size: 18px; }
  .bp-author-card h4 { font-size: 15.5px; }
  .bp-author-card p { font-size: 13.5px; }

  .bp-related { padding: 56px 0 24px; }
}
