/**
 * Before going live, everything in this file should be moved somewhere where
 * it actually belongs.
 */

.page__info {
  position: fixed;
  z-index: 100;
  right: 26vw;
  bottom: 2vw;
  left: 2vw;
  max-width: 60em;
  max-height: 75vh;
}

.page__actions {
  position: fixed;
  z-index: 100;
  right: 2vw;
  bottom: 2vw;
  left: 76vw;
  max-height: 75vh;
  text-align: right;
}

.page__highlighted {
  position: relative;
}

.page__help {
  padding: 1em;
  border-width: 1px 1px 1px 3.5em;
  border-style: solid;
  border-color: var(--color-faded-gold);
  border-radius: 3px;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.9);
}

.page__help > p { margin: 0; }
.page__help > p + p { margin-top: 1em; }

.page__info > * + * { margin-top: 1em; }

.action-button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 1.93em;
  height: 1.93em;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #02693a;
  font-size: 1.5em;
  appearance: none;
}

.action-button + .action-button { margin-left: 0.25em; }

.action-button > * { color: white; }

.section-title {
  margin-top: 0;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-bottom: 1px var(--color-bright-gold) solid;
  font-weight: normal;
}

.section-footer {
  margin-top: 1em;
  padding: 0.25em 0;
  text-align: right;
  border-top: 1px var(--color-dark-gold) solid;
}

.section-footer a:link {
  text-decoration: none;
  text-transform: uppercase;
}

.section-footer a::after {
  content: " \f152";
  color: var(--color-dark-gold);
  /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
  font: normal normal 900 14px/1 "Font Awesome 6 Free";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-footer a:hover::after,
.section-footer a:focus::after {
  color: var(--color-green);
}

.breadcrumb {
  display: inline;
  padding: 0;
  list-style: none;
  letter-spacing: .2px;
  font-size: 0.9em;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li+li::before {
  display: inline-block;
  content: ' \25b8 '; /* Right pointing small triangle */
  transform: translateY(2px); /* Adjust the vertical position */
  font-size: 1.6em;
}
