/* Production integration: common header/footer and approved PECHAT61 behavior. */

.hero-actions .button.outline {
  display: none;
}

.hero-visual > img {
  opacity: .5;
}

.use-grid img {
  opacity: .65;
}

.site-header .brand,
.site-header .brand:hover,
.site-header .brand:focus-visible {
  color: var(--ink);
}

.footer {
  padding: 58px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid #555;
}

.footer-logo {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.footer-logo span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font: 800 21px Manrope, Inter, sans-serif;
}

.footer-logo b {
  font: 800 22px Manrope, Inter, sans-serif;
}

.footer-logo small {
  color: #999;
  font: 400 11px Inter, sans-serif;
}

.footer .footer-top > p {
  margin: 0;
  color: #aaa;
  font: 400 14px/1.45 Inter, sans-serif;
}

.footer-cta {
  padding: 16px 22px;
  background: var(--yellow);
  color: var(--ink);
  font: 700 14px Manrope, Inter, sans-serif;
  text-decoration: none;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding: 42px 0;
}

.footer .footer-grid h3 {
  margin: 0 0 17px;
  color: var(--white);
  font: 700 12px Manrope, Inter, sans-serif;
  text-transform: uppercase;
}

.footer .footer-grid a,
.footer .footer-grid span {
  display: block;
  margin: 9px 0;
  color: #aaa;
  font: 400 12px/1.4 Inter, sans-serif;
  text-decoration: none;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid #555;
  color: #777;
  font: 600 9px Inter, sans-serif;
  letter-spacing: .05em;
}

@media (max-width: 1100px) {
  .footer .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer .footer-top > p {
    grid-column: 1 / -1;
  }

  .footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .footer .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    justify-self: start;
  }

  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer .footer-bottom {
    display: block;
  }

  .footer .footer-bottom span {
    display: block;
    margin: 7px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
