/* ============================================================
   GRIT — Post Detail Page (full redesign)
   post.css
   ============================================================ */

/* ── Loading ──────────────────────────────────────────────── */
.post-loading {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 70vh; gap: 16px;
  color: var(--text-muted); font-size: 14px;
}
.post-loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(124,124,255,0.15);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.post-error {
  max-width: 600px; margin: 120px auto;
  text-align: center; color: #ff8a8a;
  font-size: 15px; padding: 0 24px;
}

/* =============================================
   READING PROGRESS BAR
   ============================================= */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--violet), var(--teal));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(124,124,255,0.6);
}

/* =============================================
   CINEMATIC HERO
   ============================================= */
.post-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #05060f;
  transition: transform 10s ease;
}
.post-hero:hover .hero-bg { transform: scale(1.04); }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(4,5,13,1) 0%, rgba(4,5,13,0.75) 40%, rgba(4,5,13,0.2) 100%),
    linear-gradient(to right, rgba(4,5,13,0.6) 0%, transparent 70%);
}

/* Subtle grid */
.post-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,124,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,124,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 72px 56px 60px;
  max-width: 920px; width: 100%;
  animation: heroIn 0.6s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: none; margin-bottom: 28px;
  transition: color 0.18s;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px; border-radius: 99px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
.hero-back:hover { color: #fff; border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.08); }

.hero-badges { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }

.hero-game-tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 99px;
  background: rgba(199,125,255,0.15); color: var(--violet);
  border: 1px solid rgba(199,125,255,0.28);
}

.hero-type-badge {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 99px; border: 1px solid;
}
.hero-type-badge.badge-guide { background: rgba(93,202,165,0.14); color: var(--teal);  border-color: rgba(93,202,165,0.28); }
.hero-type-badge.badge-build { background: rgba(124,124,255,0.14); color: #a89bff;     border-color: rgba(124,124,255,0.28); }

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 58px; font-weight: 700;
  line-height: 1.05; letter-spacing: 0.3px;
  margin: 0 0 16px; color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
  max-width: 800px;
}

.hero-desc {
  font-size: 18px; color: rgba(220,225,245,0.65);
  line-height: 1.65; margin: 0 0 28px;
  max-width: 580px;
}

.hero-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-author {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.15s;
}
.hero-author:hover { color: var(--violet); }

.hero-author-avatar {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.hero-author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.hero-date { font-size: 13px; color: rgba(255,255,255,0.35); }

/* Quick stats in hero */
.hero-quick-stats {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.hqs-item { display: flex; align-items: center; gap: 5px; }

/* =============================================
   FLOATING ACTION BAR
   ============================================= */
.post-action-bar {
  position: sticky; top: var(--navbar-h);
  z-index: 90;
  background: rgba(5,6,14,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.post-action-inner {
  display: flex; align-items: center; gap: 2px;
  max-width: 1200px; margin: 0 auto; height: 54px;
}

.pab-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: none; border: none;
  border-radius: 10px;
  color: var(--text-muted); font-size: 13px;
  font-weight: 500; font-family: inherit;
  cursor: pointer; transition: all 0.18s;
  text-decoration: none;
}
.pab-btn:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.pab-btn.liked { color: #ff5c7a; }
.pab-btn.saved { color: var(--teal); }

.pab-icon { font-size: 16px; line-height: 1; }

.pab-count {
  background: rgba(255,255,255,0.07);
  border-radius: 99px; padding: 2px 8px;
  font-size: 11px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.08);
}
.pab-btn.liked .pab-count { background: rgba(255,92,122,0.15); color: #ff5c7a; border-color: rgba(255,92,122,0.2); }

.pab-separator {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.pab-edit:hover   { color: var(--purple); background: var(--purple-dim); }
.pab-delete:hover { color: #ff6b6b; background: rgba(255,107,107,0.08); }

/* =============================================
   BODY LAYOUT
   ============================================= */
.post-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  max-width: 1200px;
  margin: 52px auto 0;
  padding: 0 56px 120px;
  align-items: start;
}

/* =============================================
   VIDEO
   ============================================= */
.post-video-wrap {
  margin-bottom: 36px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.post-video-label {
  padding: 14px 20px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  display: flex; align-items: center; gap: 8px;
}

.post-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  overflow: hidden;
}
.post-video-container iframe,
.post-video-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   CONTENT SECTIONS — premium redesign
   ============================================= */
.post-sections {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 56px;
}

.post-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, box-shadow 0.2s;
  animation: sectionIn 0.4s ease both;
  position: relative;
}
.post-section:hover {
  border-color: rgba(124,124,255,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
@keyframes sectionIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Left accent bar */
.post-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--purple), var(--violet));
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 0 3px 3px 0;
}
.post-section:hover::before { opacity: 1; }

.post-section-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.018);
}

.section-number {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
  font-family: 'Rajdhani', sans-serif;
  box-shadow: 0 2px 10px var(--purple-glow);
}

.post-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px; font-weight: 700;
  color: #fff; letter-spacing: 0.2px; margin: 0;
}

