/* CONTENEDOR GENERAL */
.entradas-recientes-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0;
  box-sizing: border-box;
}

/* CONTENEDOR PRINCIPAL DE ENTRADAS */
.entradas-recientes-section {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  color: #fff;
  flex: 2;
}

.entradas-recientes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #ffa800;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.entradas-recientes-label {
  background: #ffa800;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

/* GRID DE ENTRADAS */
.entradas-recientes-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Solo 2 columnas */
  gap: 20px;
}

.entrada-card {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.entrada-card:hover {
  transform: translateY(-5px);
}

.entrada-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.entrada-content {
  padding: 15px;
}

.entrada-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #ffa800;
  text-decoration: none;
  display: block;
}

.entrada-title:hover {
  text-decoration: underline;
}

.entrada-excerpt {
  font-size: 15px;
  line-height: 1.5;
  color: #ccc;
}

/* SIDEBAR */
.sidebar {
  flex: 1;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 16px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .entradas-recientes-wrapper {
    flex-direction: column;
  }

  .entradas-recientes-main {
    grid-template-columns: 1fr;
  }

  .sidebar {
    margin-top: 30px;
  }
} 
