/* ── Profile section ─────────────────────────────────────────── */
.profile-sec { padding: 56px 0 var(--pad-section); }
.profile-grid { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start; }

.p-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 88px;
}

.p-photo { height: 320px; overflow: hidden; background: var(--navy); }
.p-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.p-body { padding: 28px; }
.p-name { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--navy); letter-spacing: -0.3px; }
.p-role { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 6px 0 20px; }

.p-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; font-size: 14px; color: var(--muted); }
.p-di { width: 32px; height: 32px; border-radius: 8px; background: var(--fog); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.p-dl strong { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text); margin-bottom: 2px; }

.p-acts { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-light); }

/* ── Bio ─────────────────────────────────────────────────────── */
.bio h2 { font-family: var(--font-display); font-size: 36px; font-weight: 400; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 18px; line-height: 1.2; }
.bio p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }

/* Values grid — no left border, icon on top */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }

.val-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: all .22s;
}
.val-item:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.val-icon {
  width: 38px; height: 38px;
  background: var(--fog);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}

.val-title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.val-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Vi block */
.vi-block { background: var(--navy); border-radius: var(--radius-lg); padding: 30px; margin: 30px 0; display: flex; gap: 18px; align-items: flex-start; border: 1px solid rgba(255,255,255,0.06); }
.vi-flag { font-size: 44px; line-height: 1; flex-shrink: 0; }
.vi-block h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 9px; }
.vi-block p { font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.75; }


@media(max-width: 1024px) {
  .profile-grid { grid-template-columns: 300px 1fr; gap: 48px; }
}

@media(max-width: 860px) {
  .ah-stats { flex-wrap: wrap; gap: 24px; }
  .ah-div { display: none; }
  .ah-stat { padding: 0; }
  .profile-grid { grid-template-columns: 1fr; }
  .p-card { position: static; }
}