/* === DETALLE POST === */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

/* HERO */
.post-hero {
  background: #111; /* negro elegante */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.post-hero .hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.post-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #ff4081;
}
.post-hero .meta {
  font-size: 0.95rem;
  color: #ddd;
}
.post-hero .meta i {
  margin-right: 5px;
  color: #ff4081;
}

/* CONTENIDO */
.post-content {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.post-body {
  padding: 30px;
}
.post-body p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}
.post-body h2, 
.post-body h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #111;
}
.post-body a {
  color: #ff4081;
  text-decoration: none;
}
.post-body a:hover {
  text-decoration: underline;
}

/* MEDIA */
.post-media {
  margin: 30px 0;
  padding: 0 30px 30px;
}
.post-media figure {
  margin: 0 0 20px;
}
.post-media img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 20px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .post-hero h1 { font-size: 2rem; }
  .post-body { padding: 20px; }
}
