/* Sección de noticias - Conócenos */
.news-section {
  padding: 20px 20px 110px;
  background-color: white;
}

.news-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

/* Tarjeta de noticia estilo WhatsApp */
.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid #e0e0e0;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background-color: #e0e0e0;
}

.news-card-content {
  padding: 20px;
}

.news-card-domain {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 500;
}

.news-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1c28;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

/* Responsive - Móvil */
@media (max-width: 968px) {
  .news-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .news-section {
    padding: 15px 15px 75px;
  }

  .news-card-image,
  .news-card-placeholder {
    height: 180px;
  }

  .news-card-title {
    font-size: 1rem;
  }

  .news-card-description {
    font-size: 0.85rem;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 968px) {
  .news-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
