.people-detail-page .news-update-btn,
.people-detail-page .social-update-btn {
  height: 32px;
  padding: 5px;
}
.people-detail-page .news-update-btn {
  border-color: var(--border) !important;
}

.people-detail-page .profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.people-detail-page .profile-completeness {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.6fr);
  gap: 28px;
  align-items: center;
  margin-top: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.people-detail-page .profile-completeness__summary {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.people-detail-page .profile-completeness__ring {
  --profile-completeness-score: 0;
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-primary) calc(var(--profile-completeness-score) * 1%),
    color-mix(in srgb, var(--border) 82%, transparent) 0
  );
}

.people-detail-page .profile-completeness__ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--section-color);
}

.people-detail-page .profile-completeness__score {
  position: relative;
  z-index: 1;
  color: var(--h2-h3-title-color);
  font-size: 1.45rem;
  font-weight: 750;
  line-height: 1;
}

.people-detail-page .profile-completeness__intro {
  min-width: 0;
  text-align: left;
}

.people-detail-page .profile-completeness__intro h2 {
  margin: 2px 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
  text-align: left;
}

.people-detail-page .profile-completeness__intro p {
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

.people-detail-page .profile-completeness__eyebrow {
  color: var(--color-primary);
  font-size: var(--font-size-small);
  font-weight: 700;
}

.people-detail-page .profile-completeness__readonly {
  margin-top: 8px !important;
  color: var(--muted-text-color);
  font-size: var(--font-size-small);
}

.people-detail-page .profile-completeness__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.people-detail-page .profile-completeness__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.people-detail-page .profile-completeness__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--background-color) 78%, var(--section-color));
}

.people-detail-page .profile-completeness__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.people-detail-page .profile-completeness__item-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.people-detail-page .profile-completeness__item-copy strong {
  color: var(--h2-h3-title-color);
  font-size: var(--font-size-regular);
}

.people-detail-page .profile-completeness__item-copy > span {
  color: var(--muted-text-color);
  font-size: var(--font-size-small);
  line-height: 1.35;
}

.people-detail-page .profile-completeness__points {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 46px;
  color: var(--muted-text-color);
  font-size: var(--font-size-small);
  font-weight: 700;
  white-space: nowrap;
}

.people-detail-page .profile-completeness__item.is-complete .profile-completeness__points {
  color: var(--color-primary);
}

.people-detail-page .profile-completeness__points img {
  width: 14px;
  height: 14px;
}

.people-detail-page .profile-completeness__action-wrap {
  grid-column: 2 / -1;
  display: flex;
  justify-content: flex-start;
}

.people-detail-page .profile-completeness__action {
  min-height: 32px;
  padding: 5px 10px;
  font-size: var(--font-size-small);
}

.people-detail-page .profile-completeness__action img {
  width: 16px;
  height: 16px;
}

