.bloque-informativo-titulo {
  position: relative;
  color: #203E30;
  font-weight: 500;
  font-size: 2.3rem;
  font-family: "Big Caslon", serif;
  padding: 1rem 2rem;
  display: inline-block;
  z-index: 1;
}

/* Imagen de brochazo superpuesta con ::before */
.bloque-informativo-titulo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px; /* Ajusta según la superposición deseada */
  width: 130%;
  height: 100%;
  background-image: url('/sites/default/files/bloque-informativo-home/destacado_4.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  z-index: -1;
}

.bloque-informativo-descripcion {
  font-family: 'Century Gothic';
  color: #203E30;
  font-size: 1rem;
  margin-left: 5%;
}

.bloque-informativo-enlaces {
  margin-left: 5%;
}

.bloque-informativo-enlaces .field--name-field-enlaces {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.bloque-informativo-enlaces .field-item {
  flex: 1 1 calc(50% - 0.5rem);
}

.bloque-informativo-enlaces a {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border: 1px solid #203E30;
  font-family: 'Century Gothic';
  color: #203E30;
  transition: all 0.3s ease;
  position: relative;
  transform-origin: top left;
}

.bloque-informativo-enlaces a:hover {
  transform: scale(1.05); /* crece un 5% visualmente */
  background-color: #203E30;
  color: #fff;
}
/* Al hacer hover sobre el enlace, cambia el icono */
.bloque-informativo-enlaces a:hover::after {
  background-image: url('/sites/default/files/bloque-informativo-home/ic_link_blanco.svg');
}
@media (max-width: 768px) {
  .bloque-informativo-enlaces .field-item {
    flex: 1 1 100%;
  }
  .bloque-informativo-titulo::before {
    width: 100%;
  }
}

.bloque-informativo-enlaces a::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('/sites/default/files/bloque-informativo-home/ic_link.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.bloque-informativo-imagen img {
  transition: transform 0.5s ease;
  transform-origin: top left;
}

@media (min-width: 768px) {
  .bloque-informativo-imagen:hover img {
    transform: scale(1.05);
  }
}
