/**
 * Apple Landing — store chrome that theme.json cannot express.
 * Keep in sync with preview/ (same file is loaded from this path).
 */

:root {
  --al-ink: #1d1d1f;
  --al-ink-muted: #6e6e73;
  --al-canvas: #ffffff;
  --al-canvas-muted: #f5f5f7;
  --al-line: #d2d2d7;
  --al-link: #0071e3;
  --al-link-hover: #0077ed;
  --al-radius-tile: 18px;
  --al-radius-pill: 980px;
  --al-gutter: 12px;
  --al-header-h: 48px;
  --al-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
  background: var(--al-canvas-muted);
}

body {
  font-family: var(--al-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:is(
  a,
  button,
  .al-btn,
  .wp-block-button__link,
  .al-details-tab,
  input,
  select,
  textarea,
  summary
):focus-visible {
  outline: 2px solid var(--al-link);
  outline-offset: 3px;
}

#contenido:focus {
  outline: none;
}

.al-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--al-header-h);
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.al-header .wp-block-group,
.al-header-inner {
  min-height: var(--al-header-h);
}

.al-header .wp-block-site-title a,
.al-brand {
  color: var(--al-ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.al-footer {
  background: var(--al-canvas-muted);
  color: var(--al-ink-muted);
  font-size: 12px;
  line-height: 1.333;
  border-top: 1px solid var(--al-line);
}

.al-footer a {
  color: var(--al-ink-muted);
  text-decoration: none;
}

.al-footer a:hover {
  color: var(--al-ink);
  text-decoration: underline;
}

.wp-block-button .wp-block-button__link,
.al-btn {
  border-radius: var(--al-radius-pill);
  font-size: 17px;
  line-height: 1.333;
  padding: 8px 16px;
  text-decoration: none;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link,
.al-btn--primary {
  background: var(--al-link);
  color: #fff;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.al-btn--primary:hover {
  background: var(--al-link-hover);
  color: #fff;
}

.al-btn--soon {
  background: var(--al-canvas-muted);
  color: var(--al-ink-muted);
  cursor: default;
  pointer-events: none;
}

.wp-block-button.is-style-outline .wp-block-button__link,
.al-btn--ghost {
  background: transparent;
  color: var(--al-link);
  box-shadow: none;
  border: 0;
  padding-left: 8px;
  padding-right: 8px;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.al-btn--ghost:hover {
  color: var(--al-link-hover);
  text-decoration: underline;
  background: transparent;
}

.al-store-badge {
  display: inline-block;
  line-height: 0;
  padding: 10px;
  text-decoration: none;
}

.al-store-badge img {
  display: block;
  height: 40px;
  width: auto;
}

.al-cta-note {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.428;
  color: var(--al-ink-muted);
}

.al-kicker {
  margin: 0 0 12px;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.07;
  color: var(--al-ink);
  text-align: center;
}

.al-tile {
  background: var(--al-canvas);
  border-radius: var(--al-radius-tile);
  overflow: hidden;
}

.al-media-placeholder {
  min-height: 360px;
  border-radius: var(--al-radius-tile);
  background: linear-gradient(180deg, #e8e8ed 0%, #f5f5f7 100%);
}

.al-hero .al-media-placeholder {
  min-height: 420px;
  margin-top: 40px;
}

.al-footnotes,
.al-footnotes p {
  color: var(--al-ink-muted);
  font-size: 12px;
  line-height: 1.333;
}

.al-feature-grid {
  gap: var(--al-gutter);
}

.al-header-tools {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.al-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.333;
  white-space: nowrap;
}

.al-lang a {
  color: var(--al-ink-muted);
  text-decoration: none;
  font-weight: 400;
}

.al-lang a[aria-current="true"] {
  color: var(--al-ink);
  font-weight: 600;
}

.al-lang a:hover {
  color: var(--al-ink);
}

.al-lang-sep {
  color: var(--al-ink-muted);
}

.al-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.al-nav a,
.al-header .wp-block-navigation a {
  color: var(--al-ink);
  font-size: 12px;
  text-decoration: none;
}

.al-nav a:hover,
.al-header .wp-block-navigation a:hover {
  color: var(--al-ink-muted);
}

.al-nav-group {
  position: relative;
}

.al-nav-sub,
.al-header .wp-block-navigation .wp-block-navigation__submenu-container {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 120;
  margin: 0;
  padding: 8px 0;
  min-width: 196px;
  list-style: none;
  padding-inline-start: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.al-nav-group:hover .al-nav-sub,
.al-nav-group:focus-within .al-nav-sub,
.al-header .wp-block-navigation-item.has-child:hover > .wp-block-navigation__submenu-container,
.al-header .wp-block-navigation-item.has-child:focus-within > .wp-block-navigation__submenu-container,
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
  display: block;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
  position: static;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 4px 0 4px 12px;
}

.al-nav-sub a,
.al-nav-sub .al-nav-soon,
.al-header .wp-block-navigation .wp-block-navigation__submenu-container a {
  display: block;
  padding: 6px 18px;
  font-size: 12px;
  line-height: 1.333;
  white-space: nowrap;
}

.al-nav-sub .al-nav-soon {
  color: var(--al-ink-muted);
  cursor: default;
}

.al-preview-wrap {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.al-preview-narrow {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.al-band {
  padding: 80px 24px;
}

.al-band--muted {
  background: var(--al-canvas-muted);
}

.al-band--canvas {
  background: var(--al-canvas);
}

.al-center {
  text-align: center;
}

.al-display {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.07;
  margin: 0 0 12px;
  text-align: center;
}

.al-display.al-display--hook {
  font-size: clamp(28px, 4.4vw, 40px);
  max-width: min(18em, 92%);
  margin-left: auto;
  margin-right: auto;
}

.al-lead {
  font-size: 21px;
  line-height: 1.381;
  color: var(--al-ink-muted);
  margin: 0 auto 24px;
  max-width: 720px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.al-h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.011em;
  line-height: 1.1;
  margin: 0 0 8px;
}

.al-h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.14;
  margin: 16px 0 8px;
}

.al-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.al-product-board {
  display: flex;
  flex-direction: column;
  gap: var(--al-gutter);
  scroll-margin-top: calc(var(--al-header-h, 52px) + 16px);
}

#productos {
  scroll-margin-top: calc(var(--al-header-h, 52px) + 16px);
}

.al-product-row--pair,
.al-product-row--single,
.al-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--al-gutter);
  align-items: stretch;
}

.al-mosaic .al-tile,
.al-product-row--pair .al-tile,
.al-product-row--single .al-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 734px) {
  .al-product-row--pair {
    grid-template-columns: 1fr 1fr;
  }

  .al-product-row--single {
    grid-template-columns: 1fr 1fr;
  }

  .al-product-row--single .al-tile {
    grid-column: 1;
  }

  .al-mosaic--left {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .al-mosaic--left > .al-tile:first-child {
    grid-row: 1 / span 2;
  }

  .al-mosaic--right {
    grid-template-columns: 1fr 1.15fr;
    grid-template-rows: 1fr 1fr;
  }

  .al-mosaic--right > .al-tile:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .al-mosaic--right > .al-tile:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .al-mosaic--right > .al-tile:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

.al-tile-body {
  padding: 40px 32px 48px;
  text-align: center;
}

.al-tile-body p {
  color: var(--al-ink-muted);
  text-align: center;
}

.al-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

@media (min-width: 734px) {
  .al-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.al-product-highlights .al-h2,
.al-product-details .al-h2,
.al-product-use-cases .al-h2,
.al-product-cta .al-h2,
.al-studio-philosophy .al-h2,
.al-studio-trust .al-h2,
.al-studio-catalog .al-h2 {
  text-align: center;
}

.al-product-highlights .al-lead,
.al-product-details .al-lead,
.al-product-use-cases .al-lead {
  margin-left: auto;
  margin-right: auto;
}

.al-hero .al-lead,
.al-product-highlights .al-lead,
.al-product-details .al-lead,
.al-product-use-cases .al-lead,
.al-product-cta .al-lead,
.al-product-cta .al-h2,
.al-hero .al-cta-note,
.al-product-cta .al-cta-note,
.al-studio-philosophy .al-lead,
.al-studio-trust .al-lead,
.al-studio-catalog .al-lead {
  text-align: center;
  text-justify: auto;
  hyphens: none;
  -webkit-hyphens: none;
}

.al-product-cta .al-lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}

.al-product-cta .al-cta-availability {
  margin-bottom: 8px;
}

.al-product-cta .al-lead--follow {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.47059;
}

.al-icon {
  display: block;
  width: 28px;
  height: 28px;
  color: var(--al-ink);
  margin: 0 0 12px;
}

.al-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.al-use-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 32px;
  margin-top: 48px;
  text-align: left;
}

@media (min-width: 734px) {
  .al-use-cases {
    grid-template-columns: repeat(3, 1fr);
  }
}

.al-use-case .al-shot {
  margin: 0 auto 20px;
}

.al-use-case .al-shot--iphone {
  max-width: 220px;
}

.al-use-case .al-shot--ipad,
.al-use-case .al-shot--mac {
  max-width: 100%;
}

.al-use-case .al-h3 {
  margin: 0 0 8px;
}

.al-use-case p {
  margin: 0;
  color: var(--al-ink-muted);
  font-size: 17px;
  line-height: 1.47059;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.al-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
  margin-top: 48px;
  text-align: left;
}

@media (min-width: 734px) {
  .al-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .al-highlights > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

.al-highlight--icon {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 16px;
}

.al-highlight--icon .al-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 4px 0 0;
}

.al-highlight--icon .al-h3,
.al-highlight--icon p {
  grid-column: 2;
}

.al-highlight h3 {
  margin: 0 0 8px;
}

.al-highlight p {
  margin: 0;
  color: var(--al-ink-muted);
  font-size: 17px;
  line-height: 1.47059;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.al-product-cta {
  text-align: center;
}

.al-product-cta .al-actions {
  margin-top: 8px;
}

.al-details-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  position: sticky;
  top: var(--al-header-h);
  z-index: 40;
  padding: 12px 0 8px;
  background: var(--al-canvas-muted);
}

.al-details-tab {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--al-line);
  border-radius: var(--al-radius-pill);
  background: var(--al-canvas);
  color: var(--al-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.al-details-tab:hover,
.al-details-tab:focus-visible {
  color: var(--al-link);
  border-color: var(--al-link);
}

.al-details-group {
  scroll-margin-top: calc(var(--al-header-h) + 56px);
}

.al-details-group:target h3 {
  color: var(--al-link);
}

.al-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 48px;
  margin-top: 48px;
  text-align: left;
}

.al-details-nav + .al-details {
  margin-top: 24px;
}

@media (min-width: 734px) {
  .al-details {
    grid-template-columns: 1fr 1fr;
  }
}

.al-details-group h3 {
  margin: 0 0 12px;
}

.al-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.al-details-note {
  max-width: 980px;
  margin: 40px auto 0;
  color: var(--al-ink-muted);
  font-size: 17px;
  line-height: 1.47059;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.al-showcase {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1068px) {
  .al-showcase {
    grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
    gap: 56px;
  }
}

.al-product-showcase .al-h2,
.al-product-showcase .al-lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.al-product-showcase .al-h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.al-product-showcase .al-lead {
  max-width: 420px;
  color: var(--al-ink-muted);
}

.al-showcase-media .al-shot {
  margin: 0;
  width: 100%;
}

.al-showcase-media .al-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.al-details li {
  position: relative;
  margin: 0 0 0.55em;
  padding-left: 1.15em;
  color: var(--al-ink-muted);
  font-size: 17px;
  line-height: 1.47059;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.al-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--al-ink);
}

.al-doc {
  text-align: left;
  padding: 80px 24px;
  background: var(--al-canvas);
}

.al-doc h1,
.al-doc h2,
.al-doc p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.al-doc h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.011em;
  line-height: 1.1;
  margin: 0 auto 8px;
}

.al-doc h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.14;
  margin: 40px auto 12px;
}

.al-doc p {
  font-size: 17px;
  line-height: 1.47059;
  margin: 0 auto 1em;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.al-doc .has-lead-font-size,
.al-doc .al-lead {
  text-align: left;
  max-width: 980px;
}

.al-doc ul,
.al-doc ol {
  max-width: 980px;
  margin: 0 auto 1em;
  padding-left: 1.25em;
  color: var(--al-ink-muted);
  font-size: 17px;
  line-height: 1.47059;
}

.al-doc li {
  margin: 0 0 0.45em;
}

.al-doc a {
  color: var(--al-link);
  text-decoration: none;
}

.al-doc a:hover {
  color: var(--al-link-hover);
  text-decoration: underline;
}

.al-skip-wrap {
  margin: 0;
  line-height: 0;
}

.al-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.al-skip:focus,
.al-skip:focus-visible {
  left: 16px;
  top: 8px;
  z-index: 200;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  background: var(--al-canvas);
  color: var(--al-link);
  padding: 8px 16px;
  border-radius: var(--al-radius-pill);
  outline: 2px solid var(--al-link);
  outline-offset: 3px;
}

.al-hero .al-cta-note {
  margin-bottom: 40px;
}

.al-hero-media {
  margin: 40px auto 0;
  max-width: 420px;
}

.al-hero-media--iphone {
  max-width: min(320px, 78vw);
}

.al-hero-media--ipad {
  max-width: 520px;
}

.al-hero-media--mac {
  max-width: 860px;
}

.al-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex: 0 0 auto;
  background: transparent;
  overflow: visible;
}

.al-hero-media .al-shot {
  background: #000;
  border-radius: var(--al-radius-tile);
  overflow: hidden;
}

.al-hero-media .al-shot--video {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.al-shot img,
.al-shot video,
.al-hero-video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.al-product-gallery .al-shot img,
.al-product-gallery .al-shot video {
  background: #000;
  border-radius: var(--al-radius-tile);
}

.al-hero-media .al-shot--iphone,
.al-hero-media .al-shot--ipad {
  max-height: min(72vh, 720px);
}

.al-hero-media .al-shot--video.al-shot--iphone {
  max-height: none;
}

.al-hero-media .al-shot--iphone img,
.al-hero-media .al-shot--iphone video,
.al-hero-media .al-shot--ipad img,
.al-hero-media .al-shot--ipad video {
  max-height: min(72vh, 720px);
  width: auto;
  margin: 0 auto;
}

.al-hero-media .al-shot--video.al-shot--iphone video {
  max-height: none;
  width: 100%;
  height: 100%;
  margin: 0;
}

.al-phone {
  --al-phone-r: 18% / 8.55%;
  position: relative;
  width: min(100%, calc(min(78vh, 760px) * 776 / 1630));
  aspect-ratio: 776 / 1630;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 2.35%;
  border-radius: var(--al-phone-r);
  background:
    linear-gradient(152deg, #6a6a6e 0%, #3a3a3e 36%, #232326 68%, #141416 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -2px 3px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 28px 64px rgba(0, 0, 0, 0.28);
}

.al-phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #000;
  border-radius: 16.2% / 7.7%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.al-phone__screen .al-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.al-phone__island {
  position: absolute;
  z-index: 2;
  top: 1.25%;
  left: 50%;
  width: 31.5%;
  height: 3.55%;
  transform: translateX(-50%);
  background: #000;
  border-radius: 999px;
  pointer-events: none;
}

.al-phone__island::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11%;
  width: 22%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #2a3344 0%, #0b0f16 62%, #000 100%);
}

.al-phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.05%;
  width: 11%;
  height: 0.55%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0c;
}

.al-phone__btn {
  position: absolute;
  z-index: 3;
  background: linear-gradient(180deg, #4a4a4e, #262628);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.al-phone__btn--action {
  left: -2.15%;
  top: 17.4%;
  width: 2.15%;
  height: 5.2%;
  border-radius: 2px 0 0 2px;
}

.al-phone__btn--vol-up {
  left: -2.15%;
  top: 25.2%;
  width: 2.15%;
  height: 6.6%;
  border-radius: 2px 0 0 2px;
}

.al-phone__btn--vol-down {
  left: -2.15%;
  top: 32.6%;
  width: 2.15%;
  height: 6.6%;
  border-radius: 2px 0 0 2px;
}

.al-phone__btn--power {
  right: -2.15%;
  top: 27.5%;
  width: 2.15%;
  height: 10.4%;
  border-radius: 0 2px 2px 0;
}

.al-product-gallery:not(:has(.al-device-stage)) {
  display: none;
}

.al-product-gallery .al-h2 {
  text-align: center;
  margin-bottom: 40px;
}

.al-device-stage {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.al-device-label {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  text-align: center;
}

.al-shot-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 16px;
  padding: 0;
}

.al-shot-caption {
  margin: 0;
  font-size: 12px;
  line-height: 1.33337;
  letter-spacing: -0.01em;
  color: var(--al-ink-muted);
  text-align: center;
}

.al-device-row--iphone .al-shot {
  width: min(168px, 42vw);
}

.al-device-row--ipad .al-shot {
  width: min(240px, 70vw);
}

.al-device-row--mac .al-shot {
  width: min(380px, 92vw);
}

.al-device-stage--1 .al-device-row--mac .al-shot {
  width: min(720px, 92vw);
}
