.field-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    background 0.25s ease,
    opacity 0.25s ease;
}

.field-lightbox.open {
  background: rgba(0, 0, 0, 0.85);
  opacity: 1;
  pointer-events: all;
}

.field-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  transform: scale(0.94);
  transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.36, 1);
}

.field-lightbox.open .field-lightbox-inner {
  transform: scale(1);
}

.field-lightbox-inner img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  border-radius: 3px;
  border: 1px solid rgba(46, 139, 87, 0.35);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.7);
}

.field-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.field-lightbox-close:hover {
  background: var(--green);
  color: #fff;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(8, 25, 41, 0.97);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  overflow: hidden;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

.overlay-topbar {
  height: 52px;
  flex-shrink: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.overlay-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 40px 60px;
}

.overlay-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 34px;
  height: 34px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  font-family: "Barlow", sans-serif;
  line-height: 1;
}

.overlay-close:hover {
  border-color: var(--green);
  color: var(--text);
}

.ov-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
}

.ov-sub {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 4px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.ov-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
}

.coach-layout {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-top: 28px;
}

.coach-photo {
  width: 42%;
  flex-shrink: 0;
}

.coach-photo img {
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--border);
  display: block;
}

.coach-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ov-section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.ov-fact-item {
  margin-bottom: 18px;
}

.ov-fact-item strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.ov-fact-item p,
.ov-fact-item ul {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.ov-fact-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
}

.ov-fact-item ul li {
  padding-left: 16px;
  position: relative;
}

.ov-fact-item ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}

.ov-prose {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.ov-prose p {
  margin-bottom: 12px;
}

.ov-prose ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.ov-prose ul li {
  padding-left: 18px;
  position: relative;
}

.ov-prose ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}

.ov-pull {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--text);
  border-left: 3px solid var(--green);
  padding-left: 16px;
  margin: 20px 0;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .overlay-topbar {
    height: auto;
    min-height: 52px;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
  }

  .overlay-topbar > div:first-child {
    min-width: 0;
    flex: 1;
  }

  .ov-title,
  .ov-sub {
    overflow-wrap: anywhere;
  }

  .overlay-close {
    flex-shrink: 0;
  }

  .overlay-body {
    padding: 20px 16px 50px;
  }

  .coach-layout {
    flex-direction: column;
  }

  .coach-photo {
    width: 100%;
  }
}