@media (max-width: 980px) {
  .people-detail-page .profile-completeness {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .people-detail-page .profile-completeness__summary {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .people-detail-page .profile-completeness__ring {
    width: 88px;
    height: 88px;
  }

  .people-detail-page .profile-completeness__score {
    font-size: 1.2rem;
  }

  .people-detail-page .profile-completeness__list {
    grid-template-columns: minmax(0, 1fr);
  }
}



.profile-hero-sec{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.people-detail-page .profile-hero__media {
  width: 210px;
  max-width: 38vw;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.people-detail-page .profile-hero__placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--grey-button);
  place-items: center;
}

.people-detail-page .profile-hero__placeholder-media {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.people-detail-page .profile-hero__placeholder img {
  width: 20px;
  height: 20px;
  opacity: .5;
}

.people-detail-page .full_name {
  text-align: left !important;
  margin-top: 10px ;
}

.people-detail-page .profile-hero__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
}

.people-detail-page .profile-hero__social-link {
  display: inline-flex;
  align-items: center;
  width: auto;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--background-color);
  color: var(--p-text-color);
  font-size: var(--font-size-regular);
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.people-detail-page .profile-hero__social-link:hover,
.people-detail-page .profile-hero__social-link:focus-visible {
  background: var(--grey-button);
  border-color: var(--border);
  color: var(--p-text-color);
  text-decoration: none !important;
}

.people-detail-page .profile-hero__social-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.people-detail-page .profile-hero__social-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.people-detail-page .profile-hero__social-label {
  display: block;
}

.people-detail-page .gradient-ig,
.people-detail-page .gradient-twitter,
.people-detail-page .gradient-tiktok,
.people-detail-page .gradient-gallery,
.people-detail-page .gradient-linkedin {
  position: absolute;
  z-index: -10;
  overflow: hidden;
  width: 150%;
  left: -10px;
  height: 30px;
  filter: blur(20px);
  opacity: 0.1;
  top: -15px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.people-detail-page .gradient-ig {
  background: linear-gradient(
    173deg,
    rgba(201, 43, 183, 1) 1%,
    rgb(247, 51, 123) 19%,
    rgba(252, 196, 143, 0.44) 45%,
    rgba(0, 0, 0, 0) 80%
  );
}

.people-detail-page .gradient-twitter {
  background: linear-gradient(
    175deg,
    rgba(29, 161, 242, 1) 12%,
    rgba(29, 161, 242, 0.65) 32%,
    rgba(29, 161, 242, 0.3) 48%,
    rgba(0, 0, 0, 0) 80%
  );
}

.people-detail-page .gradient-tiktok {
  background: linear-gradient(
    175deg,
    rgba(105, 201, 208, 0.9) 8%,
    rgba(238, 29, 82, 0.8) 32%,
    rgba(0, 0, 0, 0.55) 52%,
    rgba(0, 0, 0, 0) 80%
  );
}

.people-detail-page .gradient-gallery {
  background: linear-gradient(
    175deg,
    color-mix(in srgb, var(--color-primary) 85%, #ffffff 15%) 12%,
    color-mix(in srgb, var(--color-primary) 60%, #ffffff 40%) 36%,
    rgba(0, 0, 0, 0) 80%
  );
}

.people-detail-page .gradient-linkedin {
  background: linear-gradient(
    175deg,
    rgba(10, 102, 194, 0.92) 12%,
    rgba(10, 102, 194, 0.54) 38%,
    rgba(0, 0, 0, 0) 80%
  );
}

.people-detail-page .social-panel:hover .gradient-ig,
.people-detail-page .social-panel:hover .gradient-twitter,
.people-detail-page .social-panel:hover .gradient-tiktok,
.people-detail-page .social-panel:hover .gradient-gallery,
.people-detail-page .social-panel:hover .gradient-linkedin {
  opacity: 0.2;
  transform: translateY(-2px);
}

.people-detail-page .profile-hero__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.people-detail-page .profile-hero__meta {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-start;
  font-size: var(--font-size-regular);
}

.people-detail-page .profile-hero__meta-item {
  margin-top: 10px !important;
}

.people-detail-page .profile-hero__meta-item strong {
  color: var(--h2-h3-title-color);
  margin-right: 4px;
}

.people-detail-page .profile-hero__bio-copy {
  margin-top: 4px;
}

.people-detail-page .profile-hero__bio-copy p {
  margin: 0 0 10px;
  text-align: left;
  white-space: pre-line;
}

.people-detail-page .profile-hero__bio-copy p:last-child {
  margin-bottom: 0;
}

.people-detail-page .profile-hero__meta-item > ul.text-muted {
  list-style: none;
  margin: 4px 0 0;
  padding-left: 0;
}

.people-detail-page .profile-hero__meta-item > ul.text-muted > li {
  margin: 2px 0;
}

.people-detail-page .social-panels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.people-detail-page .social-panel {
  position: relative;
  clip-path: inset(0px 0px 0px 0px round var(--border-radius));
  border-radius: var(--border-radius);
  padding: clamp(8px, 2.2vw, 22px);
}

.people-detail-page .people-detail-section-title {
  margin: 0;
  color: var(--h2-h3-title-color);
  font-family: var(--font-heading);
  font-size: var(--font-size-very-big);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.people-detail-page .social-overview-heading {
  display: flex;
  align-items: center;
}

.people-detail-page .social-overview-heading.people-detail-section-title {
  justify-content: center;
}

.people-detail-page .social-overview-heading__icon {
  width: 25px;
  height: 25px;
  padding-right: 10px;
  flex-shrink: 0;
}

.people-detail-page a[href^="http://"],
.people-detail-page a[href^="https://"] {
  text-decoration: underline !important;
  text-underline-offset: 0.14em;
}

.people-detail-page .social-panel .collaps_title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.people-detail-page #section-news > .collaps_title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.people-detail-page #section-news > .collaps_title > .social-overview-heading {
  justify-self: center;
  justify-content: center;
  text-align: center;
}

.people-detail-page #section-news > .collaps_title > .section-visibility-toggle {
  justify-self: end;
}

.people-detail-page .social-overview-actions {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  gap: 8px;
  flex-wrap: wrap;
}

.people-detail-page .social-handle-message {
  margin-top: 18px !important;
  color: var(--p-text-color);
  text-align: center !important;
  margin-bottom: 10px !important;
}

.people-detail-page .instagram-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.people-detail-page .instagram-overview-grid .post-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 0;
}

.people-detail-page .instagram-overview-grid .instagram-tagged-users {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px 12px;
}

.people-detail-page .instagram-overview-grid .instagram-tagged-users .mention {
  text-decoration: none;
}

@media (max-width: 980px) {
  .people-detail-page .instagram-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .people-detail-page .instagram-overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.people-detail-page .suggest-handle-form {
  margin-top: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.people-detail-page .suggest-handle-title {
  font-weight: 600;
  color: var(--h2-h3-title-color);
}

.people-detail-page .suggest-handle-input {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.people-detail-page .suggest-handle-input input {
  flex: 1 1 220px;
  min-width: 200px;
  width: 100%;
  padding: 0.8em 1em;
  font-size: var(--font-size-regular);
  border: 1px solid var(--border);
  background: var(--background-color);
  color: var(--p-text-color);
  font-family: var(--font-body);
  border-radius: var(--border-radius);
  height: 35px;
  width: 375px;
}

.people-detail-page .suggest-handle-error,
.people-detail-page .suggest-handle-success {
  margin: 0;
  font-size: var(--font-size-small);
}

.people-detail-page .suggest-handle-success {
  color: var(--p-text-color);
}

.people-detail-page .news-country-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 6px;
}

.people-detail-page .people-faq .faq-item-content ul {
  margin: 0;
  padding-left: 18px;
}

.people-detail-page .people-faq .faq-item-content li {
  margin: 4px 0;
}

.people-detail-page .news-country-filters .chip {
  gap: 6px;
}

.people-detail-page .news-country-flag {
  width: 18px;
  height: 13px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 2px;
  background-color: var(--p-text-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 1;
  margin-right: 6px;
}

.people-detail-page .news-country-flag[data-country-code="all"] {
  width: 0;
  height: 0;
  margin-right: 0;
  background: none;
}

.people-detail-page .linkedin-overview {
  --linkedin-blue: color-mix(in srgb, #0a66c2 58%, var(--color-primary));
  --linkedin-blue-soft: color-mix(in srgb, var(--linkedin-blue) 14%, transparent);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.people-detail-page .linkedin-overview__hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: calc(var(--border-radius) + 2px);
  background: color-mix(in srgb, var(--section-color) 96%, var(--background-color));
  box-shadow: 0 14px 34px rgba(18, 37, 63, 0.08);
  padding: 18px;
}


.people-detail-page .linkedin-overview__hero-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(180px, 220px);
  gap: 18px;
  align-items: start;
}

.people-detail-page .linkedin-overview__hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  padding-top: 18px;
}

.people-detail-page .linkedin-overview__hero-meta h4 {
  margin: 0;
  color: var(--h2-h3-title-color);
  font-size: clamp(1.35rem, 2.2vw, 1.72rem);
  line-height: 1.15;
}


.people-detail-page .linkedin-overview__headline {
  margin: 0;
  color: var(--p-text-color);
  font-weight: 600;
  line-height: 1.45;
}

.people-detail-page .linkedin-overview__meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted-text-color);
  font-size: var(--font-size-small);
}

.people-detail-page .linkedin-overview__meta-list span {
  position: relative;
}

.people-detail-page .linkedin-overview__meta-list span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted-text-color) 55%, transparent);
  transform: translateY(-50%);
}

