.page--about {
  background: var(--color-surface);
}

.page--about .hero-backdrop {
  display: none;
}

.page--about .hero {
  display: none;
}

.top-nav__headline--page-title {
  flex: 1;
  min-width: 0;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.about-main {
  position: relative;
  z-index: 10;
  flex: 1;
  width: 100%;
  padding-top: 32px;
}

.about-content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.about-header__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.about-header__title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 42px;
  color: var(--color-label);
}

.about-download {
  display: inline-flex;
  flex-shrink: 0;
  gap: 4px;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 8px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background: var(--color-surface);
  color: #4c4b53;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s ease;
}

.about-download:hover {
  background: #f4f4f5;
}

.about-download img {
  display: block;
  width: 16px;
  height: 16px;
}

.about-tabs {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.about-header__nav-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.about-tabs__tab {
  padding: 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #979ea3;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  white-space: nowrap;
}

.about-tabs__tab:hover {
  color: var(--color-label);
}

.about-tabs__tab.is-active {
  border-bottom-color: #ffd800;
  color: var(--color-label);
  font-weight: 800;
}

.about-panel {
  margin-top: 0;
}

.about-panel[hidden] {
  display: none;
}

.about-copy {
  margin: 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 19px;
  letter-spacing: -0.02px;
  color: var(--color-label);
}

.about-copy p {
  margin: 0 0 12px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy__credit {
  font-weight: 800;
}

.about-media {
  margin-top: 24px;
}

.about-video--loom {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.about-video__embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.about-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .top-nav__headline--page-title {
    display: none;
  }

  .about-main {
    padding-top: 32px;
  }

  .about-content {
    padding: 32px;
  }

  .about-header__title {
    font-size: 28px;
    line-height: 34px;
  }

  .about-tabs {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .about-main {
    padding-top: 8px;
  }

  .about-content {
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .about-copy p {
    line-height: 15px;
  }
}
