/* Coach Padel - styles complémentaires */
.prose { line-height: 1.7; }
.prose h2 { font-family: "DM Sans", system-ui, sans-serif; font-weight: 700; font-size: 1.35rem; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.prose h3 { font-family: "DM Sans", system-ui, sans-serif; font-weight: 700; font-size: 1.1rem; margin-top: 1.25rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.prose a { text-decoration: underline; font-weight: 600; }
.prose img { display: block; width: 100%; height: auto; margin: 1.25rem 0 0.5rem; border-radius: 1rem; }
.prose figure { margin: 0 0 1.25rem; }
.prose figcaption { font-size: 0.875rem; color: rgba(52, 52, 52, 0.62); }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.95rem; }
.prose th, .prose td { border-bottom: 1px solid rgba(52, 52, 52, 0.12); padding: 0.65rem 0.5rem; text-align: left; vertical-align: top; }
.prose th { font-weight: 700; width: 42%; }
.prose .offer-box {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: 1.15rem;
  background: #343434;
  color: #fff;
}
.prose .offer-box p { color: rgba(255, 255, 255, 0.88); }
.prose .offer-box a { color: #01d7e1; }
.prose .offer-price { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.prose .offer-old { margin-left: 0.4rem; font-size: 1rem; font-weight: 500; text-decoration: line-through; color: rgba(255, 255, 255, 0.55); }
.prose .offer-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #01d7e1;
  color: #343434;
  font-size: 0.8rem;
  font-weight: 800;
}
.prose .offer-cta {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.75rem;
  background: #01d7e1;
  color: #343434 !important;
  text-decoration: none !important;
  font-weight: 800;
}
.badge-gold {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(180deg, #ffe27a 0%, #f5c518 100%);
  color: #5a4300;
  box-shadow: 0 0 0 1px rgba(196, 149, 8, 0.28);
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24; }

/* Autocomplete : remonte le champ actif au-dessus des voisins (mobile empilé) */
.suggest-field {
  position: relative;
  z-index: 1;
}
.suggest-field.suggest-open {
  z-index: 50;
}
.suggest-box {
  z-index: 60;
}

/* Bande padel sous le menu (hors homepage) - face de raquette */
.padel-band {
  position: relative;
  height: 3.25rem;
  overflow: hidden;
  background: #343434;
  isolation: isolate;
}
@media (min-width: 640px) {
  .padel-band {
    height: 3.75rem;
  }
}
.padel-band__mesh {
  position: absolute;
  inset: -20% -5%;
  background-image: radial-gradient(circle, #01d7e1 1.35px, transparent 1.45px);
  background-size: 14px 14px;
  background-position: 0 0;
  opacity: 0.78;
  transform: rotate(-8deg) scale(1.08);
  animation: padel-band-drift 28s linear infinite;
}
.padel-band__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(52, 52, 52, 0.55) 0%, transparent 42%, rgba(1, 215, 225, 0.18) 100%),
    linear-gradient(to bottom, rgba(52, 52, 52, 0.25), transparent 55%, rgba(52, 52, 52, 0.35));
  pointer-events: none;
}
.padel-band__edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #01d7e1 0%, rgba(1, 215, 225, 0.35) 45%, #01d7e1 100%);
  opacity: 0.95;
}
@keyframes padel-band-drift {
  from { background-position: 0 0; }
  to { background-position: 56px 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .padel-band__mesh {
    animation: none;
  }
}

/* Homepage hero / CTA - hauteurs / cadrage / typos dans site.css */
.home-hero {
  min-height: 60vh;
  min-height: 60svh;
}
.home-hero > img {
  object-position: 62% 42%;
}
.home-hero-overlay {
  background:
    linear-gradient(105deg, rgba(52, 52, 52, 0.88) 0%, rgba(52, 52, 52, 0.55) 48%, rgba(52, 52, 52, 0.28) 100%),
    linear-gradient(to top, rgba(52, 52, 52, 0.75) 0%, transparent 42%);
}
.home-hero-brand {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
}
.home-hero-title {
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  line-height: 1.08;
}
.home-hero-sub {
  font-size: clamp(1.125rem, 2.2vw, 1.35rem);
  line-height: 1.45;
}

.home-cta {
  margin-top: 4.5rem;
  min-height: 22rem;
}
@media (min-width: 768px) {
  .home-cta {
    min-height: 26.5rem;
  }
}
@media (min-width: 1024px) {
  .home-cta {
    min-height: 31rem;
  }
}
.home-cta > img {
  /* Ancre en haut : visage entier + sommet de la raquette */
  object-position: 68% 0%;
}
.home-cta-overlay {
  background:
    linear-gradient(100deg, rgba(52, 52, 52, 0.92) 0%, rgba(52, 52, 52, 0.68) 48%, rgba(52, 52, 52, 0.35) 100%);
}
.home-cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
}
.home-cta-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.5;
}
.home-cta-list {
  font-size: 1.05rem;
}
.home-cta-inset {
  border-radius: 1.25rem 0.35rem 1.25rem 0.35rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
  object-position: 70% 12%;
}
.home-cta:hover .home-cta-inset {
  transform: rotate(0deg) translateY(-4px);
}

