#anunciar-widget{
all:initial;
display:block;
font-family:Arial,sans-serif;
width:100%;
}

#anunciar-widget *{
box-sizing:border-box;
}

#anunciar-widget .boletin-wrapper{
background:#000;
padding:20px;
border-radius:18px;
overflow:hidden;
}

#anunciar-widget .boletin-header{
display:flex;
align-items:center;
margin-bottom:20px;
}

#anunciar-widget .boletin-logo{
width:220px;
max-width:100%;
display:block;
}

#anunciar-widget .boletin-news-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:18px;
}

#anunciar-widget .boletin-item{
display:flex;
height:120px;
gap:14px;
text-decoration:none;
background:#111;
border-radius:12px;
overflow:hidden;
transition:.2s;
border:1px solid #1f1f1f;
}

#anunciar-widget .boletin-item:hover{
transform:translateY(-2px);
border-color:#444;
box-shadow:0 0 14px rgba(255,255,255,.06);
}

#anunciar-widget .boletin-thumb{
width:130px;
min-width:130px;
height:120px;
}

#anunciar-widget .boletin-thumb img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

#anunciar-widget .boletin-info{
padding:12px 12px 12px 0;
overflow:hidden;
}

#anunciar-widget .boletin-info h3{
color:#fff;
font-size:17px;
margin:0 0 8px;
line-height:1.2;
font-weight:700;
}

#anunciar-widget .boletin-info p{
color:#bbb;
font-size:14px;
line-height:1.4;
margin:0;
}

@media(max-width:900px){

#anunciar-widget .boletin-news-list{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

#anunciar-widget .boletin-item{
flex-direction:column;
height:auto;
}

#anunciar-widget .boletin-thumb{
width:100%;
min-width:100%;
height:180px;
}

#anunciar-widget .boletin-info{
padding:14px;
}

#anunciar-widget .boletin-info h3{
font-size:20px;
}

#anunciar-widget .boletin-info p{
font-size:14px;
}

}