/* ============================================================
   Persona deep-dive sections.
   Editorial layout matching the rest of the page:
   mono eyebrow with hairlines, large heading with blue `em`
   accent, light-weight body, dash-bulleted feature list,
   white card with soft shadow + small caption header.

   The two sections alternate sides: BizOps screenshot left,
   Developers screenshot right.
   ============================================================ */

.persona {
  padding: 120px 0;
}
.persona + .persona { padding-top: 0; }
.persona.persona--alt { background: #fff; }

.persona__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  max-width: 1240px;
}

/* Default order: visual left, content right. */
.persona__visual  { order: 1; }
.persona__content { order: 2; }
/* Reverse modifier: content left, visual right. */
.persona--reverse .persona__visual  { order: 2; }
.persona--reverse .persona__content { order: 1; }

/* ---- Text column ---------------------------------------- */

.persona__intro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-quiet);
  margin-bottom: 28px;
}
.persona__intro::before,
.persona__intro::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--fg-quiet);
}

.persona__title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 32px;
  text-wrap: balance;
}
.persona__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--action-blue);
}

.persona__body {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 18px;
  max-width: 520px;
}
.persona__body + .persona__body { margin-bottom: 36px; }

.persona__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(42, 42, 42, 0.12);
  padding-top: 28px;
}
.persona__list li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--fg);
}
.persona__list li::before {
  content: '—';
  color: var(--action-blue);
  flex-shrink: 0;
}

/* ---- Visual card --------------------------------------- */

.persona__card {
  background: #fff;
  border-radius: 23px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
  margin: 8px 0;
}
.persona__card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 6px 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.persona__card-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
}
.persona__card-meta {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--fg-quiet);
  text-align: right;
}
.persona__card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
