:root {
  --brand-green: #006400;
  --text-color: #151515;
  --muted-text: #595959;
  --page-width: 1160px;
  --body-font: "Quicksand", sans-serif;
  --heading-font: "Cinzel", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text-color);
  background: #ffffff;
  font-family: var(--body-font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 8px 14px;
  color: #ffffff;
  background: var(--brand-green);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.insights-intro {
  min-height: 208.75px;
  padding: 80px 24px;
  text-align: center;
}

.insights-intro h1 {
  max-width: 677px;
  margin: 0 auto;
  padding-bottom: 24px;
  color: #1b1b1b;
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 400 !important;
  font-synthesis: none;
  line-height: 1.125;
}

.downloads-section {
  min-height: 286.8px;
  padding: 89px max(20px, calc((100% - 1160px) / 2)) 33px;
  background: #ffffff;
}

.downloads-grid {
  width: min(1096px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin: 0 auto;
}

.download-item {
  min-width: 0;
  margin: 0;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgb(218, 218, 218);
  border-radius: 9px;
  background-color: rgb(246, 246, 246);
  text-align: center;
}

.download-item p {
  margin: 0 0 24px;
  color: rgb(21, 21, 21);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.download-button {
  min-width: 104.3125px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border: 0;
  color: rgb(255, 255, 255);
  background-color: #185127;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 0;
  transition: filter 180ms ease, transform 180ms ease;
}

.download-button:hover,
.download-button:focus-visible {
  color: rgb(255, 255, 255);
  background-color: #185127;
  filter: brightness(0.9);
}

.download-button:visited,
.download-button:active {
  color: rgb(255, 255, 255);
}

.site-footer {
  min-height: 164.8px;
  padding: 56px 24px;
  background: #ffffff;
}

.footer-container {
  width: min(100%, 1112px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.copyright {
  margin: 0;
  color: var(--muted-text);
  font-size: 16px;
  line-height: 1.8;
}

.powered-by {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
  color: var(--muted-text);
}

.powered-by span {
  line-height: 1.8;
}

.powered-by img {
  width: 131px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .insights-intro {
    min-height: 251px;
    padding: 64px 24px;
  }

  .insights-intro h1 {
    max-width: 231px;
  }

  .downloads-section {
    min-height: 588.4px;
    padding: 73px 20px 15px;
  }

  .downloads-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0;
  }

  .download-item {
    min-height: 170px;
    margin: 0 12px;
    padding: 24px;
  }

  .download-item:last-child {
    padding-bottom: 24px;
  }

  .download-button {
    width: calc(100% - 2px);
    margin: 0 auto;
  }

  .site-footer {
    min-height: 214.4px;
    padding: 48px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .powered-by {
    align-items: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
