/* ============================================================
   Single "Deportista" page — /deportistas/nombre-apellido/
   Fixed split layout (photo | text), same proportions/spacing
   language as the PDP gallery/summary split. Same design
   language as /nosotros/: paper #f3f3f3, Archivo 800 uppercase
   display, Space Mono labels, sharp corners, pink accents.
   ============================================================ */
.mose-deps {
  --dep-bg:   #f3f3f3;
  --dep-ink:  #1a1a1a;
  --dep-mute: #666;
  --dep-pink: var(--mose-pink, #FC0075);
  --dep-mono: var(--mose-mono, "Space Mono", ui-monospace, monospace);
  background: var(--dep-bg);
  color: var(--dep-ink);
  font-family: var(--mose-font, "Archivo", sans-serif);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.mose-deps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: stretch;
}

.mose-deps__media { position: relative; background: #e2e2e2; min-height: 320px; }
.mose-deps__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.mose-deps__img--ph {
  background-color: #ececec;
  background-image: repeating-linear-gradient(45deg, #d9d9d9 0 2px, transparent 2px 14px);
}

.mose-deps__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(64px, 11vh, 140px) clamp(40px, 6vw, 96px) clamp(56px, 8vh, 96px);
  max-width: 640px;
}

.mose-deps__back {
  font-family: var(--dep-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dep-mute);
  text-decoration: none;
  margin-bottom: clamp(28px, 4vw, 48px);
  width: fit-content;
}
.mose-deps__back:hover { color: var(--dep-ink); }

.mose-deps__name {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .94;
  font-size: clamp(34px, 5.2vw, 64px);
  margin: 0;
}

.mose-deps__role {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--dep-mute);
  font-size: clamp(14px, 1.4vw, 18px);
  margin: 10px 0 0;
}

.mose-deps__bio {
  margin-top: clamp(24px, 3vw, 36px);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.mose-deps__bio p { margin: 0 0 1.1em; }
.mose-deps__bio p:last-child { margin-bottom: 0; }

/* Bigger hero-style CTA (matches the homepage hero "EMPEZAR" button) rather
   than the smaller /nosotros/ mono-pill — this page is a click-through
   landing moment off the homepage slideshow, so it carries that same energy. */
.mose-deps__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  width: fit-content;
  margin-top: clamp(32px, 5vw, 48px);
  font-family: var(--mose-font, "Archivo", sans-serif);
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: .3px;
  text-decoration: none;
  color: #fff;
  padding: clamp(10px, 1.2vw, 16px) clamp(22px, 2.4vw, 34px);
  border-radius: 0;
  background-color: var(--dep-pink);
  background-image: linear-gradient(#111 0 0);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 0%;
  transition: background-size .38s ease;
  cursor: pointer;
}
.mose-deps__cta:visited { color: #fff; }
.mose-deps__cta:hover { background-color: var(--dep-pink); background-size: 100% 100%; color: #fff; }
.mose-deps__cta-arrow { width: 0.8em; height: 0.8em; flex: none; transition: transform .25s ease; }
.mose-deps__cta:hover .mose-deps__cta-arrow { transform: translateX(4px); }

@media (max-width: 860px) {
  .mose-deps__grid { grid-template-columns: 1fr; min-height: 0; }
  .mose-deps__media { aspect-ratio: 4 / 3; min-height: 0; }
  .mose-deps__info { padding: 32px 20px 56px; max-width: none; }
}