.people-detail-page .linkedin-overview__meta-list a {
  color: inherit;
}

.people-detail-page .linkedin-overview__hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.people-detail-page .linkedin-overview__hero-stats span {
  padding: 4px 0;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--linkedin-blue);
  font-size: var(--font-size-small);
  font-weight: 700;
}

.people-detail-page .linkedin-overview__contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 14px;
  width: 100%;
  padding-top: 6px;
  text-align: left;
}

.people-detail-page .linkedin-overview__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.people-detail-page .linkedin-overview__contact-label {
  color: var(--muted-text-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.people-detail-page .linkedin-overview__contact-item span:last-child,
.people-detail-page .linkedin-overview__contact-item a {
  color: var(--p-text-color);
  overflow-wrap: anywhere;
}

.people-detail-page .linkedin-overview__avatar-shell .avatar__wrapper,
.people-detail-page .linkedin-overview__avatar-shell .linkedin-overview__avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  overflow: hidden;
background: var(--grey-button);

}

.people-detail-page .linkedin-overview__avatar-shell .linkedin-overview__avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--grey-button);
}

.people-detail-page .linkedin-overview__avatar-shell .linkedin-overview__avatar-placeholder .profile-icon-placeholder {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: .5;
}

.people-detail-page .profile-avatar--placeholder,
.people-detail-page .profile-avatar--placeholder .avatar__image-link {
  display: grid;
  place-items: center;
  background: var(--grey-button);
}

