.pv2-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
  vertical-align: -0.125em;
}

.pv2-timeline__badge-icon {
  width: 0.8rem;
  height: 0.8rem;
  color: #fff;
}

/* Design tokens (--pv2-*) live in common.css's :root — shared with list pages. */
.pv2-root {
  background: var(--pv2-page-bg);
  color: var(--pv2-body-text);
  min-height: 100vh;
}

.pv2-root a { text-decoration: none; color: var(--pv2-accent); }
.pv2-root svg { display: block; flex-shrink: 0; }
.pv2-root button { cursor: pointer; }
.pv2-root a:hover { text-decoration: underline; }
.pv2-root a.menu-link:hover,
.pv2-root a.mobile-menu-text:hover { text-decoration: none; }

.pv2-layout {
  display: flex;
  min-height: calc(100vh - var(--pv2-navbar-h));
  padding-top: var(--pv2-navbar-h);
}

.pv2-sidebar {
  width: var(--pv2-sidebar-w); flex-shrink: 0; background: var(--pv2-card-bg);
  border-right: 0.0625rem solid var(--pv2-border);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.25rem 0.75rem 1.5rem;
  position: sticky; top: var(--pv2-navbar-h); height: calc(100vh - var(--pv2-navbar-h)); overflow-y: auto;
}

.pv2-root[dir="rtl"] .pv2-sidebar { border-right: none; border-left: 0.0625rem solid var(--pv2-border); }

.pv2-sidebar__nav { display: flex; flex-direction: column; gap: 0.25rem; }

.pv2-sidebar__heading {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--pv2-placeholder); padding: 0 0.875rem; margin: 0 0 0.5rem;
}

.pv2-sidebar__item {
  display: flex; align-items: center; gap: 0.625rem; padding: 0.6875rem 0.875rem;
  border-radius: var(--pv2-radius-sm); font-size: 0.875rem; font-weight: 500; color: var(--pv2-secondary-text);
  transition: background 0.15s, color 0.15s;
}

.pv2-sidebar__item:hover { background: #f3f4f6; color: var(--pv2-navy); }
.pv2-sidebar__icon { width: 1.125rem; height: 1.125rem; stroke: var(--pv2-muted-text); flex-shrink: 0; }
.pv2-sidebar__icon--operatives { filter: brightness(0); }

.pv2-root a.pv2-sidebar__item { color: var(--pv2-body-text); }
.pv2-root a.pv2-sidebar__item:hover { color: var(--pv2-navy); }

/* Highlights the sidebar entry for the list page currently being viewed. */
.pv2-sidebar__item--active,
.pv2-root a.pv2-sidebar__item--active {
  background: var(--pv2-tinted-bg);
  color: var(--pv2-navy);
  font-weight: 700;
}
.pv2-sidebar__item--active .pv2-sidebar__icon { stroke: var(--pv2-navy); }

.pv2-sidebar__footer { margin-top: 2rem; padding-top: 1rem; border-top: 0.0625rem solid var(--pv2-border); }
.pv2-sidebar__footer-note,
.pv2-sidebar__footer-copy { font-size: 0.6875rem; color: var(--pv2-placeholder); line-height: 1.5; margin-bottom: 0.25rem; }

.pv2-main {
  flex: 1; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; min-width: 0;
  width: 100%; max-width: 75rem; margin-left: auto; margin-right: auto;
}

.pv2-card {
  background: var(--pv2-card-bg); border-radius: var(--pv2-radius-lg); border: 0.0625rem solid var(--pv2-border);
  box-shadow: var(--pv2-shadow-card); padding: 1.5rem 1.75rem;
}

.pv2-profile-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.pv2-profile-header__left { display: flex; align-items: flex-start; gap: 1.25rem; flex: 1; min-width: 0; }

.pv2-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 2px 6px rgba(15, 23, 42, 0.06),
    0 8px 24px rgba(15, 23, 42, 0.08);
}

.pv2-avatar img { width: 100%; height: 100%; object-fit: cover; }

.pv2-profile-header__identity { display: flex; flex-direction: column; gap: 0.25rem; }
.pv2-profile-header__name { font-size: 1.875rem; font-weight: 700; color: var(--pv2-navy); line-height: 1.2; }
.pv2-profile-header__name-sub { font-size: 1rem; font-weight: 400; color: var(--pv2-muted-text); }

