.postHero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

.postHero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.postHeroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(36, 35, 31, 0.3) 0%, rgba(36, 35, 31, 0.8) 100%);
  z-index: 1;
}

.postHeroContent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.postCategoria {
  display: inline-block;
  background: #7ea8c9;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.postHeroContent h1 {
  color: white;
  font-size: 2.75rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.postMeta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.postMeta span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.postMeta span i {
  color: #7ea8c9;
}

.postSection {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}

.postContainer {
  max-width: 900px;
  width: 100%;
  padding: 0 2rem;
}

.postVolverBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7ea8c9;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.postVolverBtn:hover {
  background: #7ea8c9;
  color: white;
  transform: translateX(-4px);
}

.postArticle {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.postContent {
  color: #333;
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 2rem;
}

.postContent p {
  margin-bottom: 1.5rem;
}

.postFigure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.postFigure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.postFigure:hover img {
  transform: scale(1.02);
}

.postShare {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.postShare > span {
  color: #24231f;
  font-weight: bold;
  font-size: 1rem;
}

.postShareLinks {
  display: flex;
  gap: 0.75rem;
}

.postShareLinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #24231f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.postShareLinks a:hover {
  transform: translateY(-4px);
}

.postShareLinks a:nth-child(1):hover {
  background: #1877f2;
  color: white;
}

.postShareLinks a:nth-child(2):hover {
  background: #1da1f2;
  color: white;
}

.postShareLinks a:nth-child(3):hover {
  background: #25d366;
  color: white;
}

.postVolverBtnBottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  background: #7ea8c9;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(126, 168, 201, 0.4);
  transition: all 0.3s ease;
}

.postVolverBtnBottom:hover {
  background: #5d8fb3;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(126, 168, 201, 0.5);
}

@media (max-width: 768px) {
  .postHero {
    height: 50vh;
    min-height: 300px;
  }

  .postHeroContent {
    padding: 1.5rem;
  }

  .postHeroContent h1 {
    font-size: 1.75rem;
  }

  .postMeta {
    gap: 1rem;
  }

  .postMeta span {
    font-size: 0.9rem;
  }

  .postSection {
    padding: 2rem 0;
  }

  .postContainer {
    padding: 0 1rem;
  }

  .postArticle {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .postContent {
    font-size: 1rem;
    line-height: 1.7;
  }

  .postShare {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .postShareLinks a {
    width: 40px;
    height: 40px;
  }

  .postVolverBtnBottom {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .postHero {
    height: 40vh;
    min-height: 250px;
  }

  .postHeroContent h1 {
    font-size: 1.5rem;
  }

  .postCategoria {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .postMeta span {
    font-size: 0.85rem;
  }
}