.people-detail-page .profile-avatar--placeholder .avatar__image {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: .5;
}

.people-detail-page .linkedin-overview__avatar-shell .avatar__image {
  border-radius: 999px;
}

.people-detail-page .linkedin-overview__hero-aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
}

.people-detail-page .linkedin-overview__aside-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: calc(var(--border-radius) - 2px);
  border: 1px solid color-mix(in srgb, var(--border) 76%, transparent);
  background: color-mix(in srgb, var(--background-color) 74%, var(--section-color));
  text-align: left;
}

.people-detail-page .linkedin-overview__aside-item strong {
  color: var(--h2-h3-title-color);
  font-size: var(--font-size-regular);
  line-height: 1.35;
}

.people-detail-page .linkedin-overview__aside-item span {
  color: var(--muted-text-color);
  font-size: var(--font-size-small);
  line-height: 1.4;
}

.people-detail-page .linkedin-overview__aside-label {
  color: color-mix(in srgb, var(--linkedin-blue) 78%, var(--muted-text-color)) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.people-detail-page .linkedin-overview__hero-about {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--border) 76%, transparent);
}

.people-detail-page .linkedin-overview__hero-about h4 {
  margin: 0 0 10px;
  color: var(--h2-h3-title-color);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.people-detail-page .linkedin-overview__hero-about .linkedin-summary {
  margin: 0;
}

.people-detail-page .linkedin-block {
  border: 1px solid var(--border);
  border-radius: calc(var(--border-radius) + 1px);
  padding: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--section-color) 98%, var(--linkedin-blue) 2%), var(--section-color));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.people-detail-page .linkedin-block h4 {
  margin: 0;
  padding: 16px 18px 12px;
  font-size: clamp(1.14rem, 1.8vw, 1.28rem);
  color: var(--h2-h3-title-color);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.people-detail-page .linkedin-block p {
  margin: 0;
}

.people-detail-page .linkedin-summary {
  line-height: 1.45;
  margin: 16px 18px 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.people-detail-page .linkedin-flag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 18px 18px;
}

.people-detail-page .linkedin-extra-list {
  margin: 0;
  padding: 16px 18px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.people-detail-page .linkedin-stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.people-detail-page .linkedin-extra-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  border-radius: 16px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--background-color) 74%, var(--section-color));
  text-align: left;
}