.post-section-body { padding: 24px 28px; }

.post-section-body p {
  font-size: 15.5px;
  color: rgba(218,222,242,0.82);
  line-height: 1.85;
  margin-bottom: 16px;
}
.post-section-body p:last-child { margin-bottom: 0; }

/* Inline code */
.post-section-body code {
  background: rgba(124,124,255,0.1);
  border: 1px solid rgba(124,124,255,0.18);
  border-radius: 5px; padding: 2px 7px;
  font-size: 13px; color: #a89bff;
  font-family: 'Courier New', monospace;
}

/* =============================================
   COMMENTS — modern redesign
   ============================================= */
.post-comments {
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.comments-heading {
  font-size: 26px; font-family: 'Rajdhani', sans-serif;
  font-weight: 700; margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px; color: #fff;
}

.comment-count-badge {
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; background: var(--purple-dim);
  border: 1px solid var(--border-lit); color: var(--purple);
  border-radius: 99px; padding: 3px 12px;
}

/* Comment form */
.comment-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden; margin-bottom: 32px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.comment-form:focus-within {
  border-color: rgba(124,124,255,0.3);
  box-shadow: 0 0 0 3px rgba(124,124,255,0.06);
}

.comment-form textarea {
  display: block; width: 100%;
  background: none; border: none; outline: none;
  padding: 20px 24px; color: var(--text);
  font-size: 14px; font-family: inherit; line-height: 1.7;
  resize: none; min-height: 110px;
}
.comment-form textarea::placeholder { color: var(--text-hint); }

.comment-form-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.018);
}
.comment-hint { font-size: 11px; color: var(--text-hint); }

.comment-submit-btn {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--purple), #5a5aff);
  border: none; border-radius: 10px;
  color: #fff; font-size: 13px; font-weight: 700;
  font-family: 'Rajdhani', sans-serif; letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.18s;
  box-shadow: 0 2px 12px var(--purple-glow);
}
.comment-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--purple-glow); }
.comment-submit-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* Comment items */
.comment-item {
  display: flex; gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.comment-item:last-child { border-bottom: none; }

.comment-item-avatar {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
  flex-shrink: 0; overflow: hidden;
}
.comment-item-avatar img { width: 100%; height: 100%; object-fit: cover; }

.comment-item-right { flex: 1; min-width: 0; }

.comment-header {
  display: flex; align-items: center;
  gap: 10px; margin-bottom: 8px; flex-wrap: wrap;
}
.comment-username {
  font-size: 14px; font-weight: 700; color: var(--violet);
  text-decoration: none; transition: color 0.15s;
}
.comment-username:hover { color: #fff; }
.comment-date { font-size: 11px; color: var(--text-hint); }

.comment-body {
  font-size: 14px; color: rgba(218,222,242,0.78); line-height: 1.75;
}

.delete-comment-btn {
  margin-left: auto; background: none; border: none;
  color: var(--text-hint); cursor: pointer;
  font-size: 11px; padding: 4px 8px; border-radius: 6px;
  transition: all 0.15s;
}
.delete-comment-btn:hover { color: var(--red); background: rgba(255,92,92,0.08); }

.no-comments {
  padding: 48px 0; text-align: center;
  color: var(--text-muted); font-size: 14px;
}
.no-comments-icon { font-size: 36px; opacity: 0.35; margin-bottom: 12px; }

/* =============================================
   SIDEBAR
   ============================================= */
.post-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + 72px);
  display: flex; flex-direction: column; gap: 16px;
}

/* Author card */
.sidebar-author-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px; text-align: center;
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
}
.sidebar-author-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(135deg, rgba(124,124,255,0.08), rgba(199,125,255,0.06));
}

.author-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700; color: #fff;
  border: 3px solid rgba(5,6,14,1);
  box-shadow: 0 0 0 1px var(--border-lit), 0 0 24px var(--purple-glow);
  position: relative; z-index: 1;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-info { display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 1; }
.author-name {
  font-family: 'Rajdhani', sans-serif; font-size: 20px;
  font-weight: 700; color: #fff;
}
.author-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.author-follow-btn {
  width: 100%; padding: 11px;
  background: var(--purple-dim); border: 1px solid var(--border-lit);
  border-radius: 12px; color: var(--purple);
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all 0.18s;
  position: relative; z-index: 1;
}
.author-follow-btn:hover { background: rgba(124,124,255,0.28); color: #fff; border-color: var(--purple); transform: translateY(-1px); box-shadow: 0 4px 16px var(--purple-glow); }
.author-follow-btn.following { background: var(--purple); color: #fff; border-color: var(--purple); }

/* Stats card */
.sidebar-stats-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 20px;
  display: flex; align-items: center; justify-content: space-around;
  backdrop-filter: blur(12px);
}
.sidebar-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ss-num { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: #fff; }
.ss-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.ss-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.06); }