.pv2-social-icons { display: flex; gap: 0.5rem; margin-top: 0.625rem; flex-wrap: wrap; }
.pv2-social-icon {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center; transition: opacity 0.15s;
}
.pv2-social-icon:hover { opacity: 0.85; }
.pv2-social-icon svg { width: 0.6875rem; height: 0.6875rem; }
.pv2-social-icon--x { background: #000000; color: #ffffff; }
.pv2-social-icon--fb { background: #1877f2; color: #ffffff; }
.pv2-social-icon--wa { background: #25d366; color: #ffffff; }
.pv2-social-icon--link { background: #f3f4f6; color: var(--pv2-muted-text); }

.pv2-meta-row { display: flex; flex-direction: column; align-items: stretch; padding: 1.25rem 1.75rem; }
.pv2-meta-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; }
.pv2-meta-item__icon { width: 1rem; height: 1rem; stroke: var(--pv2-navy); flex-shrink: 0; }
.pv2-meta-item__content { display: flex; flex-direction: column; gap: 0.125rem; }
.pv2-meta-item__label { font-size: 0.75rem; font-weight: 500; color: var(--pv2-muted-text); line-height: 1; }
.pv2-meta-item__value { font-size: 0.9375rem; font-weight: 600; color: var(--pv2-body-text); line-height: 1.3; }
.pv2-meta-item__value--link { color: var(--pv2-accent); }
.pv2-meta-item__value--link:hover { text-decoration: underline; }
.pv2-meta-divider { width: 100%; height: 0.0625rem; background: var(--pv2-border); margin: 0; }

.pv2-two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1rem; }
.pv2-two-col .pv2-meta-divider { width: 100% !important; }

.pv2-section-header {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
  border-bottom: 0.0625rem solid var(--pv2-border); padding-bottom: 0.625rem;
}
.pv2-section-header__label { font-size: 0.8125rem; font-weight: 700; color: var(--pv2-navy); letter-spacing: 0.08em; text-transform: uppercase; }

.pv2-overview-card { background: var(--pv2-tinted-bg); }
.pv2-overview-card__body { font-size: 0.9375rem; line-height: 1.65; color: var(--pv2-secondary-text); white-space: pre-line; }
.pv2-overview-card__body .short-text,
.pv2-overview-card__body .full-text { margin: 0; }
.pv2-overview-card__body .full-text.hidden { display: none !important; }
.pv2-overview-card__body .see-more-btn { display: inline-flex; align-items: center; gap: 0.375rem; background: none; border: none; color: var(--pv2-accent); font-size: 0.875rem; margin-top: 0.5rem; }

.pv2-timeline { display: flex; flex-direction: column; position: relative; padding-left: 0.5rem; }
.pv2-root[dir="rtl"] .pv2-timeline { padding-left: 0; padding-right: 0.5rem; }
.pv2-timeline__item { display: flex; align-items: flex-start; gap: 0.875rem; position: relative; padding-bottom: 1.375rem; }
.pv2-timeline__item--last { padding-bottom: 0; }
.pv2-timeline__line { position: absolute; left: 1.0625rem; top: 2.25rem; bottom: 0; width: 0.125rem; background: var(--pv2-border); }
.pv2-root[dir="rtl"] .pv2-timeline__line { left: auto; right: 1.0625rem; }
.pv2-timeline__item--last .pv2-timeline__line { display: none; }
.pv2-timeline__badge {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1; background: var(--pv2-navy);
}
.pv2-timeline__content { display: flex; flex-direction: column; gap: 0.125rem; padding-top: 0.375rem; }
.pv2-timeline__label { font-size: 0.75rem; color: var(--pv2-muted-text); font-weight: 500; }
.pv2-timeline__value { font-size: 0.875rem; font-weight: 600; color: var(--pv2-body-text); }
.pv2-timeline__value--link { color: var(--pv2-accent); font-weight: 500; }
.pv2-timeline__value--link:hover { text-decoration: underline; }

.pv2-source-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.875rem 1rem; background: var(--pv2-page-bg); border-radius: var(--pv2-radius-md);
  border: 0.0625rem solid var(--pv2-border); flex-wrap: wrap; margin-bottom: 0.625rem;
}
.pv2-source-item:last-child { margin-bottom: 0; }
.pv2-source-item__left { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0; }
.pv2-source-item__icon { width: 1.25rem; height: 1.25rem; stroke: var(--pv2-muted-text); flex-shrink: 0; }
.pv2-source-item__org { font-size: 0.8125rem; word-break: break-word; }

.pv2-related-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pv2-related-list__item a {
  display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--pv2-accent); padding: 0.375rem 0;
}
.pv2-related-list__item a:hover { text-decoration: underline; }
.pv2-related-list__icon { width: 1rem; height: 1rem; stroke: var(--pv2-accent); flex-shrink: 0; }

.pv2-btn {
  display: inline-flex; align-items: center; gap: 0.4375rem; padding: 0.5rem 1rem; border-radius: var(--pv2-radius-sm);
  font-size: 0.875rem; font-weight: 500; border: none; transition: background 0.15s;
}
.pv2-btn--secondary { background: var(--pv2-card-bg); color: var(--pv2-secondary-text); border: 0.0625rem solid var(--pv2-border); }
.pv2-btn--secondary:hover { background: var(--pv2-page-bg); }
.pv2-root a.pv2-btn { color: var(--pv2-secondary-text); }
.pv2-root a.pv2-btn:hover { text-decoration: none; }
.pv2-btn__icon { width: 0.9375rem; height: 0.9375rem; flex-shrink: 0; }

.pv2-contact-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  background: var(--pv2-tinted-bg);
}
.pv2-contact-cta__text { font-size: 0.9375rem; font-weight: 600; color: var(--pv2-body-text); margin: 0; }
.pv2-contact-cta .pv2-btn { flex-shrink: 0; }
@media (max-width: 30rem) {
  .pv2-contact-cta .pv2-btn { width: 100%; justify-content: center; }
}

.pv2-mobile-footer { display: none; }

@media (max-width: 1000px) {
  .mobile-menu-container-visible {
    background-color: var(--pv2-card-bg);
  }
}

@media (max-width: 48rem) {
  .pv2-mobile-footer {
    display: block;
    padding: 1.25rem 1rem 1.5rem;
    background: var(--pv2-card-bg);
    border-top: 0.0625rem solid var(--pv2-border);
    text-align: center;
  }
  .pv2-two-col { grid-template-columns: 1fr; }
  .pv2-layout { flex-direction: column; }
  .pv2-sidebar { display: none; }
  .pv2-main { padding: 1rem; }
  .pv2-profile-header { flex-direction: column; align-items: center; gap: 1rem; }
  .pv2-profile-header__left { flex-direction: column; align-items: center; }
  .pv2-profile-header__identity { align-items: center; text-align: center; }
  .pv2-social-icons { justify-content: center; }
  .pv2-profile-header__name { font-size: 1.375rem; }
  .pv2-source-item { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .pv2-meta-divider { width: 100% !important; }
}
