/* Окрема стаття (single-mbt_article) */
.blog__single { margin-top: 20px; }
.blog__single-title { font-size: 36px; line-height: 1.2; margin: 0px 0 12px; }
.blog__single-meta { color:#777; font-size:14px; display:flex; gap:10px; flex-wrap:wrap; }
.blog__single-thumb { margin:20px 0; border-radius:16px; overflow:hidden; }
.blog__img { width:100%; height:auto; display:block; }

.blog__cat { color:#0a6; text-decoration:none; }
.blog__cat:hover { text-decoration:underline; }
.blog__single-links > li > a {
  border-bottom: 1px dashed #0d0d0d;
  text-decoration: none;
  color: #000;
}

.blog__single-links .toc-arrow {
  line-height: 0;
  display: inline-block;
  font-weight: bold;
}

.blog__single-links .toc-arrow svg {
  width: .9em;            /* розмір як у тексту */
  height: .9em;
  fill: #0d0d0d;
}

.border-bottom{
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 20px;
}
h2{
    font-size: 20px;
    line-height: 1.2;
}
h2, h3{
    margin-top: 20px;
}
.blog__single-links, .blog__single-numbers{
    margin: 0;
}
.blog__single-numbers li > ul {
    margin: 0;
}
.blog__single-dotted, .blog__single-other{
    list-style: disc!important;
    margin: 0;
    margin-bottom: 10px;
}
.left-border{
  border-left: 2px solid #e3e3e3;
  padding-left: 15px;
}
.mt-20{
  margin-top: 20px;
}
.mb-20{
  margin-bottom: 20px;
}

/* Плаваюча кнопка "до Змісту" (лише на single) */
.toc-fab {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #111;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}
.toc-fab:hover { background: #000; }
.toc-fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* на дуже вузьких екранах піднімаємо трохи вище */
@media (max-width: 420px) {
  .toc-fab { right: 14px; bottom: 18px; }
}
.blog__nav {
  margin: 30px 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.blog__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 12px 16px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: background-color .15s ease, opacity .15s ease;
  min-height: 44px;
  line-height: 1;
  text-align: center;
}
.blog__nav-btn:hover { background:#000; }

.blog__nav-btn--prev  { justify-self: start; }
.blog__nav-btn--back  { justify-self: center; background:#f0f0f2; color:#111; }
.blog__nav-btn--back:hover { background:#e6e6ea; }
.blog__nav-btn--next  { justify-self: end; }

.blog__nav-btn.is-disabled {
  opacity: .45;
  pointer-events: none;
}

@media (max-width: 640px) {
  .blog__nav {
    grid-template-columns: 1fr;
  }
  .blog__nav-btn--prev,
  .blog__nav-btn--back,
  .blog__nav-btn--next {
    justify-self: stretch;
  }
}
.blog__textImage{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
@media only screen and (max-width:768px) {
  .blog__textImage{
    flex-direction: column;
  }
}
.blog__text {
  max-width: 500px;
  width: 100%;
  padding: 5px 35px;
  font-size: 18px;
}
@media only screen and (max-width:768px) {
  .blog__text {
    order: 1;
    font-size: 16px;
  }
}
.blog__text h2{
  margin-top: 0;
}

@media only screen and (max-width:768px) {
  .blog__text h2{
    margin-top: 20px;
  }
}
.blog__image {
  width: 180px;
}

@media only screen and (max-width:768px) {
  .blog__image {
    order: 2;
  }
}
@media only screen and (max-width:568px) {
  .blog__image {
    width: 300px;
  }
}
.blog__image img {
  width: 100%;
}
.tac{
  text-align: center;
}