@import url("core-page-first-view.css?v=20260720-industry-route-1");

.page-hero {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 56px;
  align-items: center;
  width: min(var(--max), calc(100vw - 64px));
  margin: 0 auto;
  padding: 78px 0 64px;
}

.page-hero h1 {
  max-width: 680px;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  background: var(--soft);
}

.page-grid,
.industry-list,
.resource-list,
.about-story,
.timeline,
.process-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 86px;
}

.page-card,
.industry-list article,
.resource-list article,
.about-story article,
.timeline article,
.process-map article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.page-card.large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 34px;
  align-items: center;
}

.page-card img {
  width: 100%;
  height: 190px;
  margin-bottom: 20px;
  object-fit: contain;
  background: var(--soft);
}

.page-card.large img {
  height: 290px;
  margin-bottom: 0;
}

.page-card span,
.resource-list span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-weight: 900;
}

.page-card p,
.industry-list p,
.resource-list p,
.about-story p,
.timeline p,
.process-map p {
  color: var(--muted);
}

.page-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 82px;
  padding: 36px;
  color: #fff;
  border-radius: 6px;
  background: #101216;
}

.page-cta p {
  margin-bottom: 0;
  color: #d4d8df;
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  padding-bottom: 90px;
}

.side-nav {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 10px;
  align-self: start;
}

.side-nav a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-weight: 900;
}

.detail-content {
  display: grid;
  gap: 24px;
}

.detail-content section {
  padding: 34px;
  border-radius: 6px;
  background: var(--soft);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.mini-grid span,
.process-map span {
  padding: 14px;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  font-weight: 900;
}

.timeline b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: #fff;
  border-radius: 50%;
  background: #111;
}

.page-contact {
  margin-top: 0;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 86px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.related-links h2 {
  flex-basis: 100%;
  margin-bottom: 4px;
  font-size: 28px;
}

.related-links a {
  padding: 13px 16px;
  border-radius: 5px;
  background: var(--soft);
  font-weight: 900;
}

.content-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 86px;
  padding: 34px;
  border-radius: 6px;
  background: var(--soft);
}

.content-band h2 {
  margin-bottom: 0;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.signal-grid article {
  padding: 22px;
  border-radius: 6px;
  background: #fff;
}

.signal-grid h3 {
  font-size: 18px;
}

.signal-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .page-hero,
  .detail-layout,
  .page-card.large,
  .page-cta,
  .content-band {
    grid-template-columns: 1fr;
  }

  .page-grid,
  .industry-list,
  .resource-list,
  .about-story,
  .timeline,
  .process-map,
  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-card.large {
    grid-column: span 2;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .page-hero {
    width: calc(100vw - 40px);
    padding: 48px 0 42px;
  }

  .page-grid,
  .industry-list,
  .resource-list,
  .about-story,
  .timeline,
  .process-map,
  .mini-grid,
  .side-nav,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .page-card.large {
    grid-column: span 1;
  }

  .page-cta {
    padding: 28px 20px;
  }

  .detail-content section {
    padding: 26px 20px;
  }
}
