/* родитель под видео — дать полную ширину колонки */
.block-video .sponsor { width:100% !important; max-width:none !important; }

/* 3-2-1 сетка баннеров */
.ad-banner-wrapper{
  direction:ltr;
  display:grid;
  gap:12px;
  justify-content:center;
  margin:0 auto;
  grid-auto-rows:250px;
}

/* >=1024px — три в ряд */
@media (min-width:1024px){
  .ad-banner-wrapper{ grid-template-columns:repeat(3,300px); }
}

/* 680–1023px — два в ряд */
@media (min-width:680px) and (max-width:1023px){
  .ad-banner-wrapper{ grid-template-columns:repeat(2,300px); }
}

/* <680px — один в колонку */
@media (max-width:679px){
  .ad-banner-wrapper{ grid-template-columns:300px; }
}
