/* Multi-industry positioning sections for the public RollCall site. */
.site-footer img {
  filter: none;
}

.site-header .brand img {
  width: 190px;
}

.section-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.industry-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

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

.industry-grid article {
  min-height: 210px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(18, 35, 59, .045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.industry-grid article:hover {
  transform: translateY(-4px);
  border-color: #bedaf2;
  box-shadow: 0 18px 35px rgba(18, 35, 59, .10);
}

.industry-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 17px;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-light);
  font-size: 21px;
  font-weight: 800;
}

.industry-grid h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 17px;
}

.industry-grid p {
  margin: 0;
  color: #607187;
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 76px;
  align-items: center;
}

.impact-callout {
  padding: 33px;
  border-radius: 18px;
  color: #dbeafa;
  background: linear-gradient(145deg, #10213a, #1c3d67);
  box-shadow: 0 20px 42px rgba(17, 43, 75, .22);
}

.impact-label {
  display: block;
  margin-bottom: 11px;
  color: #8fc7f5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.impact-callout strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(47px, 5vw, 67px);
  line-height: 1;
  letter-spacing: -.055em;
}

.impact-callout p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
}

.impact-callout b {
  display: block;
  padding-top: 17px;
  border-top: 1px solid rgba(197, 223, 247, .25);
  color: #fff;
  font-size: 15px;
}

.about-outcome {
  margin-top: 45px;
  padding: 22px 27px;
  border-left: 4px solid var(--blue);
  border-radius: 0 13px 13px 0;
  background: #e9f5ff;
}

.about-outcome p {
  max-width: 900px;
  margin: 0;
  color: #244561;
  font-size: 18px;
  font-weight: 650;
}

.outcome-line {
  margin: -8px 0 28px;
  color: #b8ddf7;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 560px) {
  .site-header .brand img { width: 150px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-grid article { min-height: auto; }
  .impact-callout { padding: 26px 23px; }
  .about-outcome { padding: 19px 20px; }
  .about-outcome p { font-size: 16px; }
}
