/* Composant d'infos du post, à droite de la vidéo (après le rail), en bas.
   Rendu dans chaque .feed-post → scrolle avec la vidéo.
   Nom + bouton Follow, description (hashtags en bleu), pills (mock pour
   l'instant ; viendront de la réponse API). */

.post-info {
  position: absolute;
  right: calc(50% + var(--card-w) / 2 + 24px);
  bottom: 28px;
  z-index: 2;
  width: 360px;
  max-width: 30vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font);
}

/* ── Nom + Follow ── */
.post-info__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.post-info__name {
  font-family: 'Poppins', var(--font);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-info__follow {
  flex-shrink: 0;
  border: none;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 6px 24px;
  font-family: 'Poppins', var(--font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.post-info__follow:hover {
  transform: scale(1.04);
}

/* ── Description ── */
.post-info__desc {
  font-family: 'SF Pro Text', 'SF Pro', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-info__hashtag {
  color: #54f9f4;
}

/* ── Pills (mock → API) ── */
.post-info__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-info__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  text-transform: uppercase;
}

.post-info__pill-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