.people-detail-page .linkedin-extra-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  padding-top: 10px;
}

.people-detail-page .linkedin-extra-item dt {
  width: 100%;
  font-weight: 700;
  color: var(--muted-text-color);
  font-size: var(--font-size-small);
  margin-bottom: 0;
  text-align: left;
}

.people-detail-page .linkedin-extra-item dd {
  width: 100%;
  margin: 0;
  color: var(--p-text-color);
  font-weight: 650;
  overflow-wrap: anywhere;
  text-align: left;
}

.people-detail-page .linkedin-extra-nested {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.people-detail-page .linkedin-extra-nested__item {
  border-left: 2px solid var(--linkedin-blue);
  padding-left: 8px;
}

.people-detail-page .linkedin-extra-nested__item dt {
  font-weight: 600;
  margin-bottom: 2px;
  text-align: left;
}

.people-detail-page .linkedin-extra-nested__item dd {
  margin: 0;
  text-align: left;
}

.people-detail-page .linkedin-extra-sequence {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.people-detail-page .linkedin-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
}

.people-detail-page .linkedin-detail-stack--compact {
  gap: 8px;
}

.people-detail-page .linkedin-detail-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color) 78%, var(--section-color));
  text-align: left;
}

.people-detail-page .linkedin-detail-card--compact {
  padding: 10px 12px;
}

.people-detail-page .linkedin-detail-card--media {
  display: grid;
  grid-template-columns: minmax(96px, 124px) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.people-detail-page .linkedin-detail-card__media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: color-mix(in srgb, var(--background-color) 82%, var(--section-color));
}

.people-detail-page .linkedin-detail-card__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.people-detail-page .linkedin-detail-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  text-align: left;
}

.people-detail-page .linkedin-detail-card__title {
  margin: 0;
  color: var(--h2-h3-title-color);
  font-size: var(--font-size-regular);
  line-height: 1.35;
  text-align: left;
}

.people-detail-page .linkedin-detail-card__meta {
  margin: 0;
  color: var(--muted-text-color);
  font-size: var(--font-size-small);
  text-align: left;
}

.people-detail-page .linkedin-detail-card__body {
  margin: 0;
  color: var(--p-text-color);
  line-height: 1.55;
  text-align: left;
}

.people-detail-page .linkedin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
  padding: 16px 18px 18px;
}

.people-detail-page .linkedin-media-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--p-text-color);
  text-decoration: none;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--background-color) 70%, var(--section-color));
  transition: transform 0.16s ease, border-color 0.16s ease;
  text-align: left;
}

.people-detail-page .linkedin-media-card:hover {
  transform: translateY(-2px);
  border-color: var(--border);
}

.people-detail-page .linkedin-media-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--background-color);
}

.people-detail-page .linkedin-media-card span {
  font-size: var(--font-size-small);
  color: var(--muted-text-color);
  text-align: left;
}

.people-detail-page .linkedin-list {
  list-style: none;
  margin: 0;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.people-detail-page .linkedin-list--work,
.people-detail-page .linkedin-list--education {
  text-align: left;
}

.people-detail-page .linkedin-list__item {
  position: relative;
  text-align: left;
  padding: 0 0 16px 24px;
  border-left: 2px solid color-mix(in srgb, var(--linkedin-blue) 18%, var(--border));
}

.people-detail-page .linkedin-list__item--single {
  padding-left: 0;
  border-left: 0;
}

.people-detail-page .linkedin-list__item:last-child {
  padding-bottom: 0;
}

.people-detail-page .linkedin-list__marker {
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--linkedin-blue);
  border: 3px solid var(--section-color);
  box-shadow: 0 0 0 3px var(--linkedin-blue-soft);
}

