.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.blog-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
}

.blog-categorias {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.categoria-tag {
  background: #f0f0f0;
  color: #2c3e50;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.categoria-tag:hover {
  background: #2c3e50;
  color: white;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  flex: 0 1 320px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  color: inherit;
}

.blog-card-imagen img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-sin-imagen {
  height: 200px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-contenido {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-contenido h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-contenido p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.blog-leer-mas {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #667eea;
}

/* POST DETAIL */
.post-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}

.post-volver a {
  color: #667eea;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.post-volver a:hover {
  text-decoration: underline;
}

.post-imagen {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
}

.post-imagen img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.post-meta {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.post-container h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 30px;
}

.post-contenido {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.9;
}