@keyframes home-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-hero-brand,
.home-hero-title,
.home-hero-sub,
.home-hero-search {
  animation: home-rise 0.7s ease both;
}
.home-hero-title { animation-delay: 0.08s; }
.home-hero-sub { animation-delay: 0.16s; }
.home-hero-search { animation-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  .home-hero-brand,
  .home-hero-title,
  .home-hero-sub,
  .home-hero-search,
  .home-cta-inset {
    animation: none;
    transition: none;
  }
}

.editorial-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  border-radius: 0.375rem;
  background: #01d7e1;
  color: #343434;
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

/* Guides / actualités homepage : air au-dessus des titres */
.home-feed-section {
  margin-top: 2.75rem;
}
.home-feed-section .section-heading__title {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .home-feed-section {
    margin-top: 3.5rem;
  }
}

/* Titres de section (H2 + sous-titre) - centrés + déco marque */
.section-heading {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.section-heading__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cp-dark, #343434);
}
.section-heading__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #01d7e1;
  color: #343434;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
}
.section-heading--lg .section-heading__title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}
.section-heading__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  transform-origin: center;
  animation: section-deco-in 0.55s ease both;
}
.section-heading__bar {
  display: block;
  height: 3px;
  border-radius: 999px;
}
.section-heading__bar--primary {
  width: 2.25rem;
  background: var(--cp-cyan, #01d7e1);
}
.section-heading__bar--dark {
  width: 1.1rem;
  background: var(--cp-dark, #343434);
  opacity: 0.85;
}
.section-heading__diamond {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--cp-cyan, #01d7e1);
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px rgba(1, 215, 225, 0.22);
}
.section-heading__sub {
  margin-top: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(52, 52, 52, 0.62);
}
@keyframes section-deco-in {
  from { opacity: 0; transform: scaleX(0.55); }
  to { opacity: 1; transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .section-heading__deco {
    animation: none;
  }
}

.clubs-by-city {
  margin-top: 6rem;
}

.clubs-all {
  margin-top: 6rem;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 52, 52, 0.14);
  background: #fff;
  padding: 0.35rem 0.4rem 0.35rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #343434;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.city-chip:hover {
  border-color: #01d7e1;
  color: #0b7f85;
}
.city-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: #01d7e1;
  color: #343434;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
}

.az-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 1.25rem;
}
.az-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.35rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(52, 52, 52, 0.12);
  background: #fff;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #343434;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.az-nav__link:hover {
  border-color: #01d7e1;
  color: #0b7f85;
}
.az-nav__link.is-active {
  background: #343434;
  border-color: #343434;
  color: #fff;
}
.cp-flash-anchor {
  scroll-margin-top: 5.5rem;
}
.cp-recaptcha {
  min-height: 78px;
}
.cp-recaptcha-error {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #93000a;
}

.az-nav__link.is-empty {
  background: transparent;
  border-color: transparent;
  color: rgba(52, 52, 52, 0.28);
  cursor: default;
}

/* ----- Back-office (admin + espace coach) ----- */
.admin-body {
  background: #ececec;
}
.admin-body.admin-sidebar-open {
  overflow: hidden;
}
.admin-app {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: stretch;
}
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: min(18rem, 88vw);
  display: flex;
  flex-direction: column;
  background: #343434;
  color: #f3f3f3;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}
