/* 
  iBahia • 2023 - MUNDIWARE
*/
.ib-ad{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.ib-ad > span{
  letter-spacing: 5px;
  font-size: 11px;
  color: #646464;
  opacity: 0.95;
}
.ib-ad.ad4x3{
  grid-column: span 4;
  height: max-content;
}

.ib-ad.ad4x1 {
  grid-row: span 1;
  grid-column: span 4 / auto;
}

@media (max-width: 1023px){
  .ib-ad.ad4x3{
    grid-column: 1/-1;
  }

  .ib-ad.ad4x1 {
    grid-column: 1/-1;
  }
}
.ib-ad.ad4x6{
  grid-column: span 4;
  grid-row: span 6;
  height: auto;
}
.ib-ad.full{
  grid-column: 1/-1;
  width: 100%;
  height: 250px;
}
@media (max-width: 700px){
  .ib-ad{
    grid-column: 1/-1 !important;
  }
  .ib-ad.full{
    height: 280px;
  }
}