/* ══════════════════════════════════════════════════════════
   DRAFT PAGE OVERRIDES — Sports Performance / Special Operations
   Shows the full wearer photo with no cropping, instead of the
   site-wide object-fit: cover crop used elsewhere. Not intended
   to ship — remove this stylesheet link if these sections later
   adopt the standard cropped treatment for the live site.
   ══════════════════════════════════════════════════════════ */

/* "context" card — text left, photo right (Load Management / Readiness problem).
   Mirrors the "patient-split" card directly below it: square corners, photo
   stretched to the full height of the row — just flipped left/right. */
.context-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}

.context-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--bg-2);
}

.context-card-content .eyebrow { margin-bottom: 16px; }

.context-card-content h2 {
  font-size: clamp(24px, 2.6vw, 38px);
  margin-bottom: 20px;
}

.context-card-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 440px;
}

.context-card-content p:last-child { margin-bottom: 0; }

.context-card-photo {
  overflow: hidden;
}

.context-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-2);
  display: block;
}

@media (max-width: 768px) {
  .context-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .context-card-photo {
    order: -1;
    height: 320px;
  }
  .context-card-content {
    padding: 48px 32px;
  }
}

/* "patient-split" 50/50 photo + copy block */
.patient-split-photo.photo-full {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
}

.patient-split-photo.photo-full img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
