.pt-video-player {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(96px, 12vw, 150px) 0 clamp(80px, 10vw, 130px);
  color: #fff6e6;
}

.pt-video-player__header {
  max-width: 940px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.pt-video-player__eyebrow {
  margin: 0 0 14px;
  color: #9c2a2a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pt-video-player__title {
  margin: 0;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.pt-video-player__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 246, 230, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

.pt-video-player__frame {
  width: 100%;
  margin: clamp(28px, 5vw, 52px) 0;
  background: #030407;
  border: 1px solid rgba(255, 246, 230, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.pt-video-player__frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.pt-video-player__frame--custom {
  position: relative;
  overflow: hidden;
  background: #000;
}

.pt-video-player__custom-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.pt-video-player__youtube-host,
.pt-video-player__youtube-host iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pt-video-player__youtube-host {
  z-index: 1;
}

.pt-video-player__cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity .28s ease, visibility .28s ease;
}

.pt-video-player__custom-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-video-player__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.18));
}

.pt-video-player__custom-play {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.pt-video-player__custom-play span {
  margin-left: 5px;
  font-size: 2.2rem;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.72);
}

.pt-video-player__custom-controls {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 5;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.pt-video-player__custom-controls button {
  min-width: 42px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.56);
  font: 700 12px/1 system-ui, sans-serif;
  cursor: pointer;
}

.pt-video-player__fallback-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 7;
  display: none;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.76);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.pt-video-player__custom-player.is-playing .pt-video-player__cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pt-video-player__custom-player.is-playing .pt-video-player__custom-controls {
  opacity: 1;
  pointer-events: auto;
}

.pt-video-player__custom-player.is-paused .pt-video-player__cover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pt-video-player__custom-player.has-player-error .pt-video-player__fallback-link {
  display: block;
}

.pt-video-player__custom-player.has-player-error .pt-video-player__custom-play {
  opacity: .48;
}

@media (prefers-reduced-motion: reduce) {
  .pt-video-player__cover,
  .pt-video-player__custom-controls {
    transition: none;
  }
}

.pt-video-player__frame--poster img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pt-video-player__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 clamp(42px, 6vw, 72px);
  border: 1px solid rgba(255, 246, 230, 0.12);
  background: rgba(255, 246, 230, 0.08);
}

.pt-video-player__meta-item {
  padding: 18px 20px;
  background: rgba(5, 10, 17, 0.94);
}

