/* ═══════════════════════════════════
   POST PAGE
═══════════════════════════════════ */

.post-page {
  background: #fff;
  min-height: 100vh;
}

/* ── MOBILE HERO: hidden on desktop ── */
.post-hero {
  display: none;
}

@media (max-width: 768px) {
  .post-hero {
    display: block;
  }
  .post-header-wrap {
    display: none !important;
  }
}

/* ── HERO styles (mobile only) ── */
.post-hero {
  position: relative;
  background: #000;
}

.post-hero-img-wrap {
  position: relative;
  width: 100%;
  height: 58vh;
  min-height: 340px;
  max-height: 600px;
  overflow: hidden;
}
.post-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Bookmark circle top-right */
.post-hero-bookmark {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #e11d48;
  color: #fff;
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.4);
  transition: background 0.15s, transform 0.15s;
}
.post-hero-bookmark:hover { background: #be123c; transform: scale(1.06); }

/* White card slides up over image */
.post-hero-card {
  position: relative;
  margin-top: -36px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 28px 24px 32px;
  display: flex;
  gap: 0;
  align-items: flex-start;
  z-index: 5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

/* Left column: actions */
.post-hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 88px;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid #f3f4f6;
  margin-right: 20px;
}

.post-hero-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}
.post-hero-btn:hover { transform: scale(1.06); opacity: 0.9; }
.post-hero-btn--like { background: #ffe4e6; color: #e11d48; }
.post-hero-btn--share { background: #fef3c7; color: #d97706; }

.post-hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.post-hero-sep {
  width: 28px; height: 3px;
  background: #22c55e;
  border-radius: 3px;
  margin: 4px 0;
}

/* Right column: content */
.post-hero-right {
  flex: 1;
  min-width: 0;
}

.post-hero-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: #0f766e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.15s;
}
.post-hero-badge:hover { opacity: 0.85; }

.post-hero-title {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  letter-spacing: -0.5px;
  font-family: var(--font-heading);
  margin: 0 0 14px;
}

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #9ca3af;
}