.people-detail-page .linkedin-list__range {
  font-size: var(--font-size-small);
  color: var(--muted-text-color);
  font-weight: 650;
  text-align: left;
}

.people-detail-page .linkedin-list__item-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.people-detail-page .linkedin-list__logo-shell {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--border) 76%, transparent);
  background: color-mix(in srgb, var(--background-color) 80%, var(--section-color));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(18, 37, 63, 0.08);
  flex: 0 0 42px;
}

.people-detail-page .linkedin-list__logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-detail-page .linkedin-list__logo-shell span {
  color: color-mix(in srgb, var(--linkedin-blue) 82%, var(--muted-text-color));
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.people-detail-page .linkedin-list__logo-shell--empty {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--linkedin-blue) 8%, var(--section-color)), color-mix(in srgb, var(--background-color) 88%, var(--section-color)));
  border-style: dashed;
  box-shadow: none;
}

.people-detail-page .linkedin-list__logo-shell--education {
  background: color-mix(in srgb, var(--background-color) 76%, var(--section-color));
}

.people-detail-page .linkedin-list__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  text-align: left;
}

.people-detail-page .linkedin-list__text,
.people-detail-page .linkedin-list__school {
  font-weight: 600;
  color: var(--h2-h3-title-color);
  text-align: left;
}

.people-detail-page .linkedin-list__degree,
.people-detail-page .linkedin-list__meta {
  margin: 0;
  color: var(--p-text-color);
  text-align: left;
}

.people-detail-page .linkedin-list__meta--rich {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.55;
  text-align: left;
}

.people-detail-page .linkedin-list__meta--rich p {
  margin: 0;
}

.people-detail-page .linkedin-simple-list {
  list-style: none;
  margin: 0;
  padding: 12px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.people-detail-page .linkedin-link-list {
  text-align: left;
}

.people-detail-page .linkedin-simple-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  text-align: left;
}

.people-detail-page .linkedin-simple-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.people-detail-page .linkedin-simple-list__label {
  color: var(--muted-text-color);
  font-size: var(--font-size-small);
  text-align: left;
}

.people-detail-page .linkedin-skill-cloud {
  gap: 10px;
}

