@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff8f4;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ======= SECCIÓN DEL BLOG ======= */
.blog-container {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.blog-container h1 {
  font-size: 2.8rem;
  color: #c5423a;
  margin-bottom: 0.5rem;
}

.blog-container .subtitle {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s ease-in-out;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  color: #c5423a;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.blog-content .date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.blog-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.blog-content a {
  text-decoration: none;
  color: #c5423a;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-content a:hover {
  color: #a93730;
}

/* ======= FOOTER ======= */
.footer {
  background-color: #f8d7c4;
  padding: 15px;
  text-align: center;
  color: #80391e;
  font-size: 0.95rem;
  border-top: 2px solid #e8bba0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-container h1 {
    font-size: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.post img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

