/* Reusable Acquiry profile card variants: standard | compact | author */
.acq-profile-card {
  font-family: Rubik, sans-serif;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 8px;
  padding: 20px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  max-width: 520px;
}
.acq-profile-card img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.acq-profile-card .acq-pc-role {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #086AD8;
  font-weight: 500;
  margin: 0 0 4px;
}
.acq-profile-card .acq-pc-name {
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0D1B2E;
  margin: 0 0 6px;
  line-height: 1.25;
}
.acq-profile-card .acq-pc-name a {
  color: inherit;
  text-decoration: none;
}
.acq-profile-card .acq-pc-name a:hover { color: #086AD8; }
.acq-profile-card .acq-pc-bio {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}
.acq-profile-card .acq-pc-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.acq-profile-card .acq-pc-links a { color: #086AD8; }

/* Compact — proposals / sidebars */
.acq-profile-card.acq-pc-compact {
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px;
  max-width: 360px;
}
.acq-profile-card.acq-pc-compact img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}
.acq-profile-card.acq-pc-compact .acq-pc-bio { display: none; }
.acq-profile-card.acq-pc-compact .acq-pc-name { font-size: 0.95rem; margin-bottom: 2px; }

/* Author — article bylines */
.acq-profile-card.acq-pc-author {
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  max-width: none;
  align-items: center;
}
.acq-profile-card.acq-pc-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.acq-profile-card.acq-pc-author .acq-pc-role { display: none; }
.acq-profile-card.acq-pc-author .acq-pc-meta {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}
