.about-page {
  --about-blue: #1746b8;
  --about-ink: #222;
  background: #fff;
  color: var(--about-ink);
}

.site-header .nav a.is-active,
.site-header .nav a.is-active:visited {
  color: var(--about-blue, #1746b8);
}

.about-page .about-hero {
  position: relative;
  width: 100%;
  height: min(500px, 26.0416667vw);
  overflow: hidden;
  background: #dceaf4;
}

.about-page .about-hero::after {
  content: none;
}

.about-page .about-hero .banner-media {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-shell {
  width: min(1200px, calc(100% - 120px));
  margin: 0 auto;
  padding-bottom: 96px;
}

.about-page .about-intro {
  padding-top: 100px;
}

.about-page .about-intro h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-page .about-industries {
  margin-top: 80px;
}

.about-page .about-industry-list {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page .about-industry {
  height: 200px;
  border: 1px solid var(--about-blue);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 24px 10px 20px;
  color: var(--about-blue);
  background: #fff;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.about-page .about-industry img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: invert(23%) sepia(95%) saturate(2800%) hue-rotate(215deg) brightness(80%) contrast(90%);
}

.about-page .about-industry:hover,
.about-page .about-industry:focus-visible {
  color: #fff;
  background: var(--about-blue);
  cursor: pointer;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(23, 70, 184, .2);
}

.about-page .about-industry:hover img,
.about-page .about-industry:focus-visible img {
  filter: brightness(0) invert(1);
}

.about-page .about-industry span {
  display: block;
  max-width: 100%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: anywhere;
}

.about-page .about-copy {
  display: grid;
  grid-template-columns: minmax(0, 57fr) minmax(0, 58fr);
  gap: 50px;
  margin-top: 55px;
  padding: 0;
}

.about-page .about-copy h2 {
  margin: 0 0 3px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-page .about-copy p {
  margin: 0;
  color: #444;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: pre-line;
}

.about-page .about-copy-lead p {
  max-width: 540px;
}

.about-page .about-copy-detail {
  padding-top: 5px;
  hyphens: auto;
}

@media (max-width: 1280px) {
  .about-shell {
    width: calc(100% - 80px);
  }

  .about-page .about-intro {
    padding-top: 100px;
  }

  .about-page .about-industry-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: initial;
    gap: 28px;
  }

  .about-page .about-industry span {
    font-size: clamp(20px, 2vw, 26px);
  }

  .about-page .about-copy {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 100px;
  }

  .about-page .about-industries {
    margin-top: 100px;
  }

  .about-page .about-copy-lead p {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .about-page .about-hero {
    height: 320px;
  }

  .about-shell {
    width: calc(100% - 64px);
    padding-bottom: 92px;
  }

  .about-page .about-intro {
    padding-top: 72px;
  }

  .about-page .about-intro h1 {
    max-width: none;
    margin: 0;
    font-size: 34px;
    text-align: left;
  }

  .about-page .about-industries {
    margin-top: 64px;
  }

  .about-page .about-industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .about-page .about-copy {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 64px;
  }

  .about-page .about-copy h2 {
    font-size: 48px;
  }

  .about-page .about-industry span {
    font-size: 26px;
  }

  .about-page .about-copy-detail {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .about-page .about-hero {
    height: 260px;
  }

  .about-shell {
    width: calc(100% - 40px);
    padding-bottom: 60px;
  }

  .about-page .about-intro {
    padding-top: 52px;
  }

  .about-page .about-intro h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .about-page .about-industries {
    margin-top: 52px;
  }

  .about-page .about-industry-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-page .about-industry {
    width: min(100%, 360px);
    height: 160px;
    margin: 0 auto;
    border-radius: 12px;
  }

  .about-page .about-industry img {
    width: 56px;
    height: 56px;
  }

  .about-page .about-industry span {
    font-size: 24px;
  }

  .about-page .about-copy {
    gap: 24px;
    margin-top: 52px;
  }

  .about-page .about-copy h2 {
    font-size: 38px;
  }

  .about-page .about-copy p {
    font-size: 16px;
    line-height: 1.65;
  }
}
