/* The existing philosophy copy and its visual example share one section. */
.philosophy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
  max-width: 1200px;
  margin-inline: auto;
}
.philosophy-copy { max-width: 660px; }
.philosophy-reel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  justify-self: end;
  border-radius: 2.8rem 2.8rem 1rem;
  overflow: hidden;
  background: var(--ivory);
}
.philosophy-reel video,
.philosophy-reel-poster,
.philosophy-reel-poster img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.philosophy-reel-poster { pointer-events: none; }
.philosophy-reel[data-started] .philosophy-reel-poster { visibility: hidden; }
.philosophy-reel-control {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  right: 1rem;
  min-height: 44px;
  min-width: 72px;
  padding: .65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  font-family: inherit;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.4;
}
.philosophy-reel-control:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--ivory);
}
.philosophy-reel-control:active { background: var(--butter); }
.philosophy-reel-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
@media (width <= 900px) {
  .philosophy-inner { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .philosophy-copy { max-width: 720px; }
  .philosophy-reel { justify-self: center; }
}
@media (width <= 580px) {
  .philosophy-reel { border-radius: 2rem 2rem .75rem; }
}
