/* A STORY STAYS — Desktop Tall-Viewport Root Repair 02
   Scope: desktop-width tall/portrait viewports only.
   Mobile/tablet <=900px and standard widescreen desktop are untouched.
   Root fix: the monthly spotlight no longer stays bottom-anchored inside a 100dvh world
   when the desktop viewport is unusually tall. It is re-anchored into the active
   composition so the middle of the page does not become an oversized empty field.
*/

@media (min-width: 901px) and (max-aspect-ratio: 4 / 3) {
  .cr-home-copy {
    top: clamp(42px, 5vh, 72px);
  }

  .cr-featured-window {
    bottom: auto;
    top: clamp(430px, 38vh, 610px);
    right: clamp(28px, 5vw, 76px);
    width: min(420px, 34vw);
    min-height: 275px;
  }
}

@media (min-width: 901px) and (max-aspect-ratio: 3 / 4) {
  .cr-home-copy {
    top: clamp(38px, 4.5vh, 64px);
  }

  .cr-featured-window {
    top: clamp(420px, 36vh, 570px);
    width: min(430px, 35vw);
    min-height: 285px;
  }
}
