.info-page .info-title {
  font-size: 1.9em;
  line-height: 1.15;
  margin: 0 0 16px;
}
@media only screen and (max-width: 767px) {
  .info-page .info-title {
    font-size: 1.6em;
  }
}
.info-page .info-holding {
  margin: 0 0 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.info-page .info-holding h2 {
  font-size: 1.15em;
  margin: 0 0 6px;
}
.info-page .info-holding p {
  margin: 0;
  color: #475467;
}
.info-jump {
  position: sticky;
  top: 50px;
  z-index: 40;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  background-color: #f8fafb;
  margin: 0 0 22px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.info-jump-label {
  flex: 0 0 auto;
  font-size: 0.78em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}
.info-jump-label i {
  margin-right: 4px;
}
.info-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
.info-jump-link {
  flex: 0 0 auto;
  max-width: 100%;
  padding: 7px 14px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  font-size: 0.88em;
  line-height: 1.2;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.info-jump-link:hover {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.85);
}
.info-jump-link.active {
  background-color: var(--main-color);
  color: var(--on-primary);
}
.info-jump-link--minor {
  font-weight: 500;
  font-size: 0.82em;
  background-color: rgba(0, 0, 0, 0.04);
}
@media only screen and (max-width: 767px) {
  .info-jump {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .info-jump-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .info-jump-links::-webkit-scrollbar {
    display: none;
  }
  .info-jump-link {
    max-width: 72vw;
  }
}
.info-flow {
  max-width: 820px;
}
.info-block,
.info-advert {
  margin: 0 0 32px;
  scroll-margin-top: 110px;
}
.info-advert {
  padding: 0;
}
.info-heading {
  color: #101828;
}
.info-heading--major {
  font-size: 1.45em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  padding-top: 4px;
}
@media only screen and (max-width: 767px) {
  .info-heading--major {
    font-size: 1.3em;
  }
}
.info-heading--minor {
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1.3;
  color: #344054;
  margin: 0 0 8px;
}
.info-block + .info-block .info-heading--major {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 28px;
}
.info-text {
  color: #344054;
}
.info-text p {
  margin: 0 0 12px;
}
.info-text > :last-child {
  margin-bottom: 0;
}
.info-text ul,
.info-text ol {
  margin: 0 0 12px;
  padding-left: 1.3rem;
}
.info-text li {
  margin-bottom: 4px;
}
.info-text a {
  color: var(--main-color);
}
/* A link to a file the organiser uploaded (/file/<id>) is worth marking as
   such: a reader on a phone wants to know a tap is about to open a document
   rather than move them down the page. Matched on the href, so a link typed by
   hand is marked exactly like one dropped in by the editor's File button.
   fa-file from the Font Awesome kit the header already loads - the kit is FA6
   Pro with the v5 font-face shim, hence both families in the stack. */
.info-text a[href^="/file/"] {
  font-weight: 600;
}
.info-text a[href^="/file/"]::before {
  content: "\f15b";
  font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro";
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.35em;
  font-size: 0.9em;
  opacity: 0.75;
}
.info-frame {
  position: relative;
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #eef1f4;
  background-image: linear-gradient(100deg, #eef1f4 30%, #f6f8fa 50%, #eef1f4 70%);
  background-size: 300% 100%;
  animation: info-frame-shimmer 1.4s ease-in-out infinite;
  aspect-ratio: var(--info-ratio, 16 / 9);
  width: 100%;
  max-width: min(100%, calc(78vh * var(--info-ratio-num, 1.778)));
  margin-left: auto;
  margin-right: auto;
}
.info-frame.is-loaded,
.info-frame.is-failed {
  background-image: none;
  animation: none;
}
.info-frame.is-failed {
  display: none;
}
.info-frame--auto {
  aspect-ratio: auto;
  max-width: 100%;
  min-height: 120px;
}
.info-frame--auto.is-loaded {
  min-height: 0;
  background-color: transparent;
}
.info-block .info-frame {
  margin-bottom: 0;
}
.info-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.info-img.is-loaded {
  opacity: 1;
}
.info-frame--auto .info-img {
  height: auto;
}
.info-advert-link {
  display: block;
  text-decoration: none;
}
.info-advert-caption {
  margin: 8px 0 0;
  font-size: 0.8em;
  color: #6b7280;
}
@keyframes info-frame-shimmer {
  from {
    background-position: 150% 0;
  }
  to {
    background-position: -50% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .info-frame {
    animation: none;
    background-image: none;
  }
  .info-img {
    opacity: 1;
    transition: none;
  }
}