.admin-sidebar.is-open {
  transform: translateX(0);
}
.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.45);
}
.admin-sidebar-backdrop[hidden] {
  display: none !important;
}
.admin-sidebar-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.15rem 1.1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.admin-sidebar-brand-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.admin-sidebar-logo {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
}
.admin-sidebar-kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #01d7e1;
}
.admin-sidebar-title {
  margin: 0.15rem 0 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 0;
}
.admin-nav-scroll {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  min-height: 0;
  overflow-y: auto;
  padding: 0.85rem 0.75rem 0.5rem;
}
.admin-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.admin-nav-label {
  margin: 0 0 0.3rem;
  padding: 0 0.7rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.4rem;
  padding: 0.35rem 0.7rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: #e8e8e8;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.admin-nav-link.is-active {
  background: rgba(1, 215, 225, 0.16);
  color: #01d7e1;
}
.admin-nav-icon {
  font-size: 1.2rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.admin-nav-text {
  flex: 1;
  min-width: 0;
}
.admin-nav-badge {
  margin-left: auto;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #ba1a1a;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}
.badge-unread {
  display: inline-flex;
  align-items: center;
  margin-right: 0.4rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: #ba1a1a;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
}
.bo-card-unread {
  box-shadow: inset 3px 0 0 #ba1a1a;
}
.bo-page-head .badge-muted.is-active {
  background: #343434;
  color: #fff;
}
.admin-nav-footer {
  flex-shrink: 0;
  padding: 0.65rem 0.75rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.admin-nav-logout:hover {
  background: rgba(186, 26, 26, 0.18);
  color: #fca5a5;
}
.admin-main-col {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 3.25rem;
  padding: 0.5rem 1rem;
  background: #f7f7f7;
  border-bottom: 1px solid #d8d8d8;
}
.admin-topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.admin-topbar-meta {
  font-size: 0.8rem;
  color: rgba(52, 52, 52, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10rem;
}
.admin-country-switch,
.admin-country-field {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.admin-country-flag {
  position: absolute;
  left: 0.55rem;
  top: 50%;
  width: 1.2rem;
  height: 0.85rem;
  object-fit: cover;
  border-radius: 0.12rem;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.admin-country-switch select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 2.1rem;
  max-width: 12.5rem;
  padding: 0.25rem 1.85rem 0.25rem 2.2rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23343434' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.55rem 50%;
  background-size: 0.7rem 0.45rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #343434;
  cursor: pointer;
}
.admin-menu-toggle,
.admin-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.admin-menu-toggle {
  color: #343434;
}
.admin-menu-toggle:hover {
  background: #ececec;
}
.admin-menu-close {
  width: 2.25rem;
  height: 2.25rem;
  margin: -0.2rem -0.25rem 0 0;
  color: #e8e8e8;
}
.admin-menu-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.admin-topbar-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #343434;
}
.admin-content {
  padding: 1.25rem 1rem 3rem;
  max-width: 80rem;
  width: 100%;
}
.admin-flashes {
  margin-bottom: 1.25rem;
}
.admin-flash {
  margin: 0 0 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}
.admin-flash--success {
  background: rgba(1, 215, 225, 0.16);
  color: #0a5c61;
  border: 1px solid rgba(1, 215, 225, 0.35);
}
.admin-flash--error {
  background: #ffdad6;
  color: #93000a;
}
.admin-flash--info {
  background: #fff;
  color: #343434;
  border: 1px solid #e5e5e5;
}
.bo-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.bo-page-head h1 {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #343434;
}
.bo-page-head p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(52, 52, 52, 0.62);
}
.bo-stats {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .bo-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .bo-stats { grid-template-columns: repeat(3, 1fr); }
}
.bo-stat {
  display: block;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 0.85rem;
  padding: 1.1rem 1.2rem;
  color: inherit;
  text-decoration: none;
}
a.bo-stat:hover {
  border-color: #01d7e1;
}
.bo-stat__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(52, 52, 52, 0.55);
}
.bo-stat__value {
  margin: 0.4rem 0 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #343434;
}
.bo-stat__hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: rgba(52, 52, 52, 0.62);
}
.bo-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 0.85rem;
}
.bo-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}
.bo-table thead {
  background: #f7f7f7;
}
.bo-table th {
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(52, 52, 52, 0.55);
  border-bottom: 1px solid #e5e5e5;
}
.bo-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.bo-table tbody tr:last-child td {
  border-bottom: 0;
}
.bo-table tbody tr:hover {
  background: #fafafa;
}
@media (min-width: 1024px) {
  .admin-sidebar {
    transform: none;
  }
  .admin-sidebar-backdrop,
  .admin-menu-toggle,
  .admin-menu-close {
    display: none;
  }
  .admin-main-col {
    margin-left: 18rem;
  }
  .admin-content {
    padding: 2.25rem 2rem 4rem;
  }
}

