/* ============================================================
   SESSIONS - "A REAL PERSON, FACE TO FACE"
   All rules scoped to .ses-real to avoid conflicts.
   ============================================================ */

.ses-real {
  background: var(--white);
  padding-block: 72px;
}

/* Two-column grid: copy left, card right */
.ses-real__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: center;
}

/* ------------------------------------------------------------
   Left: copy
   ------------------------------------------------------------ */
.ses-real__eyebrow {
  display: block;
  font-family: Inter, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
  -webkit-font-smoothing: antialiased;
}

.ses-real__headline {
  font-family: 'Inter Display', Inter, -apple-system, sans-serif;
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--blue);
  margin: 0 0 1.25rem;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
}

.ses-real__body {
  font-family: Inter, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  max-width: 540px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------
   Right: verified mentor card
   ------------------------------------------------------------ */
.ses-real__cardwrap {
  display: flex;
  justify-content: center;
}

/* Card shell — matches the subscriptions .sub-mentors__card formatting.
   The inner photo/name/badge/detail reuse the shared .mentor-card__* styles. */
.ses-real__card {
  background: var(--bg-grey);
  border-radius: 12px;
  padding: 24px 20px 20px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

/* Tighten the badge's bottom gap so the name/badge/type cluster reads evenly
   on this sparser card (shared .mentor-card__badge uses 16px) */
.ses-real__card .mentor-card__badge {
  margin-bottom: 10px;
}

/* Verified line */
.ses-real__verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: Inter, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--purple);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.ses-real__check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .ses-real {
    padding-block: 56px;
  }
  .ses-real__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: start;
  }
  .ses-real__body {
    max-width: 100%;
  }
  .ses-real__cardwrap {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ses-real {
    padding-block: 48px;
  }
}
