.cabildo-banner {
  position: relative;
  width: 100vw;
  max-width: 100vw !important;
  left: 50%;
  right: 50%;
  margin-left: -50.4vw;
  margin-right: -50vw;
  height: 350px;
  overflow: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cabildo-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.95);
}

.cabildo-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(26, 42, 58, 0.7) 0%,
    rgba(44, 62, 80, 0.7) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.cabildo-banner img,
.cabildo-banner-overlay {
  display: block;
}

@media (max-width: 768px) {
  .cabildo-banner {
    height: 180px;
  }
}

.noticia-img-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.noticia-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(0.97);
  transition: all 0.3s ease;
}

.noticia-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(26, 42, 58, 0.7) 0%,
    rgba(44, 62, 80, 0.7) 100%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.noticia-img-container:hover .noticia-img-overlay {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.noticia-img-container:hover img {
  transition: opacity 0.3s ease;
  filter: grayscale(0) contrast(1.1) brightness(1);
}