/* ----- Photo coach : dropzone + crop 4:3 ----- */
.coach-photo {
  display: grid;
  gap: 0.85rem;
}
.coach-photo__preview {
  position: relative;
  width: min(100%, 22rem);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid #d8d8d8;
  background: #f0f0f0;
}
.coach-photo__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-photo__empty {
  margin: 0;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(52, 52, 52, 0.55);
}
.coach-photo__preview[hidden],
.coach-photo__preview img[hidden] {
  display: none !important;
}
.coach-photo__drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 9.5rem;
  padding: 1.35rem 1.1rem 1.15rem;
  border: 2px dashed #c8c8c8;
  border-radius: 0.95rem;
  background: #fafafa;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.coach-photo__drop:hover,
.coach-photo__drop:focus-visible,
.coach-photo__drop.is-dragover {
  border-color: #01d7e1;
  background: rgba(1, 215, 225, 0.08);
  box-shadow: 0 0 0 4px rgba(1, 215, 225, 0.12);
  outline: none;
}
.coach-photo__drop-icon {
  font-size: 2.1rem;
  color: #01d7e1;
}
.coach-photo__drop-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #343434;
}
.coach-photo__drop-sub {
  font-size: 0.8rem;
  color: rgba(52, 52, 52, 0.62);
  max-width: 22rem;
}
.coach-photo__file {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.coach-photo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.coach-photo__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #343434;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.coach-photo__btn:hover {
  border-color: #01d7e1;
}
.coach-photo [data-photo-status].is-error { color: #93000a; }
.coach-photo [data-photo-status].is-ok { color: #0a5c61; }

.coach-crop-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.coach-crop-modal[hidden] { display: none !important; }
.coach-crop-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(52, 52, 52, 0.58);
}
.coach-crop-modal__dialog {
  position: relative;
  width: min(56rem, 100%);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 18px 50px rgba(52, 52, 52, 0.28);
}
.coach-crop-modal__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #343434;
}
.coach-crop-modal__hint {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: rgba(52, 52, 52, 0.62);
}
.coach-crop-modal__stage {
  max-height: min(58vh, 28rem);
  background: #1a1a1a;
  border-radius: 0.7rem;
  overflow: hidden;
}
.coach-crop-modal__stage img {
  display: block;
  max-width: 100%;
}
.coach-crop-modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.coach-crop-modal__zoom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 12rem;
  font-size: 0.8rem;
  color: rgba(52, 52, 52, 0.62);
}
.coach-crop-modal__zoom input { flex: 1; }
.coach-crop-modal__confirm {
  background: #343434;
  color: #01d7e1;
  border: 0;
  border-radius: 0.7rem;
  padding: 0.6rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
}
.coach-crop-modal__cancel {
  background: transparent;
  border: 1px solid #d8d8d8;
  border-radius: 0.7rem;
  padding: 0.6rem 1.15rem;
  cursor: pointer;
}

.file-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 8.5rem;
  padding: 1.25rem 1.1rem;
  border: 2px dashed #c8c8c8;
  border-radius: 0.95rem;
  background: #fafafa;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.file-drop:hover,
.file-drop:focus-visible,
.file-drop.is-dragover {
  border-color: #01d7e1;
  background: rgba(1, 215, 225, 0.08);
  box-shadow: 0 0 0 4px rgba(1, 215, 225, 0.12);
  outline: none;
}
.file-drop.has-file {
  border-style: solid;
  border-color: #01d7e1;
  background: rgba(1, 215, 225, 0.06);
}
.file-drop__icon {
  font-size: 2rem;
  color: #01d7e1;
}
.file-drop__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #343434;
}
.file-drop__sub,
.file-drop__name {
  font-size: 0.8rem;
  color: rgba(52, 52, 52, 0.62);
}
.file-drop__name {
  font-weight: 600;
  color: #343434;
  word-break: break-all;
}
.file-drop__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bo-callout {
  margin: 0 0 1.75rem;
  padding: 1.5rem 1.4rem 1.55rem;
  border-radius: 1rem;
  border: 3px solid #01d7e1;
  background: #343434;
  color: #fff;
}
.bo-callout__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #01d7e1;
}
.bo-callout__title {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}
.bo-callout__text {
  margin: 0.7rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
}
.bo-callout__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.15rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.8rem;
  background: #01d7e1;
  color: #343434;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.cp-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cp-socials--compact {
  margin-top: 1rem;
}
.cp-socials__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f3f3f3;
  color: #343434;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
}
.cp-socials__link:hover {
  background: #01d7e1;
  color: #343434;
}
.cp-socials__icon {
  display: inline-flex;
  line-height: 0;
}

.cp-langs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.cp-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.35rem;
  overflow: hidden;
  border-radius: 0.25rem;
  box-shadow: 0 0 0 1px rgba(52, 52, 52, 0.12);
  background: #fff;
}
.cp-lang__flag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
