/* Stable video symbol: CSS triangle prevents iOS from rendering the glyph as emoji. */
.hero-video-link .play {
  position: relative;
  padding-left: 0;
  font-size: 0;
}

.hero-video-link .play::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 16px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-33.333%, -50%);
}

/* Mobile customer-reference strip: a clear left-aligned star and link. */
@media (max-width: 700px) {
  html,
  body {
    overflow-x: clip;
  }

  body > header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(248, 249, 245, 0.97);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  body > header .header-tools,
  body > header .nav-cta,
  body > header .menu {
    align-self: center;
  }

  body > header .header-tools {
    display: flex;
    align-items: center;
  }

  .menu {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    color: #172018;
    font-size: 0;
  }

  .menu::before {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
  }

  .announcement.customer-announcement {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 52px;
    padding: 9px 6%;
  }

  .customer-announcement > span {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    font-size: 0;
  }

  .customer-announcement > span .customer-star {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border: 0;
    border-radius: 0;
    background: none !important;
    box-shadow: none;
    color: #315d29;
    font-size: 17px;
    line-height: 1;
  }

  .announcement.customer-announcement > a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: #21442b;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    border-bottom: 1px solid #315d29;
  }
}