.profile-hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.profile-hero__actions > .button-29,
.profile-hero__actions > .favorite-profile-btn,
.profile-hero__actions > .profile-relations-cta {
  position: static !important;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.profile-relations-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.profile-relations-cta img { filter: brightness(0) invert(1); }


.people-relations-profile {
  display: block;
  padding: clamp(20px, 3vw, 30px);
}

.people-relations-profile > h2 {
  margin: 0 0 18px;
  text-align: center;
}

.people-relations-profile__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: end; }
.people-relations-profile__picker { position: relative; }
.people-relations-profile__picker label { display: block; margin-bottom: 6px; font-size: var(--font-size-regular); font-weight: 700; }
.people-relations-profile__picker input { box-sizing: border-box; width: 100%; min-height: 48px; padding: 10px 13px; border: 1px solid var(--border); border-radius: 12px; background: var(--background-color); color: var(--text-color); font: inherit; }
.people-relations-profile__picker input:focus { border-color: var(--color-primary); outline: 3px solid color-mix(in srgb, var(--color-primary) 22%, transparent); }
.people-relations-profile__suggestions { position: absolute; z-index: 45; top: calc(100% + 6px); right: 0; left: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 13px; background: var(--section-color); box-shadow: 0 16px 38px rgba(0,0,0,.16); }
.people-relations-profile__option { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 9px; align-items: center; width: 100%; padding: 9px 11px; border: 0; border-bottom: 1px solid var(--border); background: transparent; color: inherit; text-align: left; cursor: pointer; }
.people-relations-profile__option:last-child { border-bottom: 0; }
.people-relations-profile__option:hover, .people-relations-profile__option:focus { background: color-mix(in srgb, var(--color-primary) 9%, transparent); outline: 0; }
.people-relations-profile__option img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.people-relations-profile__option span { display: flex; flex-direction: column; min-width: 0; }
.people-relations-profile__option small, .people-relations-profile__option em { color: var(--muted-text-color); font-size: var(--font-size-small); font-style: normal; }
.people-relations-profile__option em.is-ready { color: #14805e; }

.people-interesting-facts { display: grid; gap: 14px; }
.people-interesting-facts__header { text-align: center; }
.people-interesting-facts__list { display: grid; margin: 0; padding: 0; list-style: none; }
.people-interesting-facts__item { display: grid; grid-template-columns: 60px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); }
.people-interesting-facts__item:first-child { padding-top: 0; }
.people-interesting-facts__item:last-child { padding-bottom: 0; border-bottom: 0; }
.people-interesting-facts__item--profile { grid-template-columns: minmax(0, 1fr) auto; }
.people-interesting-facts__avatar-link { display: block; width: 60px; height: 60px; }
.people-interesting-facts__avatar { display: block; width: 60px; height: 60px; border-radius: 10px; object-fit: cover; object-position: 50% 0; }
.people-interesting-facts__avatar--placeholder { box-sizing: border-box; padding: 20px; background: var(--grey-button); object-fit: contain; opacity: .5; }
.people-interesting-facts__body { min-width: 0; }
.people-interesting-facts__summary { margin: 0; color: var(--p-text-color); }
.people-interesting-facts__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; font-size: var(--font-size-small); white-space: nowrap; }
.people-interesting-facts__person-link { text-decoration: underline !important; }
.people-interesting-facts__source { display: inline-grid; width: 18px; height: 18px; place-items: center; box-sizing: border-box; border: 1px solid currentColor; border-radius: 50%; color: var(--p-text-color); font-size: 12px; font-weight: 700; line-height: 1; opacity: .58; text-decoration: none !important; }
.people-interesting-facts__source:hover, .people-interesting-facts__source:focus-visible { opacity: 1; }
.people-interesting-facts__more { justify-self: center; }

.people-related-people { display: grid; gap: 14px; }
.people-related-people__header { text-align: center; }
.people-related-people__list { display: flex; gap: 12px; margin: 0; padding: 0 0 4px; overflow-x: auto; list-style: none; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.people-related-people__card { flex: 0 0 min(172px, 48vw); scroll-snap-align: start; }
.people-related-people__card .people-card__avatar { overflow: hidden; }
.people-detail-page .person-card a,
.people-detail-page .person-card a:hover,
.people-detail-page .person-card a:focus,
.people-detail-page .person-card a:focus-visible,
.people-detail-page a.person-card,
.people-detail-page a.person-card:hover,
.people-detail-page a.person-card:focus,
.people-detail-page a.person-card:focus-visible { text-decoration: none !important; }

.people-interesting-facts__status {
  margin: 10px 0 0;
  color: var(--p-text-color);
  text-align: center;
}
.people-related-people__card .people-card__subtitle { overflow: hidden; width: 100%; color: var(--p-text-color); font-size: var(--font-size-small); text-align: start; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 760px) {
  .people-relations-profile { grid-template-columns: 1fr; }
  .people-relations-profile__form { grid-template-columns: 1fr; }
  .people-interesting-facts__item { grid-template-columns: 60px minmax(0, 1fr); }
  .people-interesting-facts__item--profile { grid-template-columns: minmax(0, 1fr); }
  .people-interesting-facts__links { grid-column: 2; justify-self: start; justify-content: flex-start; }
  .people-interesting-facts__item--profile .people-interesting-facts__links { grid-column: 1; }
}
@media (max-width: 640px) {
  .profile-hero-sec { grid-template-columns: 1fr; }
  .people-detail-page .profile-hero__media { width: min(100%, 280px); max-width: none; margin: 0 auto; }
}
.people-relations-entry {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 16px 20px;
}
.people-relations-entry > div { display: flex; flex-direction: column; gap: 3px; }
.people-relations-entry span { color: var(--muted-text-color); font-size: var(--font-size-small); }
@media (max-width: 620px) { .people-relations-entry { align-items: stretch; flex-direction: column; } }