.pt-video-player__meta-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 246, 230, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pt-video-player__meta-value {
  display: block;
  color: #fff6e6;
  font-size: 0.98rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.pt-video-player__section {
  margin-top: clamp(36px, 6vw, 72px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(255, 246, 230, 0.12);
}

.pt-video-player__section h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.pt-video-player__section p {
  max-width: 900px;
  margin: 0 0 16px;
  color: rgba(255, 246, 230, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.pt-video-player__list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-video-player__list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 246, 230, 0.10);
  border-radius: 3px;
  background: rgba(255, 246, 230, 0.035);
  color: rgba(255, 246, 230, 0.75);
  line-height: 1.55;
}

.pt-video-player__kv {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 246, 230, 0.12);
  background: rgba(255, 246, 230, 0.08);
}

.pt-video-player__kv-item {
  min-width: 0;
  padding: 18px 20px;
  background: rgba(5, 10, 17, 0.94);
}

.pt-video-player__kv-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 246, 230, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pt-video-player__kv-item strong {
  display: block;
  color: rgba(255, 246, 230, 0.86);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.pt-video-player__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 920px;
}

.pt-video-player__tag {
  padding: 7px 10px;
  border: 1px solid rgba(255, 246, 230, 0.16);
  border-radius: 3px;
  color: rgba(255, 246, 230, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-video-player__location {
  margin: clamp(52px, 8vw, 96px) 0 clamp(64px, 9vw, 112px);
  padding-top: clamp(32px, 5vw, 52px);
  border-top: 1px solid rgba(255, 246, 230, 0.12);
}

.pt-video-player__location-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.pt-video-player__location-eyebrow,
.pt-video-player__related-eyebrow {
  margin: 0 0 12px;
  color: #c04a43;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pt-video-player__location-head h2,
.pt-video-player__related-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.pt-video-player__location-head > p,
.pt-video-player__related-head > div > p:last-child {
  margin: 0;
  color: rgba(255, 246, 230, 0.68);
  font-size: 0.98rem;
  line-height: 1.7;
}

.pt-video-player__location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(270px, 0.68fr);
  min-height: 450px;
  border: 1px solid rgba(255, 246, 230, 0.14);
  background: #050a11;
}

.pt-video-player__map {
  min-width: 0;
  min-height: 450px;
  background: #e8e2d6;
}

.pt-video-player__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  filter: saturate(0.76) contrast(1.02);
}

.pt-video-player__location-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(24px, 4vw, 48px);
  border-left: 1px solid rgba(255, 246, 230, 0.12);
}

.pt-video-player__location-number {
  margin-bottom: auto;
  color: rgba(255, 246, 230, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.pt-video-player__location-info h3 {
  margin: 40px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.pt-video-player__location-address,
.pt-video-player__location-quartier {
  margin: 0;
  color: rgba(255, 246, 230, 0.72);
  line-height: 1.55;
}

.pt-video-player__location-quartier {
  margin-top: 8px;
  color: rgba(255, 246, 230, 0.47);
  font-size: 0.82rem;
}

.pt-video-player__location-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.pt-video-player__location-actions a,
.pt-video-player__location-actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #fff6e6;
  color: #050a11;
  background: #fff6e6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: inherit;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.pt-video-player__location-actions a::after,
.pt-video-player__location-actions button::after {
  content: "↗";
  font-size: 1rem;
}

.pt-video-player__location-actions a.is-secondary {
  color: #fff6e6;
  background: transparent;
  border-color: rgba(255, 246, 230, 0.26);
}

.pt-video-player__location-actions a:hover,
.pt-video-player__location-actions a:focus-visible,
.pt-video-player__location-actions button:hover,
.pt-video-player__location-actions button:focus-visible {
  color: #fff6e6;
  background: #9c2a2a;
  border-color: #9c2a2a;
}

.pt-video-player__location-actions .pt-video-player__route-add {
  color: #fff6e6;
  background: transparent;
  border-color: rgba(192, 74, 67, 0.72);
}

.pt-video-player__location-actions .pt-video-player__route-add::after {
  content: "+";
}

.pt-video-player__location-actions .pt-video-player__route-add small {
  margin-left: 12px;
  color: rgba(255, 246, 230, 0.54);
  font-size: 0.68rem;
  font-weight: 700;
}

.pt-video-player__location-actions .pt-video-player__route-add.is-selected {
  color: #050a11;
  background: #fff6e6;
  border-color: #fff6e6;
}

.pt-video-player__location-actions .pt-video-player__route-add.is-selected::after {
  content: "✓";
}

.pt-video-player__location-actions .pt-video-player__route-add.is-selected small {
  color: rgba(5, 10, 17, 0.6);
}

.pt-video-player__route-dock {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  width: min(680px, calc(100vw - 32px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 246, 230, 0.22);
  border-radius: 3px;
  color: #fff6e6;
  background: rgba(5, 10, 17, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.46);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.pt-video-player__route-dock[hidden] {
  display: none;
}

.pt-video-player__route-dock-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.pt-video-player__route-dock-copy > span {
  color: #c04a43;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pt-video-player__route-dock-copy > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.pt-video-player__route-dock-copy > small {
  color: rgba(255, 246, 230, 0.5);
  line-height: 1.3;
}

.pt-video-player__route-dock > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 16px;
  color: #050a11;
  background: #fff6e6;
  font-size: 0.73rem;
  font-weight: 800;
  text-decoration: none;
}

.pt-video-player__related.pt-carousel-rail {
  width: 100vw;
  max-width: none;
  margin: clamp(72px, 11vw, 144px) 0 0 calc(50% - 50vw);
  padding-left: 0;
  overflow: hidden;
}

.pt-video-player__related-head {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(24px, 4vw, 40px);
  padding-top: clamp(34px, 5vw, 52px);
  border-top: 1px solid rgba(255, 246, 230, 0.12);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.pt-video-player__related-head > div:first-child {
  max-width: 830px;
}

.pt-video-player__related-head > div > p:last-child {
  max-width: 720px;
  margin-top: 18px;
}

.pt-video-player__related-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.pt-video-player__related-controls button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 246, 230, 0.24);
  border-radius: 999px;
  color: #fff6e6;
  background: transparent;
  font-size: 1.15rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.pt-video-player__related-controls button:hover,
.pt-video-player__related-controls button:focus-visible {
  color: #050a11;
  background: #fff6e6;
}

.pt-video-player__related-controls button:disabled {
  opacity: 0.28;
  cursor: default;
}

.pt-video-player__related-track {
  gap: 16px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2 + 24px)) 18px;
  scroll-padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.pt-video-player__related-card.pt-card-video {
  flex: 0 0 clamp(270px, 30vw, 410px);
  min-height: 0;
  background: rgba(255, 246, 230, 0.035);
}

.pt-video-player__related-card .pt-card-video__media:empty::after {
  content: "Paris T’aime";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 246, 230, 0.4);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.pt-video-player__related-card .pt-card-video__kicker {
  color: #c04a43;
}

.pt-video-player__related-card strong {
  padding-bottom: 10px;
}

.pt-video-player__related-card small {
  color: rgba(255, 246, 230, 0.5);
}

.pt-video-player__missing {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0;
}

.pt-video-player__missing h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.9;
}

.pt-video-player__missing p {
  color: rgba(255, 246, 230, 0.72);
  line-height: 1.65;
}

.pt-video-player__person-results {
  min-height: 62vh;
  padding: clamp(48px, 8vw, 104px) 0;
}

.pt-video-player__person-head {
  max-width: 900px;
}

.pt-video-player__person-head h1 {
  margin: 12px 0 20px;
  color: #fff6e6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.pt-video-player__person-head > p:not(.pt-video-player__eyebrow) {
  max-width: 760px;
  margin: 0 0 12px;
  color: rgba(255, 246, 230, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.pt-video-player__person-back {
  display: inline-flex;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(192, 74, 67, 0.76);
  color: #fff6e6;
  text-decoration: none;
}

.pt-video-player__person-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 246, 230, 0.14);
  background: rgba(255, 246, 230, 0.12);
}

.pt-video-player__person-card {
  display: grid;
  min-width: 0;
  color: #fff6e6;
  background: #080d15;
  text-decoration: none;
}

.pt-video-player__person-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 246, 230, 0.05);
}

.pt-video-player__person-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.pt-video-player__person-card-copy {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.pt-video-player__person-card-copy small {
  color: #c04a43;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pt-video-player__person-card-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.pt-video-player__person-card-copy > span {
  color: rgba(255, 246, 230, 0.55);
  font-size: 0.86rem;
}

.pt-video-player__person-card-copy b {
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pt-video-player__person-card:hover .pt-video-player__person-card-media img,
.pt-video-player__person-card:focus-visible .pt-video-player__person-card-media img {
  transform: scale(1.035);
}

@media (max-width: 980px) {
  .pt-video-player__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-video-player__location-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  }

  .pt-video-player__person-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pt-video-player {
    width: min(100% - 22px, 1180px);
    padding-top: 86px;
  }

  .pt-video-player__title {
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .pt-video-player__meta,
  .pt-video-player__kv {
    grid-template-columns: 1fr;
  }

  .pt-video-player__meta-item,
  .pt-video-player__kv-item {
    padding: 16px;
  }

  .pt-video-player__location-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pt-video-player__location-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    border-right: 0;
    border-left: 0;
  }

  .pt-video-player__map,
  .pt-video-player__map iframe {
    min-height: 340px;
  }

  .pt-video-player__location-info {
    padding: 24px 0 4px;
    border-left: 0;
    background: transparent;
  }

  .pt-video-player__location-number {
    display: none;
  }

  .pt-video-player__location-info h3 {
    margin-top: 0;
  }

  .pt-video-player__location-actions {
    grid-template-columns: 1fr;
  }

  .pt-video-player__related-head {
    width: min(100% - 22px, 1180px);
    align-items: flex-end;
    gap: 18px;
  }

  .pt-video-player__related-head > div > p:last-child {
    display: none;
  }

  .pt-video-player__related-controls button {
    width: 42px;
    height: 42px;
  }

  .pt-video-player__related-track {
    padding-left: 11px;
    padding-right: 11px;
    scroll-padding-left: 11px;
  }

  .pt-video-player__related-card.pt-card-video {
    flex-basis: 82vw;
  }

  .pt-video-player__person-grid {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .pt-video-player__route-dock {
    width: calc(100vw - 22px);
    align-items: stretch;
    gap: 10px;
    padding: 11px;
  }

  .pt-video-player__route-dock-copy {
    padding-left: 4px;
  }

  .pt-video-player__route-dock-copy > small {
    display: none;
  }

  .pt-video-player__route-dock > a {
    padding: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pt-video-player__location-actions a,
  .pt-video-player__location-actions button,
  .pt-video-player__related-controls button {
    transition: none;
  }
}
