body {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.blog-wrap {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(243, 224, 220, 0.85);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

header {
  text-align: center;
  padding: 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

header h1 {
  margin: 0;
  font-size: 46px;
  color: #e58b2c;
  text-transform: uppercase;
  letter-spacing: 2px;
}

header p {
  margin-top: 10px;
  font-size: 20px;
  color: #333;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

article {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

article:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

article h2 {
  margin-top: 0;
  font-size: 22px;
  color: #ac5f0e;
}

article h2 a {
  text-decoration: none;
  color: #ac5f0e;
  transition: color 0.2s ease;
}

article h2 a:hover {
  color: #e58b2c;
  text-decoration: underline;
}

article small {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

article p {
  font-size: 18px;
  color: #222;
  line-height: 1.5;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 15px;
}

footer a {
  background-color: #e58b2c;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.2s ease;
  display: inline-block;
}

footer a:hover {
  background-color: #ac5f0e;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 34px;
  }

  header p {
    font-size: 18px;
  }

  article p {
    font-size: 16px;
  }
}
/* ==========================
   ESTILO PARA POSTS (post-xxx.html)
   ========================== */

.post-header .back-link {
  margin: 0 0 10px 0;
  text-align: left;
}

.post-header .back-link a {
  color: #ac5f0e;
  text-decoration: none;
  font-weight: bold;
}

.post-header .back-link a:hover {
  color: #e58b2c;
  text-decoration: underline;
}

.post-meta {
  margin: 10px 0 0 0;
}

.post-article {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 22px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.post-article h2 {
  margin-top: 22px;
  font-size: 26px;
  color: #ac5f0e;
}

.post-article ul {
  padding-left: 18px;
  margin: 12px 0 18px 0;
}

.post-article li {
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
}

.post-article p {
  font-size: 18px;
  line-height: 1.6;
  color: #222;
}

.post-article .lead {
  font-size: 19px;
}

.post-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background-color: #e58b2c;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background-color: #ac5f0e;
  transform: translateY(-2px);
}

.btn.btn-ghost {
  background: rgba(255,255,255,0.9);
  color: #ac5f0e;
  border: 2px solid rgba(172, 95, 14, 0.35);
}

.btn.btn-ghost:hover {
  border-color: rgba(172, 95, 14, 0.7);
  color: #ac5f0e;
  background: rgba(255,255,255,1);
}

/* Responsive */
@media (max-width: 600px) {
  .post-article {
    padding: 18px;
  }
  .post-article h2 {
    font-size: 22px;
  }
  .post-article p,
  .post-article li {
    font-size: 16px;
  }
  .post-article .lead {
    font-size: 16.5px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
