/* POST PAGE STYLES — "professors, students & alumni" is the canonical phrasing */

.post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* BACK LINK */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 32px;
  text-decoration: none;
  transition: gap 0.15s;
}
.post-back:hover { gap: 10px; }

/* HEADER */
.post-header { margin-bottom: 32px; }
.post-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.post-tags .tag {
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  background: transparent;
  border: 2px solid currentColor;
  text-decoration: none;
  transition: opacity 0.15s;
}
.post-tags .tag:hover { opacity: 0.75; }
.post-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--dark);
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.post-author { display: flex; align-items: center; gap: 9px; }
.post-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.post-author-name { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.post-author-role { font-size: 11.5px; color: #999; margin-top: 1px; }
.post-meta-sep { width: 4px; height: 4px; border-radius: 50%; background: #ddd; flex-shrink: 0; }
.post-meta-item { font-size: 13px; color: #999; display: flex; align-items: center; gap: 5px; }

/* BODY */
.post-body { font-size: 16px; line-height: 1.8; color: #2a2a2a; }
.post-body h2,
.post-body h3,
.post-body h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.post-body h2 { font-size: 1.5rem; }
.post-body h3 { font-size: 1.25rem; }
.post-body h4 { font-size: 1.05rem; }
.post-body p  { margin-bottom: 18px; }
.post-body ul,
.post-body ol { padding-left: 22px; margin-bottom: 18px; }
.post-body li { margin-bottom: 8px; }
.post-body a  { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--purple-light); }
.post-body strong { font-weight: 700; color: var(--dark); }
.post-body blockquote {
  border-left: 3px solid var(--purple);
  margin: 24px 0;
  padding: 12px 20px;
  background: #f7f4ff;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}
.post-body img { max-width: 100%; border-radius: 12px; margin: 24px 0; }

/* VOTES */
.post-votes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* BOTTOM CTA */
.post-cta {
  margin-top: 56px;
  padding: 32px;
  background: #1E1E2C;
  border-radius: 20px;
  text-align: center;
}
.post-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}
.post-cta h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}
.post-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.post-cta-community {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.post-cta-community:hover { background: rgba(255,255,255,0.18); }
