

  .cell--intro .headline {
    margin-bottom: .88235294117647058823em;
  }

  .cell--intro .large-copy {
    max-width: 11.125em;
    margin-bottom: 0.5em;
  }

  .cell--intro .row-2,
  .cell--intro .row-3 {
    margin-left: calc(133 * var(--px));
  }

  .cell--intro .row-3 {
    margin-top: calc(88 * var(--px));
  }

  .cell--intro .wysiwyg {
    max-width: 36.70588235294117647058em;
  }
  
  @media (max-width: 500px) {
    
    .cell--intro .row-2, .cell--intro .row-3 {
      margin-left: 0;
    }
    
  }
  
  
  
  
  
  
  
  
  
  
  :is(.cell--highlights, .cell--distances) {
    width: 100%;
    max-width: calc(681 * var(--px));
    margin-left: auto;
  }
  
  .cell--distances {
    max-width: calc(447 * var(--px));
  }
  
  :is(.cell--highlights, .cell--distances) .headline {
    margin-bottom: 1.17647058823529411764em;
  }
  
  :is(.cell--highlights, .cell--distances) ul li {
    border-bottom: 1px solid currentColor;
    padding-block: .88235294117647058823em;
    padding-inline: 2.17647058823529411764em var(--page-padding-right);
    position: relative;
  }
  
  :is(.cell--highlights, .cell--distances) ul li:first-child {
    border-top: 1px solid currentColor;
  }
  
  :is(.cell--highlights, .cell--distances) ul li:nth-child(1) { --ios-item-index: 1; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(2) { --ios-item-index: 2; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(3) { --ios-item-index: 3; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(4) { --ios-item-index: 4; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(5) { --ios-item-index: 5; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(6) { --ios-item-index: 6; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(7) { --ios-item-index: 7; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(8) { --ios-item-index: 8; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(9) { --ios-item-index: 9; }
  :is(.cell--highlights, .cell--distances) ul li:nth-child(10) { --ios-item-index: 10; }
  
  .cell--distances ul li {
    padding-inline: 0;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 1em;
  }
  
  .cell--distances ul li span.distance {
    display: block;
    text-align: right;
    min-width: 3.88235294117647058823em;
    color: var(--base-color-pink);
  }
  
  .cell--highlights ul li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 1.1em;
    width: 22px;
    height: auto;
    aspect-ratio: 1;
    background: url(../../imgs/highlights-bullet.svg) no-repeat center center;
    background-size: contain;
  }
  
  .cell--highlights.white ul li::before {
    background: url(../../imgs/highlights-bullet--white.svg) no-repeat center center;
    background-size: contain;
  }
  
  
  
  
  
  
  .cell--facts span.label {
    text-transform: uppercase;
    display: block;
  }
  
  .cell--facts .cpy-15 {
    --min-font-size: 11;
  }
  
  .cell--facts span.value {
    display: block;
  }
  
  .cell--facts .facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .7em 0.2em;
  }
  
  
  
  
  
  
  
  .cell--gallery {
    --gap: max(14px, calc(21 * var(--px)));
    display: flex;
    flex-flow: row nowrap;
    gap: var(--gap);
    width: 100%;
    max-width: max(500px, calc(1226 * var(--px)));
  }
  
  .cell--gallery.wide {
    flex-flow: row-reverse nowrap;
  }
  
  .cell--gallery.narrow {
    max-width: max(500px, calc(1100 * var(--px)));
  }
  
  .cell--gallery .gallery-nav {
    width: max(60px, calc(132 * var(--px)));
    flex-shrink: 0;
  }
  
  .cell--gallery .gallery-nav ul {
    display: flex;
    flex-flow: column nowrap;
    gap: var(--gap);
  }
  
  .cell--gallery .gallery-nav ul > li {
    transform: scale(0.9);
    opacity: 0;
    transition: 500ms var(--ttf-7) calc((var(--ios-item-index, 0) * 250ms) + 200ms);
  }
  
  .cell--gallery.is-on-screen .gallery-nav ul > li {
    opacity: 1;
    transform: none;
  }
  
  .cell--gallery .gallery-images {
    width: 100%;
    position: relative;
    aspect-ratio: 946 / 710;
    overflow: hidden;
  }
  
  .cell--gallery .gallery-images li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 500ms var(--ttf-2);
  }
  
  .cell--gallery .gallery-images li.current {
    z-index: 2;
    opacity: 1;
  }
  
  
  @media (max-width: 500px) {
    
    .cell--gallery {
      flex-flow: column nowrap !important;
    }
    
    .cell--gallery .gallery-nav {
      width: 100%;
    }
    
    .cell--gallery .gallery-nav ul {
      display: grid;
      grid-auto-flow: column;
    }
    
  }