.noticias {
  padding: 80px 0;
  background: #fff;
}

/* Header con botón */
.noticias-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 20px;
}

.noticias-titulo {
  flex: 1;
}

.noticias-titulo .section-title {
  text-align: left;
  margin-bottom: 10px;
}

.noticias-titulo .section-subtitle {
  text-align: left;
  margin: 0;
  max-width: none;
}

.btn-ver-todas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #5f1e1e 0%, #7a2828 100%);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(95, 30, 30, 0.3);
  white-space: nowrap;
}

.btn-ver-todas:hover {
  background: linear-gradient(135deg, #7a2828 0%, #5f1e1e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(95, 30, 30, 0.4);
}

.btn-ver-todas svg {
  width: 18px;
  height: 18px;
}

/* Grid de noticias */
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card premium */
.noticia-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #eee;
}

.noticia-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(95, 30, 30, 0.12);
  border-color: transparent;
}

/* Imagen con zoom */
.noticia-imagen {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.noticia-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-imagen img {
  transform: scale(1.08);
}

/* Badge de fecha */
.noticia-fecha {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(95, 30, 30, 0.9);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Contenido */
.noticia-content {
  padding: 25px;
}

.noticia-content h3 {
  color: #5f1e1e;
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.noticia-content p {
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.noticia-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e8a210;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.noticia-link:hover {
  color: #5f1e1e;
  gap: 10px;
}

.noticia-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.noticia-link:hover svg {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .noticias-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .noticias-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .noticias-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-ver-todas {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  .noticias {
    padding: 60px 0;
  }
  
  .noticias-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .noticia-imagen {
    height: 180px;
  }
  
  .noticia-content {
    padding: 20px;
  }
  
  .noticia-content h3 {
    font-size: 1rem;
  }
}
