
  .sn-section {
    padding-inline: clamp(20px, 5vw, 50px);
    margin-block: clamp(60px, 15vw, 150px);
  }
  
  video {
    display: block;
    max-width: none;
    width: 100%;
    height: auto;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .gallery-grid > li {
    background: #f0f0f0;
  }
  
  .gallery-grid img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
  }
  
  #gallery-photo-booth .gallery-grid img {
    aspect-ratio: auto;
  }
  
  @media (max-width: 500px) {
    .gallery-grid img {
      aspect-ratio: auto;
    }
    .gallery-grid a {
      interactivity: inert;
      pointer-events: none;
    }
  }

  .hdln-1 {
    font-size: clamp(2rem, 5vw, 50px);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #d0c8c5;
  }
  
  .link-list {
    display: flex;
    flex-flow: row wrap;
    gap: 1em;
    align-items: center;
    justify-content: center;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  
  .link-list a {
    display: block;
    background: #efefef;
    color: #231e17;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    padding: 1em 2em;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.15rem;
    corner-shape: squircle;
  }