
.noticias-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFC552; 
  margin-bottom: 1rem;
}

.noticias-subtitle {
  font-size: 1.25rem;
  color: #FFC552; 
}

.bg-dark {
  background-color: #007A78 !important; 
}

.noticia-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  margin-bottom: 1.5rem;
}

  .noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

.card-img-wrapper {
  overflow: hidden;
}

.noticia-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.noticia-card:hover img {
  transform: scale(1.1);
}

.noticia-card .card-body {
  padding: 1.5rem;
}

.noticia-card .card-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #007A78; 
  margin-bottom: 0.5rem;
}

.noticia-card .card-date {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 1rem;
}

..noticia-card .card-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6; 
}

.noticia-card .btn-primary {
  background-color: #007A78; 
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

  .noticia-card .btn-primary:hover {
    background-color: #005f5d; 
  }
  