/* Шторка с рекламой на страницах новостей (только телефоны).
   Ничего не сдвигает: полоса лежит поверх страницы и по умолчанию убрана за верхний край. */
.ns-ad{
  position:fixed; top:0; left:0; right:0; z-index:900;
  display:flex; align-items:center; justify-content:center;
  min-height:60px; max-height:104px; padding:4px 0;
  background:#fff; box-shadow:0 6px 18px rgba(0,0,0,.12);
  transform:translateY(calc(-100% - 34px));   /* уезжает вместе с язычком: за краем ничего не остаётся */ transition:transform .28s ease;
  will-change:transform;
}
.ns-ad.is-on{ transform:none; }
.ns-ad__slot{ width:100%; max-width:970px; display:flex; justify-content:center; }
/* язычок для закрытия: висит под полосой и уезжает вместе с ней */
.ns-ad__close{
  position:absolute; right:10px; bottom:-28px; width:46px; height:28px;
  display:flex; align-items:center; justify-content:center;
  border:0; border-radius:0 0 10px 10px; background:#fff; color:#4b5563;
  box-shadow:0 6px 14px rgba(0,0,0,.10); cursor:pointer; padding:0;
}
.ns-ad__close svg{ width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
@media (min-width:768px){ .ns-ad{ display:none; } }
@media (prefers-reduced-motion:reduce){ .ns-ad{ transition:none; } }
