/* ZonaCampo Noticias - Estilos para InLineaNoticias */

.zcn-posts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

.zcn-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.zcn-post-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.zcn-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #0b2732;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
}

.zcn-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.zcn-card-image {
  position: relative;
  width: 100%;
  padding-top: 125%; /* Aspect ratio 4:5 */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  transition: transform 0.3s ease;
  flex-grow: 1;
}

.zcn-post-card:hover .zcn-card-image {
  transform: scale(1.05);
}

.zcn-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, transparent 60%);
  z-index: 0;
  border-radius: 8px;
}

.zcn-card-title {
  position: relative;
  z-index: 1;
  color: white;
  padding: 15px;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
}

.zcn-no-posts {
  text-align: center;
  padding: 40px;
  color: #6c757d;
  font-size: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 992px) {
  .zcn-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .zcn-posts-grid {
    grid-template-columns: 1fr;
  }

  .zcn-card-title {
    font-size: 16px;
  }
}