/* Action buttons */
.sidebar-actions { display: flex; flex-direction: column; gap: 10px; }

.sidebar-action-btn {
  padding: 13px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); color: var(--text-muted);
  font-size: 14px; font-weight: 500; font-family: inherit;
  cursor: pointer; transition: all 0.18s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  backdrop-filter: blur(10px);
}
.sidebar-action-btn:hover { border-color: var(--border-lit); color: var(--text); background: var(--purple-dim); }
.sidebar-action-btn.liked-btn.active { border-color: rgba(255,92,122,0.4); background: rgba(255,92,122,0.1); color: #ff5c7a; }
.sidebar-action-btn.save-btn.active  { border-color: rgba(93,202,165,0.4); background: rgba(93,202,165,0.1); color: var(--teal); }

/* Post info card */
.sidebar-info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 18px 20px;
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 12px;
}
.sidebar-info-row {
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.sir-label { color: var(--text-muted); }
.sir-value { color: var(--text); font-weight: 600; }

/* ── Toast ────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  background: rgba(10,12,22,0.98); border: 1px solid var(--border-lit);
  color: var(--text); padding: 12px 28px; border-radius: 99px;
  font-size: 14px; font-weight: 500; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,124,255,0.1);
  white-space: nowrap; z-index: 999;
}
.toast.show { opacity: 1; }

/* ── Delete modal ─────────────────────────────────────────── */
.delete-modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  z-index: 500; display: flex; align-items: center;
  justify-content: center; padding: 20px;
}
.delete-modal {
  background: rgba(8,10,20,0.99);
  border: 1px solid rgba(255,92,92,0.22);
  border-radius: var(--radius-xl); padding: 44px 40px;
  max-width: 420px; width: 100%; text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  animation: modalIn 0.22s cubic-bezier(0.2,0.9,0.3,1) both;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(0.94) translateY(14px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.delete-modal-icon { font-size: 48px; margin-bottom: 18px; }
.delete-modal h3 { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.delete-modal p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 30px; }
.delete-modal-actions { display: flex; gap: 12px; justify-content: center; }
.delete-cancel-btn {
  padding: 12px 26px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-md); border-radius: 12px;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  font-family: inherit; cursor: pointer; transition: all 0.18s;
}
.delete-cancel-btn:hover { border-color: var(--text-muted); color: var(--text); }
.delete-confirm-btn {
  padding: 12px 26px; background: rgba(255,92,92,0.14);
  border: 1px solid rgba(255,92,92,0.32); border-radius: 12px;
  color: #ff8a8a; font-size: 14px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all 0.18s;
}
.delete-confirm-btn:hover { background: rgba(255,92,92,0.26); color: #fff; border-color: rgba(255,92,92,0.6); }
.delete-confirm-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .post-body { grid-template-columns: 1fr; padding: 0 24px 80px; }
  .post-sidebar { position: static; }
  .hero-content { padding: 48px 28px 44px; }
  .hero-title { font-size: 40px; }
  .post-action-bar { padding: 0 24px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 30px; }
  .hero-desc  { font-size: 16px; }
  .post-hero  { min-height: 400px; }
  .post-section-header { padding: 14px 20px; }
  .post-section-body { padding: 18px 20px; }
}

/* ── @mention highlighting ───────────────────────────────── */
.mention {
  color: var(--purple);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s;
}
.mention:hover { color: var(--violet); }

/* ── @mention autocomplete dropdown ─────────────────────── */
.mention-dropdown {
  background: rgba(8,10,20,0.99);
  border: 1px solid rgba(124,124,255,0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  backdrop-filter: blur(20px);
  overflow: hidden;
  min-width: 200px;
  max-width: 280px;
}
.mention-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; cursor: pointer;
  transition: background 0.12s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mention-item:last-child { border-bottom: none; }
.mention-item:hover,
.mention-item.active { background: rgba(124,124,255,0.1); }
.mention-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
  overflow: hidden;
}
.mention-username {
  font-size: 13px; font-weight: 600; color: var(--text);
}

/* ── Image Gallery ────────────────────────────────────────── */
.post-gallery-wrap { margin: 24px 0; }
.post-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.post-gallery-item {
  border-radius: 10px; overflow: hidden; cursor: zoom-in;
  border: 1px solid var(--border); aspect-ratio: 16/10;
}
.post-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.2s;
}
.post-gallery-item:hover img { transform: scale(1.03); }