.ib-bombandoNaWeb{
  grid-column: span 4;
  grid-row: span 10;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: transparent linear-gradient(199deg, #FF783E 0%, #E41C58 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #00000000;
  border-radius: 12px;
  padding: 16px 16px 30px 16px;
}
.ib-bombandoNaWeb > header{
  padding-bottom: 16px;
  border-bottom: 1px solid #C41230;
}
.ib-bombandoNaWeb > header > h2{
  font-size: 34px;
  line-height: 30px;
  color: var(--branco);
  font-family: 'RedditSans-Bold';
  text-align: center;
}
.ib-bombandoNaWeb > .content{
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
  justify-content: center;
}
.ib-bombandoNaWeb > .content > article > a{
  display: flex;
  gap: 22px;
  align-items: center;
}
.ib-bombandoNaWeb >.content > article > a > img {
  width: 48px;
  height: 55px;
}
.ib-bombandoNaWeb > .content > article > a > .text{
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ib-bombandoNaWeb > .content > article > a > .text > h3{
  font-family: 'RedditSans-Bold';
  font-size: 14px;
  line-height: 18px;
  color: var(--branco);
  letter-spacing: 0.14px;
  text-transform: uppercase;
  opacity: 70%;
}
.ib-bombandoNaWeb > .content > article > a > .text > h2{
  font-family: 'RedditSans-Regular';
  font-size: 18px;
  line-height: 24px;
  color: var(--branco);
  letter-spacing: 0.2px;
  overflow: hidden; /*Atua principalmente no mobile*/
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media (max-width: 769px){
  .ib-bombandoNaWeb{
    grid-column: none;
    width: 100%;
    padding: 14px 20px 24px 20px;
    gap: 20px;
    border-radius: 0;
  }
  .ib-bombandoNaWeb > header{
    padding-bottom: 11px;
  }
  .ib-bombandoNaWeb > header > h2 {
    font-size: 30px;
    line-height: 48px;
    text-align: left;
  }
  .ib-bombandoNaWeb > .content > article > a {
    gap: 20px;
  }
  .ib-bombandoNaWeb > .content > article > a > .text{
    gap: 10px;
  }
  .ib-bombandoNaWeb > .content > article > a > .text > h2 {
    line-height: 22px;
  }
  .ib-bombandoNaWeb > .content > article > a > .text > h3 {
    font-size: 16px;
    line-height: 20px;
    opacity: 80%;
  }
}
    