* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overscroll-behavior-y: none;
  background: #f6f7fb;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body.pl-style {
  background: var(--pl-shell-bg, #f6f7fb);
  color: var(--pl-shell-text, #101828);
  font-family: var(--pl-font-text, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
  font-size: 16px;
}

.pl-home-preview-notice {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #1d2327;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  font: 500 13px/1.35 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pl-home-preview-notice.is-hidden {
  display: none;
}

.pl-home-preview-notice__content {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.pl-home-preview-notice__content strong {
  font-weight: 700;
}

.pl-home-preview-notice__content a {
  color: #9ecbff;
  text-decoration: none;
}

.pl-home-preview-notice__content a:hover,
.pl-home-preview-notice__content a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.pl-home-preview-notice__close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  font: 700 20px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pl-home-preview-notice__close:hover,
.pl-home-preview-notice__close:focus {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 640px) {
  .pl-home-preview-notice {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

.pl-home-prototype,
html {
  --pl-shell-bg: var(--pl-shell-light-bg, #f6f7fb);
  --pl-shell-surface: var(--pl-shell-light-surface, #ffffff);
  --pl-shell-surface-alt: var(--pl-shell-light-surface-alt, #f8fafc);
  --pl-shell-border: var(--pl-shell-light-border, #d0d5dd);
  --pl-shell-text: var(--pl-shell-light-text, #101828);
  --pl-shell-text-muted: var(--pl-shell-light-text-muted, #475467);
}

.pl-home-prototype[data-pl-shell-mode="dark"],
html[data-pl-shell-mode="dark"] {
  --pl-shell-bg: var(--pl-shell-dark-bg, #0b1220);
  --pl-shell-surface: var(--pl-shell-dark-surface, #111827);
  --pl-shell-surface-alt: var(--pl-shell-dark-surface-alt, #1f2937);
  --pl-shell-border: var(--pl-shell-dark-border, #334155);
  --pl-shell-text: var(--pl-shell-dark-text, #e5e7eb);
  --pl-shell-text-muted: var(--pl-shell-dark-text-muted, #cbd5e1);
  --pl-home-deck-overlay-rgb: 2, 6, 23;
  --pl-home-deck-overlay-alpha: 0.16;
  --pl-home-deck-overlay-alpha-mid: 0.08;
}

body.pl-style-dominant {
  --pl-content-accent: var(--pl-accent, var(--pl-color-primary, var(--pl-token-primary, #0b63ce)));
  --pl-content-accent-soft: var(--pl-color-primary-soft, var(--pl-accent-soft, #cbe9f9));
  --pl-content-accent-hover: var(--pl-accent-hover, var(--pl-color-primary-strong, var(--pl-token-primary-hover, #084ea5)));
  --pl-content-accent-contrast: var(--pl-color-primary-contrast, var(--pl-token-primary-contrast, #ffffff));
}

body.pl-style-secondary {
  --pl-content-accent: var(--pl-secondary, var(--pl-color-secondary, var(--pl-token-secondary, #0f766e)));
  --pl-content-accent-soft: var(--pl-color-secondary-soft, var(--pl-accent-soft, #bfe9e5));
  --pl-content-accent-hover: var(--pl-secondary-hover, var(--pl-color-secondary-strong, var(--pl-token-secondary-hover, #0b5f58)));
  --pl-content-accent-contrast: var(--pl-color-secondary-contrast, var(--pl-token-secondary-contrast, #ffffff));
}

body.pl-style-tertiary {
  --pl-content-accent: var(--pl-color-tertiary, var(--pl-token-tertiary, #7a2e9f));
  --pl-content-accent-soft: var(--pl-color-tertiary-soft, var(--pl-accent-soft, #e4cdee));
  --pl-content-accent-hover: var(--pl-color-tertiary-strong, var(--pl-token-tertiary-hover, #5e237a));
  --pl-content-accent-contrast: var(--pl-color-tertiary-contrast, var(--pl-token-tertiary-contrast, #ffffff));
}

.pl-home-prototype {
  --pl-content-surface: var(--pl-shell-surface);
  --pl-content-surface-alt: var(--pl-shell-surface-alt);
  --pl-content-border: var(--pl-shell-border);
  --pl-content-text: var(--pl-shell-text);
  --pl-content-text-muted: var(--pl-shell-text-muted);
  --pl-home-section-gradient-light: linear-gradient(
    145deg,
    color-mix(in srgb, var(--pl-content-accent, #0b63ce) 28%, #ffffff) 0%,
    #ffffff 100%
  );
  --pl-home-section-gradient-dark: linear-gradient(
    145deg,
    color-mix(in srgb, var(--pl-content-accent, #0b63ce) 18%, var(--pl-shell-surface, #111827)) 0%,
    var(--pl-shell-surface, #111827) 100%
  );
  --pl-home-section-gradient-active: var(--pl-home-section-gradient-light);
  --pl-home-deck-overlay-rgb: 15, 23, 42;
  --pl-home-deck-overlay-alpha: 0.08;
  --pl-home-deck-overlay-alpha-mid: 0.04;
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--pl-focus-ring, #0b57d0);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--pl-shell-surface, #fff) 62%, transparent);
}

.pl-home-prototype[data-pl-shell-mode="dark"],
html[data-pl-shell-mode="dark"] .pl-home-prototype {
  --pl-home-section-gradient-active: var(--pl-home-section-gradient-dark);
}

.pl-home-prototype__header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--pl-shell-surface, #fff);
  border-bottom: 1px solid var(--pl-shell-border, #1d2939);
}

.pl-home-prototype__container--header {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.pl-home-prototype__header-title {
  font-weight: 700;
  font-family: var(--pl-font-title, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pl-home-prototype__header-heading {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.pl-home-prototype__header-branding {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 4px;
}

.pl-home-prototype__header-brand-link {
  display: inline-grid;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.pl-home-prototype__header-brand-row {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pl-home-prototype__header-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
}

.pl-home-prototype__header-brand-name {
  margin: 0;
  font-family: var(--pl-font-title, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
  font-size: clamp(1.15rem, 2.1vw, 1.375rem);
  line-height: 1.3;
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 1px;
}

.pl-home-prototype__page-heading {
  margin: 0;
  font-family: var(--pl-font-title, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pl-home-prototype__header-actions {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.pl-home-prototype__header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--pl-shell-text, #101828);
  background: transparent;
  border: 0;
  font-size: 0.86rem;
  white-space: nowrap;
}

.pl-home-prototype__header-action[aria-disabled="true"],
.pl-home-prototype__header-action.is-disabled {
  color: var(--pl-text-disabled, #667085);
  border-color: color-mix(in srgb, var(--pl-shell-border, #d0d5dd) 78%, transparent);
  background: color-mix(in srgb, var(--pl-shell-surface, #fff) 94%, var(--pl-shell-border, #d0d5dd) 6%);
  pointer-events: none;
  cursor: default;
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__container--header {
  min-height: 60px;
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-actions {
  align-self: flex-start;
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action {
  background: color-mix(in srgb, var(--pl-content-accent, #0b63ce) 12%, var(--pl-shell-surface, #fff));
  color: var(--pl-content-accent, #0b63ce);
  border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 24%, var(--pl-shell-border, #1d2939));
  border-radius: 8px;
  padding: 6px 10px;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action--cta {
  background: var(--pl-accent-safe-bg-hover, var(--pl-accent-safe-bg, var(--pl-content-accent, #0b63ce)));
  color: var(--pl-accent-safe-fg-hover, var(--pl-accent-safe-fg, var(--pl-text-on-accent, #ffffff)));
  border-color: var(--pl-accent-safe-border-hover, var(--pl-accent-safe-border, var(--pl-content-accent, #0b63ce)));
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action .pl-icon {
  color: inherit;
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action:hover,
.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action:active {
  background: var(--pl-content-accent, #0b63ce);
  color: var(--pl-text-on-accent, #ffffff);
  border-color: var(--pl-content-accent, #0b63ce);
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action--cta:hover,
.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action--cta:focus-visible {
  background: var(--pl-accent-safe-bg, var(--pl-content-accent, #0b63ce));
  color: var(--pl-accent-safe-fg, var(--pl-text-on-accent, #ffffff));
  border-color: var(--pl-accent-safe-border, var(--pl-content-accent, #0b63ce));
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action--cta:active {
  background: var(--pl-accent-safe-bg-active, var(--pl-accent-safe-bg-hover, var(--pl-accent-safe-bg, var(--pl-content-accent, #0b63ce))));
  color: var(--pl-accent-safe-fg-active, var(--pl-accent-safe-fg-hover, var(--pl-accent-safe-fg, var(--pl-text-on-accent, #ffffff))));
  border-color: var(--pl-accent-safe-border-active, var(--pl-accent-safe-border-hover, var(--pl-accent-safe-border, var(--pl-content-accent, #0b63ce))));
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action--cta:visited {
  color: inherit;
}

.pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-action:focus-visible {
  outline: 2px solid var(--pl-focus-ring, var(--pl-content-accent, #0b63ce));
  outline-offset: 2px;
}

.pl-home-prototype__header-map-city {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(28vw, 220px);
}

.pl-home-prototype__header-action:hover,
.pl-home-prototype__header-action:active {
  background: color-mix(in srgb, var(--pl-shell-surface-alt, #f8fafc) 70%, transparent);
}

.pl-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.pl-icon svg {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  stroke: currentColor;
}

.pl-home-prototype svg[fill="none"],
.pl-home-prototype svg [fill="none"] {
  fill: none;
}

.pl-home-prototype svg[stroke="none"],
.pl-home-prototype svg [stroke="none"] {
  stroke: none;
}

.pl-icon--phone-animated {
  animation: pl-phone-ring 1.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes pl-phone-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-12deg);
  }
  40% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-8deg);
  }
  80% {
    transform: rotate(6deg);
  }
}

.pl-home-prototype__header-action:focus-visible {
  outline: 2px solid var(--pl-focus-ring, var(--pl-shell-text, #101828));
  outline-offset: 2px;
}

.pl-home-prototype__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
}

.pl-home-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pl-home-layout--with-sidebar {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
  align-items: start;
}

.pl-home-layout__main,
.pl-home-layout__sidebar {
  min-width: 0;
}

.pl-home-layout__sidebar {
  display: none;
  gap: 16px;
}

.pl-home-layout--with-sidebar .pl-home-layout__sidebar {
  display: grid;
}

.pl-home-layout__sidebar-item {
  align-self: start;
}


.pl-home-prototype__sections {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.pl-home-prototype__main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--pl-shell-main-bg, transparent);
  transition: background 260ms ease;
}

.pl-home-prototype__main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: var(--pl-shell-main-bg-image, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(44px) saturate(1.18);
  transform: scale(1.24);
  transform-origin: center center;
  opacity: var(--pl-shell-main-bg-image-opacity, 0);
  transition: opacity 300ms ease;
}

.pl-home-prototype__main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--pl-shell-main-bg-tint, transparent);
}

.pl-home-prototype__main > .pl-home-prototype__container {
  position: relative;
  z-index: 1;
}

.pl-home-prototype[data-pl-bg-mode="harmonized"] .pl-home-prototype__section-frame:not(.pl-home-prototype__section-frame--hero) {
  background: color-mix(in srgb, var(--pl-content-surface, #fff) 86%, transparent);
}

.pl-home-prototype[data-pl-bg-mode="harmonized"] .pl-home-prototype__section-frame.pl-home-prototype__section-frame--identity,
.pl-home-prototype[data-pl-bg-mode="harmonized"] .pl-home-prototype__section-frame.pl-home-prototype__section-frame--activity {
  background: transparent;
}

.pl-home-prototype__section {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: stretch;
}

@media (min-width: 769px) {
  .pl-home-prototype__sections {
    overflow-x: hidden;
  }
}

@media (min-width: 1024px) {
  .pl-home-prototype--desktop-deck .pl-home-layout__main {
    position: relative;
  }

  .pl-home-prototype--desktop-deck .pl-home-prototype__sections {
    overflow-x: auto;
    padding-inline: 5%;
    padding-bottom: 10px;
    gap: 0;
    scroll-snap-type: none;
    scroll-behavior: smooth;
  }

  .pl-home-prototype--desktop-deck .pl-home-prototype__section {
    flex: 0 0 90%;
    width: 90%;
    max-width: 90%;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center center;
    will-change: transform, opacity;
    backface-visibility: hidden;
    opacity: 0.72;
    transform: scale(0.96);
  }

  .pl-home-prototype--desktop-deck .pl-home-prototype__section.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .pl-home-prototype--desktop-deck .pl-home-prototype__section.is-prev,
  .pl-home-prototype--desktop-deck .pl-home-prototype__section.is-next {
    opacity: 0.7;
    transform: scale(0.9);
    filter: saturate(0.82);
  }

  .pl-home-prototype--desktop-deck .pl-home-prototype__section-frame {
    box-shadow: 0 20px 38px color-mix(in srgb, var(--pl-shell-border, #1d2939) 18%, transparent);
  }

  .pl-home-prototype--desktop-deck:not(.pl-home-prototype--deck-compact)[data-navigation-variant="sections_progress"] .pl-home-prototype__nav-center [data-nav-prev],
  .pl-home-prototype--desktop-deck:not(.pl-home-prototype--deck-compact)[data-navigation-variant="sections_progress"] .pl-home-prototype__nav-center [data-nav-next] {
    display: none;
  }

  .pl-home-deck-controls {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
  }

  .pl-home-deck-controls::before,
  .pl-home-deck-controls::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 9%;
    pointer-events: none;
    z-index: 1;
  }

  .pl-home-deck-controls::before {
    left: 0;
    background: linear-gradient(
      to right,
      rgba(var(--pl-home-deck-overlay-rgb), var(--pl-home-deck-overlay-alpha)),
      rgba(var(--pl-home-deck-overlay-rgb), var(--pl-home-deck-overlay-alpha-mid)),
      rgba(var(--pl-home-deck-overlay-rgb), 0)
    );
  }

  .pl-home-deck-controls::after {
    right: 0;
    background: linear-gradient(
      to left,
      rgba(var(--pl-home-deck-overlay-rgb), var(--pl-home-deck-overlay-alpha)),
      rgba(var(--pl-home-deck-overlay-rgb), var(--pl-home-deck-overlay-alpha-mid)),
      rgba(var(--pl-home-deck-overlay-rgb), 0)
    );
  }

  .pl-home-deck-hit-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 9%;
    border: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;
    padding: 0;
  }

  .pl-home-deck-hit-zone--prev {
    left: 0;
  }

  .pl-home-deck-hit-zone--next {
    right: 0;
  }

  .pl-home-deck-chevron {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--pl-shell-border, #1d2939) 72%, transparent);
    background: color-mix(in srgb, var(--pl-shell-surface, #fff) 82%, transparent);
    color: var(--pl-shell-text, #101828);
    font-size: 34px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    z-index: 2;
    transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
  }

  .pl-home-deck-chevron--prev {
    left: max(12px, 2vw);
  }

  .pl-home-deck-chevron--next {
    right: max(12px, 2vw);
  }

  .pl-home-deck-chevron:hover:not([disabled]) {
    background: color-mix(in srgb, var(--pl-content-accent, #0b63ce) 14%, var(--pl-shell-surface, #fff));
    transform: translateY(-50%) scale(1.03);
  }

  .pl-home-deck-chevron[disabled] {
    opacity: 0.38;
    cursor: default;
    pointer-events: none;
  }

  .pl-home-deck-hit-zone[disabled] {
    opacity: 0;
    cursor: default;
    pointer-events: none;
  }

  .pl-home-deck-hint {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 25;
    pointer-events: none;
    padding: 8px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--pl-shell-surface, #fff) 86%, transparent);
    border: 1px solid color-mix(in srgb, var(--pl-shell-border, #1d2939) 54%, transparent);
    color: var(--pl-shell-text, #101828);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .pl-home-prototype--deck-hinting .pl-home-prototype__sections {
    animation: pl-home-deck-hint-x 0.6s ease-in-out 1;
  }

  .pl-home-prototype--desktop-deck.pl-home-prototype--deck-compact .pl-home-prototype__sections {
    padding-inline: 0 !important;
    gap: 0 !important;
  }

  .pl-home-prototype--desktop-deck.pl-home-prototype--deck-compact .pl-home-prototype__section {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .pl-home-prototype--desktop-deck.pl-home-prototype--deck-compact .pl-home-prototype__section.is-prev,
  .pl-home-prototype--desktop-deck.pl-home-prototype--deck-compact .pl-home-prototype__section.is-next {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@keyframes pl-home-deck-hint-x {
  0% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(12px);
  }
  66% {
    transform: translateX(-12px);
  }
  100% {
    transform: translateX(0);
  }
}

.pl-home-prototype__section--static,
.pl-home-prototype__section--mobile-identity {
  flex: 0 0 auto;
  min-height: 0;
}

.pl-home-prototype__section-frame {
  border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 36%, var(--pl-content-surface, #fff) 64%);
  border-radius: 12px;
  background: var(--pl-content-surface, #fff);
  padding: 14px;
  width: 100%;
  min-height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}

.pl-home-prototype__section-frame--orientation {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  display: flex;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) {
  .pl-home-prototype__section[data-section-key="identity"] .pl-home-prototype__section-frame--identity,
  .pl-home-prototype__section[data-section-key="activity"] .pl-home-prototype__section-frame--activity {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pl-home-prototype__section[data-section-key="local_recommendations"] .pl-home-prototype__section-frame--local_recommendations {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
  }

  .pl-home-prototype__section[data-section-key="identity"] .pl-section-identity {
    width: min(100%, 1080px);
    margin-inline: auto;
  }

  .pl-home-prototype__section[data-section-key="activity"] .pl-section-activity,
  .pl-home-prototype__section[data-section-key="local_recommendations"] .pl-section-local-recommendations {
    width: min(100%, 980px);
    margin-inline: auto;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 16%, transparent);
    border-radius: 12px;
    background: var(--pl-content-surface, #fff);
  }
}

.pl-section {
  display: grid;
  gap: 10px;
}

.pl-section-title {
  margin: 0;
  font-family: var(--pl-font-title, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
  font-size: 1.3rem;
}

.pl-section-lead {
  margin: 0;
  color: var(--pl-content-text-muted, #475467);
}

.pl-section-body {
  display: grid;
  gap: 8px;
}

.pl-section-orientation {
  --pl-orientation-gradient-opacity-effective: var(--pl-orientation-gradient-opacity, 0.6);
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--pl-content-surface, #fff);
  min-height: 100%;
  width: 100%;
  padding: 12px;
  align-content: stretch;
}

.pl-section-orientation::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--pl-home-section-gradient-active);
  opacity: var(--pl-orientation-gradient-opacity-effective);
}

.pl-section-orientation > * {
  position: relative;
  z-index: 1;
}

.pl-home-orientation-layout {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
  align-items: start;
  height: 100%;
  min-height: 100%;
}

.pl-home-orientation-main {
  display: grid;
  gap: 8px;
  min-height: 0;
  align-content: start;
}

.pl-home-orientation-choices {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  width: 100%;
  margin-inline: auto;
  padding-block: 8px 10px;
}

.pl-home-orientation-card {
  display: grid;
  border: 1px solid color-mix(in srgb, var(--pl-content-border) 78%, transparent);
  background: color-mix(in srgb, var(--pl-content-surface) 92%, var(--pl-content-accent) 8%);
  border-radius: 10px;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--pl-content-border) 34%, transparent);
  transition: background-color 170ms ease, border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
  position: relative;
  min-height: 112px;
}

.pl-home-orientation-card.is-active,
.pl-home-orientation-card:hover,
.pl-home-orientation-card:focus-within {
  background: color-mix(in srgb, var(--pl-content-surface) 80%, var(--pl-content-accent) 20%);
  border-color: color-mix(in srgb, var(--pl-content-accent) 66%, var(--pl-content-border) 34%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--pl-content-accent) 22%, transparent);
  transform: translateY(-2px);
}

.pl-home-orientation-choice {
  display: block;
  text-decoration: none;
  color: var(--pl-content-text);
  padding: 10px 12px;
  height: 100%;
  min-height: 72px;
}

.pl-home-orientation-choice__layout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
}

.pl-home-orientation-choice:focus-visible {
  outline: 2px solid var(--pl-focus-ring, var(--pl-content-accent, #0b63ce));
  outline-offset: 2px;
  border-radius: 10px;
}

.pl-home-orientation-choice__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: color-mix(in srgb, var(--pl-content-text) 82%, var(--pl-content-accent) 18%);
}

.pl-home-orientation-choice__badge svg {
  width: 100%;
  height: 100%;
}

.pl-home-orientation-choice__badge circle {
  fill: color-mix(in srgb, var(--pl-content-surface) 72%, var(--pl-content-accent) 28%);
  stroke: color-mix(in srgb, var(--pl-content-border) 72%, var(--pl-content-accent) 28%);
  stroke-width: 1.5;
}

.pl-home-orientation-choice__badge text {
  fill: currentColor;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--pl-font-title, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
}

.pl-home-orientation-choice__text {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.pl-home-orientation-choice__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--pl-content-text);
}

.pl-home-orientation-choice__description {
  margin: 0;
  color: var(--pl-content-text-muted);
  font-size: 0.98rem;
  line-height: 1.4;
}

.pl-home-orientation-choice__thumb {
  display: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: color-mix(in srgb, var(--pl-content-surface-alt) 84%, var(--pl-content-accent) 16%);
  align-self: stretch;
}

.pl-home-orientation-choice__thumb-image,
.pl-home-orientation-choice__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background-color: color-mix(in srgb, var(--pl-content-surface-alt) 84%, var(--pl-content-accent) 16%);
}

.pl-home-orientation-choice__thumb-image {
  max-width: none;
  object-fit: cover;
}

.pl-home-orientation-choice__thumb-placeholder {
  background-image: linear-gradient(
    140deg,
    color-mix(in srgb, var(--pl-content-surface-alt) 82%, var(--pl-content-accent) 18%) 0%,
    color-mix(in srgb, var(--pl-content-surface) 88%, var(--pl-content-accent) 12%) 100%
  );
  background-size: cover;
}

.pl-home-orientation-item-data {
  display: none;
}

.pl-home-orientation-preview {
  display: none;
  border: 1px solid color-mix(in srgb, var(--pl-content-border) 76%, transparent);
  border-radius: 12px;
  background: var(--pl-content-surface, #fff);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--pl-content-border) 34%, transparent);
  overflow: hidden;
}

.pl-home-orientation-preview__media {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: color-mix(in srgb, var(--pl-content-surface-alt) 84%, var(--pl-content-accent) 16%);
}

.pl-home-orientation-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pl-home-orientation-preview__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    140deg,
    color-mix(in srgb, var(--pl-content-surface-alt) 80%, var(--pl-content-accent) 20%) 0%,
    color-mix(in srgb, var(--pl-content-surface) 86%, var(--pl-content-accent) 14%) 100%
  );
}

.pl-home-orientation-preview__content {
  padding: 14px;
  display: grid;
  gap: 8px;
  min-height: 210px;
  align-content: start;
}

.pl-home-orientation-preview__title {
  margin: 0;
  color: var(--pl-content-text);
  font-family: var(--pl-font-title, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
  font-size: 1.06rem;
  line-height: 1.3;
}

.pl-home-orientation-preview__excerpt {
  margin: 0;
  color: var(--pl-content-text-muted);
  line-height: 1.45;
  min-height: 4.2em;
}

.pl-home-orientation-preview__link {
  justify-self: start;
  text-decoration: none;
  color: var(--pl-content-accent);
  font-weight: 600;
}

.pl-home-orientation-preview__link:hover,
.pl-home-orientation-preview__link:active {
  color: var(--pl-content-accent-hover);
}

.pl-home-orientation-preview__link:focus-visible {
  outline: 2px solid var(--pl-focus-ring, var(--pl-content-accent, #0b63ce));
  outline-offset: 2px;
}

@media (min-width: 901px) {
  .pl-section-orientation {
    padding: 0;
    background: transparent;
  }

  .pl-home-orientation-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    max-width: none;
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    gap: 12px;
    height: 100%;
    min-height: 100%;
    align-items: stretch;
  }

  .pl-home-orientation-main {
    padding: 12px 8px 12px 12px;
    height: 100%;
    gap: 6px;
  }

  .pl-home-orientation-choices {
    justify-content: stretch;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 4px 6px;
    margin-inline: 0;
  }

  .pl-home-orientation-preview {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    min-height: 100%;
    align-self: stretch;
    justify-self: stretch;
    margin-right: 0;
    border-radius: 12px;
    margin: 0;
  }

  .pl-home-orientation-preview__media {
    aspect-ratio: auto;
    min-height: 0;
    height: 100%;
  }

  .pl-home-orientation-preview__content {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .pl-home-orientation-preview__link {
    margin-top: auto;
  }

  .pl-home-orientation-card {
    min-height: 96px;
  }

  .pl-home-orientation-choice {
    min-height: 96px;
    padding: 9px 11px;
  }

  .pl-home-orientation-choice__title {
    font-size: 1.08rem;
    line-height: 1.28;
  }

  .pl-home-orientation-choice__description {
    font-size: 0.96rem;
    line-height: 1.36;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-layout {
    gap: 6px;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-main {
    padding-right: 0;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-prototype__section-frame--orientation {
    overflow-y: hidden;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation {
    overflow-y: auto;
  }
}

/* Desktop orientation: force flush alignment against section frame on both layouts. */
@media (min-width: 901px) {
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation {
    padding: 0 !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-layout,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-layout {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Desktop deck final override: keep deterministic peek ratio despite layout-specific rules below. */
@media (min-width: 1024px) {
  body .pl-home-prototype--desktop-deck[data-navigation-variant="sections_progress"] .pl-home-prototype__sections {
    scroll-snap-type: none !important;
  }

  body .pl-home-prototype--desktop-deck .pl-home-prototype__sections {
    padding-inline: 8% !important;
    gap: 8px !important;
  }

  body .pl-home-prototype--desktop-deck .pl-home-prototype__section {
    flex: 0 0 84% !important;
    width: 84% !important;
    max-width: 84% !important;
  }

  body .pl-home-prototype--desktop-deck .pl-home-deck-controls::before,
  body .pl-home-prototype--desktop-deck .pl-home-deck-controls::after {
    width: 8% !important;
  }

  body .pl-home-prototype--desktop-deck .pl-home-deck-hit-zone {
    width: 8% !important;
  }

  body .pl-home-prototype--desktop-deck .pl-home-deck-chevron--prev {
    left: calc(4% - 28px) !important;
  }

  body .pl-home-prototype--desktop-deck .pl-home-deck-chevron--next {
    right: calc(4% - 28px) !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--deck-compact .pl-home-deck-chevron--prev {
    left: -18px !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--deck-compact .pl-home-deck-chevron--next {
    right: -18px !important;
  }
}

@media (min-width: 1600px) {
  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck {
    --pl-home-uw-active-width: min(991px, 84vw);
    --pl-home-uw-side-gutter: max(8%, calc((100% - var(--pl-home-uw-active-width)) / 2));
    --pl-home-uw-side-scale: 0.9;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__main > .pl-home-prototype__container {
    max-width: min(1800px, 96vw) !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__sections {
    scroll-snap-type: none !important;
    gap: 32px !important;
    padding-inline: var(--pl-home-uw-side-gutter) !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__section {
    flex: 0 0 var(--pl-home-uw-active-width) !important;
    width: var(--pl-home-uw-active-width) !important;
    max-width: 991px !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__section.is-prev,
  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__section.is-next {
    transform: scale(var(--pl-home-uw-side-scale, 0.88)) !important;
    opacity: 0.7 !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck.pl-home-prototype--deck-transitioning .pl-home-prototype__section.is-active {
    transform: scale(var(--pl-home-uw-side-scale, 0.88)) !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-deck-controls::before,
  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-deck-controls::after,
  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-deck-hit-zone {
    width: var(--pl-home-uw-side-gutter) !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-deck-controls::before,
  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-deck-controls::after {
    background: none !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-deck-chevron--prev {
    left: max(12px, calc((var(--pl-home-uw-side-gutter) / 2) - 28px)) !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-deck-chevron--next {
    right: max(12px, calc((var(--pl-home-uw-side-gutter) / 2) - 28px)) !important;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__section-frame {
    position: relative;
    overflow: hidden;
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__section.is-prev .pl-home-prototype__section-frame::after,
  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__section.is-next .pl-home-prototype__section-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(var(--pl-home-deck-overlay-rgb), 0.2);
  }

  body .pl-home-prototype--desktop-deck.pl-home-prototype--ultrawide-deck .pl-home-prototype__section.is-active .pl-home-prototype__section-frame::after {
    content: none;
  }
}

@media (max-width: 900px) {
  .pl-home-orientation-layout {
    grid-template-columns: 1fr;
  }

  .pl-home-orientation-preview {
    display: none;
  }
}

@media (max-width: 720px) {
  .pl-section-orientation {
    padding: 10px 8px;
  }

  .pl-home-orientation-choices {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 6px 8px;
    padding-inline: 6px;
  }

  .pl-home-orientation-card {
    min-height: 124px;
    height: 124px;
    overflow: hidden;
  }

  .pl-home-orientation-choice {
    padding: 0;
    min-height: 124px;
  }

  .pl-home-orientation-choice__layout {
    grid-template-columns: 1fr 108px;
    gap: 0;
    min-height: 124px;
    height: 100%;
    align-items: stretch;
  }

  .pl-home-orientation-choice__text {
    padding: 12px 14px;
    align-content: center;
    overflow: hidden;
  }

  .pl-home-orientation-choice__thumb {
    display: block;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0 10px 10px 0;
  }

  .pl-home-orientation-choice__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pl-home-orientation-choice__description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pl-home-orientation-choice__badge {
    display: none;
  }

  .pl-home-orientation-choice__thumb-image,
  .pl-home-orientation-choice__thumb-placeholder {
    border-radius: 0 10px 10px 0;
  }
}

.pl-home-identity-grid {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 12px;
}

.pl-home-identity-grid dt {
  font-weight: 700;
}

.pl-home-identity-grid dd {
  margin: 0;
}



.pl-home-prototype__section--mobile-identity {
  display: none;
}

.pl-home-prototype__mobile-identity-inline {
  display: none;
}

.pl-home-footer {
  border-top: 1px solid var(--pl-content-border, #1d2939);
  padding-top: 8px;
}

.pl-slot-item--sticky {
  position: sticky;
  top: 112px;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.pl-home-prototype__sections-static-top {
  transition: transform 220ms ease, opacity 220ms ease, max-height 220ms ease, margin 220ms ease;
  transform-origin: top center;
}

@media (max-width: 768px) {

  .pl-home-prototype__container--header {
    min-height: 48px;
    padding-top: 4px;
    padding-bottom: 4px;
    gap: 8px;
  }

  .pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__container--header {
    min-height: 50px;
  }

  .pl-home-prototype__header-brand-row {
    gap: 8px;
  }

  .pl-home-prototype__header-logo {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .pl-home-prototype__header-brand-name {
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-brand-name {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .pl-home-prototype__header-actions {
    gap: 6px;
  }

  .pl-home-prototype__header-action {
    min-width: 40px;
    min-height: 40px;
    padding: 6px 8px;
  }

  .pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-actions {
    align-self: center;
  }

}

@media (max-width: 900px) {
  .pl-home-layout--with-sidebar {
    grid-template-columns: 1fr;
  }

  .pl-home-layout__sidebar {
    display: none;
  }

  .pl-home-layout--with-sidebar .pl-home-layout__sidebar {
    display: none;
  }

  .pl-slot-item--sticky {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .pl-home-prototype__section--mobile-identity {
    display: none;
  }

  .pl-home-prototype__mobile-identity-inline {
    display: block;
    margin-top: 12px;
  }
}

@media (max-width: 680px) {
  .pl-home-prototype__container {
    padding-inline: 12px;
  }

}


body.pl-layout-no_identity_footer_sticky .pl-home-prototype,
body.pl-layout-identity_footer_sticky .pl-home-prototype {
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
}

body.pl-layout-no_identity_footer_sticky .pl-home-prototype__main,
body.pl-layout-identity_footer_sticky .pl-home-prototype__main {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}

body.pl-layout-no_identity_footer_sticky .pl-home-prototype__main > .pl-home-prototype__container,
body.pl-layout-identity_footer_sticky .pl-home-prototype__main > .pl-home-prototype__container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.pl-layout-no_identity_footer_sticky .pl-home-layout,
body.pl-layout-identity_footer_sticky .pl-home-layout {
  min-height: 0;
  flex: 1 1 auto;
}

body.pl-layout-no_identity_footer_sticky .pl-home-layout__main,
body.pl-layout-identity_footer_sticky .pl-home-layout__main {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body.pl-layout-no_identity_footer_sticky .pl-home-prototype__sections,
body.pl-layout-identity_footer_sticky .pl-home-prototype__sections {
  flex: 1 1 auto;
  min-height: 0;
}

@media (min-width: 769px) {
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__sections,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__sections {
    height: 100%;
    align-items: stretch;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section {
    min-height: 100%;
    height: 100%;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section-frame,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section-frame,
  body.pl-layout-no_identity_footer_sticky .pl-home-layout__sidebar-item .pl-home-prototype__section-frame,
  body.pl-layout-identity_footer_sticky .pl-home-layout__sidebar-item .pl-home-prototype__section-frame {
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--pl-home-section-gradient-active);
    border-radius: 12px;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="activity"] .pl-home-prototype__section-frame--activity,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="activity"] .pl-home-prototype__section-frame--activity {
    border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 36%, var(--pl-content-surface, #fff) 64%);
    border-radius: 12px;
    background: var(--pl-home-section-gradient-active);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="local_recommendations"] .pl-home-prototype__section-frame--local_recommendations,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="local_recommendations"] .pl-home-prototype__section-frame--local_recommendations {
    border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 36%, var(--pl-content-surface, #fff) 64%);
    border-radius: 12px;
    background: var(--pl-home-section-gradient-active);
    padding: 14px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-home-prototype__section-frame--identity,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-home-prototype__section-frame--identity {
    border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 36%, var(--pl-content-surface, #fff) 64%);
    border-radius: 12px;
    background: var(--pl-home-section-gradient-active);
    padding: 14px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="activity"] .pl-section-activity,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="local_recommendations"] .pl-section-local-recommendations,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="activity"] .pl-section-activity,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="local_recommendations"] .pl-section-local-recommendations,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-section-identity,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-section-identity {
    width: 100%;
    margin: 0;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="local_recommendations"] .pl-section-local-recommendations,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="local_recommendations"] .pl-section-local-recommendations {
    min-height: 0;
    height: auto;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-identity,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-identity {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-identity {
    align-content: start;
    align-items: start;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-identity__main {
    align-self: start;
    justify-content: flex-start;
    min-height: 0;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-section-title {
    margin-top: 0;
    align-self: start;
  }
}

@media (max-width: 680px) {
  .pl-home-prototype__main > .pl-home-prototype__container {
    padding: 0;
  }

  .pl-home-layout {
    gap: 0;
  }

  .pl-home-prototype__sections {
    gap: 0;
    padding-bottom: 0;
  }


  .pl-home-prototype__header-action {
    min-width: 40px;
    min-height: 40px;
    padding: 6px;
  }

  .pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-actions {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: end;
  }

  .pl-home-prototype__header-action .pl-home-prototype__header-action-label {
    display: none;
  }

  .pl-home-prototype__header-brand-name {
    font-size: 1.125rem;
  }

  .pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__header-map-city {
    display: none;
  }

  .pl-home-prototype[data-pl-header-variant="default"] .pl-home-prototype__container--header {
    gap: 6px;
  }

  .pl-icon {
    width: 24px;
    height: 24px;
  }


  .pl-slot-item--sticky {
    top: auto;
  }


}
@media (prefers-reduced-motion: reduce) {
  .pl-icon--phone-animated {
    animation: none !important;
  }
}



.pl-home-prototype__main,
.pl-home-prototype__sections,
.pl-slot-item--sticky,
.pl-home-prototype__section-frame {
  scrollbar-width: none !important;
  scrollbar-color: transparent transparent;
  -ms-overflow-style: none;
  overscroll-behavior-y: auto;
}

.pl-home-prototype__main::-webkit-scrollbar,
.pl-home-prototype__sections::-webkit-scrollbar,
.pl-slot-item--sticky::-webkit-scrollbar,
.pl-home-prototype__section-frame::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

@media (min-width: 681px) {
  .pl-icon {
    width: 24px;
    height: 24px;
    font-size: 19.2px;
  }
}


body.pl-layout-identity_footer_sticky .pl-home-layout__sidebar-item[data-section-key="identity"] .pl-home-prototype__section-frame {
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] {
  min-height: 0;
  height: auto;
  align-items: stretch;
  overflow: visible;
}

body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-home-prototype__section-frame--identity {
  min-height: 0;
  height: auto;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) {
  body.pl-layout-identity_footer_sticky .pl-home-prototype__sections {
    height: 100%;
    align-items: stretch;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section {
    min-height: 100%;
    height: 100%;
    flex: 0 0 100%;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section-frame {
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] {
    min-height: 100%;
    height: 100%;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-home-prototype__section-frame--identity {
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    align-items: stretch;
    justify-content: flex-start;
  }
}

/* Skeleton-owned hero frame behavior (no section-owned layout constraints). */
body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"],
body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-inline: 0;
  flex-basis: 100%;
  overflow: hidden;
}

body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero,
body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero {
  margin: 0;
  border-radius: 12px;
  padding: 0;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}

body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero .pl-section-hero,
body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero .pl-section-hero,
body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero,
body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero {
  min-height: 100%;
  height: 100%;
  flex: 1 1 auto;
  border-radius: 12px;
  overflow: hidden;
}

body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero,
body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero {
  padding: 0;
}

@media (min-width: 901px) {
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero--image-strip,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero--image-strip {
    column-gap: 0;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero--image-strip .pl-home-hero__strip-media,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero--image-strip .pl-home-hero__strip-media {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}


@media (max-width: 768px) {
  .pl-home-prototype__container {
    padding-inline: 0;
  }

  .pl-home-prototype__sections {
    gap: 0;
    padding-bottom: 0;
  }

  .pl-home-prototype__section {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__main,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__main {
    overflow-y: auto;
    overscroll-behavior-y: auto;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section {
    min-height: 0;
    height: auto;
    align-items: stretch;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section-frame,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section-frame {
    min-height: 0;
    height: auto;
    max-height: none;
    overflow-y: auto;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero {
    padding: 14px 8px;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero--image-strip,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero--image-strip {
    padding: 0 !important;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero--image-strip .pl-home-hero__strip-media,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero--image-strip .pl-home-hero__strip-media {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero {
    min-height: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] {
    min-height: 0;
    height: auto;
    align-items: stretch;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-home-prototype__section-frame--identity {
    min-height: 0;
    height: auto;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-prototype__section-frame--orientation {
    overflow-y: hidden !important;
    overflow-x: hidden !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation {
    overflow-y: auto;
    overflow-x: hidden;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-identity,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-identity-wrapper,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-section-identity--profile-professional .pl-section-body {
    min-height: 0 !important;
    height: auto !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__sections {
    height: 100%;
    align-items: stretch;
    touch-action: auto;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section {
    min-height: 100%;
    height: 100%;
    flex: 0 0 100%;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section-frame {
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="identity"] .pl-home-prototype__section-frame--identity {
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero {
    min-height: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}


@media (max-width: 768px) {
  .pl-home-prototype__main::before {
    display: none;
  }
}

@media (min-width: 681px) {
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__sections,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__sections {
    padding-bottom: 0;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section {
    min-height: 0;
  }

  body.pl-layout-identity_footer_sticky .pl-home-layout__sidebar-item[data-section-key="identity"].pl-slot-item--sticky {
    top: 0;
    height: 100%;
    max-height: 100%;
  }

}

@media (min-width: 769px) {
  body.pl-layout-identity_footer_sticky .pl-home-layout {
    height: 100%;
  }

  body.pl-layout-identity_footer_sticky .pl-home-layout__main,
  body.pl-layout-identity_footer_sticky .pl-home-layout__sidebar {
    height: 100%;
    min-height: 0;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section {
    min-height: 100% !important;
    height: 100% !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] {
    overflow: visible;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero {
    min-height: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

/* Debug mode: skeleton-only placeholders (dev-only via URL resolver). */
.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder {
  display: grid;
  gap: 10px;
  width: 100%;
  min-height: 180px;
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed color-mix(in srgb, var(--pl-content-accent, #0b63ce) 40%, var(--pl-shell-border, #d0d5dd) 60%);
  background: transparent;
  color: var(--pl-shell-text, #101828);
}

.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder__badge {
  display: inline-flex;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 30%, transparent);
  background: color-mix(in srgb, var(--pl-content-accent, #0b63ce) 10%, var(--pl-shell-surface, #ffffff));
  color: color-mix(in srgb, var(--pl-content-accent, #0b63ce) 80%, var(--pl-shell-text, #101828) 20%);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder__title {
  font-family: var(--pl-font-title, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder__meta {
  display: grid;
  gap: 6px;
  margin: 0;
}

.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder__meta > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 10px;
}

.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder__meta dt {
  margin: 0;
  color: var(--pl-shell-text-muted, #475467);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder__meta dd {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

/* Debug skeleton: enforce one single frame tonal layer across all sections. */
.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-prototype__section {
  border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 36%, var(--pl-content-surface, #fff) 64%) !important;
  border-radius: 12px !important;
  background: var(--pl-home-section-gradient-active, linear-gradient(145deg, color-mix(in srgb, var(--pl-content-accent, #0b63ce) 18%, #fff 82%) 0%, #fff 100%)) !important;
}

.pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-prototype__section-frame {
  background: transparent !important;
  border: 0 !important;
}

/* Skeleton-only desktop sticky: force visual parity across all sections. */
@media (min-width: 769px) {
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-prototype__section,
  body.pl-layout-identity_footer_sticky .pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-prototype__section {
    align-items: stretch !important;
    justify-content: stretch !important;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-prototype__section-frame,
  body.pl-layout-identity_footer_sticky .pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-prototype__section-frame {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px !important;
    min-height: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow-y: auto !important;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder,
  body.pl-layout-identity_footer_sticky .pl-home-prototype[data-debug-mode="skeleton_only"] .pl-home-debug-placeholder {
    width: min(100%, 980px) !important;
  }
}

/* Deterministic shell frame contract: shell owns frame visual container. */
body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section-frame,
body.pl-layout-identity_footer_sticky .pl-home-prototype__section-frame,
body.pl-layout-no_identity_footer_sticky .pl-home-layout__sidebar-item .pl-home-prototype__section-frame,
body.pl-layout-identity_footer_sticky .pl-home-layout__sidebar-item .pl-home-prototype__section-frame {
  border: 1px solid color-mix(in srgb, var(--pl-content-accent, #0b63ce) 36%, var(--pl-content-surface, #fff) 64%) !important;
  background: var(--pl-home-section-gradient-active, linear-gradient(145deg, color-mix(in srgb, var(--pl-content-accent, #0b63ce) 18%, #fff 82%) 0%, #fff 100%)) !important;
  border-radius: 12px !important;
}

body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section-frame,
body.pl-layout-identity_footer_sticky .pl-home-prototype__section-frame {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* Orientation in identity sticky: keep frame gutter-free so preview can touch right edge. */
body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-prototype__section-frame.pl-home-prototype__section-frame--orientation {
  overflow-y: hidden !important;
  overflow-x: hidden !important;
}

body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation {
  overflow-y: hidden;
  overflow-x: hidden;
}

body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-main {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Orientation sticky (desktop): lock equal-height columns across browsers. */
@media (min-width: 901px) {
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-layout,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-layout {
    height: 100% !important;
    min-height: 100% !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-main,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-main,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-preview,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-preview {
    height: 100% !important;
    min-height: 100% !important;
    align-self: stretch !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-preview,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-preview {
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) auto !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-preview__content,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-preview__content {
    display: flex !important;
    flex-direction: column !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-preview__link,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-preview__link {
    margin-top: auto !important;
  }
}

/* Orientation mobile: always allow vertical scroll in active section content. */
@media (max-width: 900px) {
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"],
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] {
    overflow: visible !important;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-prototype__section-frame--hero {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    min-height: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-section-hero,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-section-hero {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero,
  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="hero"] .pl-home-hero {
    min-height: 420px !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-prototype__section-frame.pl-home-prototype__section-frame--orientation,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-prototype__section-frame.pl-home-prototype__section-frame--orientation {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-section-orientation {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    min-height: 0 !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  body.pl-layout-identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-main,
  body.pl-layout-no_identity_footer_sticky .pl-home-prototype__section[data-section-key="orientation"] .pl-home-orientation-main {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    min-height: 0 !important;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }
}


