.industry-page {
  --industry-bg: #f6f7f4;
  --industry-bg-rgb: 246,247,244;
  --industry-ink: #071625;
  --industry-navy: #061827;
  --industry-muted: #667085;
  --industry-line: rgba(7,22,37,.12);
  --industry-accent: #67d7b0;
  --industry-accent-rgb: 103,215,176;
  background: var(--industry-bg);
  color: var(--industry-ink);
}

.industry-hero__icon img,
.industry-hero__icon-img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	display: block;
}

/* Industry colour headings / links */
.industry-section-head small,
.industry-section-head > a,
.industry-section-head--compact small,
.industry-section-head--compact > a,
.industry-page #projects .industry-section-head small,
.industry-page #projects .industry-section-head > a,
.industry-page #projects .industry-section-head a {
  color: var(--industry-accent) !important;
}

.industry-section-head > a:hover,
.industry-page #projects .industry-section-head > a:hover {
  opacity: .75;
}

/* Project card industry pill */
.industry-project-card__industry {
  color: var(--industry-accent) !important;
  border-color: var(--industry-accent) !important;
  background: rgba(var(--industry-accent-rgb), .12);
}

/* Project card icon */
.industry-project-card__icon {
  color: var(--industry-accent);
}

/* News category/date */
.industry-news-card__meta {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.industry-news-card__category {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  color: var(--industry-accent) !important;
  font-size: inherit !important;
  font-weight: 900;
  margin-right: 0;
  padding-right: 8px;
  border-right: 1px solid currentColor;
}

/* News arrow - replaces the old broad .industry-news-card span rule */
.industry-news-card__arrow {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: var(--industry-accent);
  font-size: 24px;
  font-weight: 700;
}

.industry-staff-card__content p {
  margin: 12px 0 0;
  font-size: 10px;
}

.industry-hero__title {
  display: flex;
  align-items: center;
  gap: 35px;
}

.industry-hero__icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--industry-accent);
}

.industry-hero__icon svg {
  width: 72px;
  height: 72px;
  display: block;
}

.industry-hero__icon svg,
.industry-hero__icon svg * {
  fill: currentColor;
  stroke: currentColor;
}

.industry-data-card .industry-data-card__icon {
  border: 1px solid var(--industry-accent);
  padding: 8px;
}

.industry-data-card.industry-data-card--dark .industry-data-card__icon {
  border: 1px solid #fff;
}

.industry-project-card__image {
  position: relative;
  padding: 0 !important;
}

.industry-project-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.industry-project-card__content {
  position: relative;
  padding: 30px;
}

.industry-project-card__status {
  position: absolute !important;
  top: 12px;
  right: 12px;
  bottom: auto !important;
  left: auto !important;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

.industry-project-card__status--in-progress {
  background: #1479e8;
}

.industry-project-card__status--completed,
.industry-project-card__status--complete {
  background: #24b045;
}

.activities-heading {
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.main-container,
.industry-hero__inner,
.priority-hero__inner,
.industry-news-section__inner {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}

.industry-main-grid {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.industry-main-grid main {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}

/* Hero */
.industry-hero {
  position: sticky;
  top: 0;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  min-height: 45vh;
  background: var(--industry-navy);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 7% 0 3%;
}

.activity-hero {
  position: relative;
  overflow: hidden;
  background: var(--industry-navy);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 1% 0 0;
}

.industry-hero__bg,
.industry-hero__overlay {
  position: absolute;
  inset: 0;
}

.industry-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: industryKenBurns 11s ease-in-out infinite alternate;
  will-change: transform;
}

.industry-hero__bg--parallax {
  height: 112%;
  top: -6%;
}

.industry-hero__overlay {
  z-index: 1;
  background: linear-gradient(
    125deg,
    rgba(3,14,25,.95) 0%,
    rgba(3,14,25,.85) 22%,
    rgba(3,14,25,.5) 46%,
    rgba(3,14,25,0) 90%
  );
}

.industry-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 40px;
  padding: 30px;
}

.priority-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: block;
}

.industry-hero h1 {
  margin: 0 0 25px;
  font-size: clamp(58px, 7vw, 100px);
  line-height: .9;
  letter-spacing: -.04em;
  color: #fff;
  font-weight: 200;
}

.industry-hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 35px 0;
}

.industry-hero__nav a {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  background: var(--industry-accent);
  box-shadow: 0 8px 20px rgba(var(--industry-accent-rgb), .25);
  transition: all .3s ease;
}

.industry-hero__nav a:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 20px 50px rgba(var(--industry-accent-rgb), .45);
  filter: brightness(1.08);
}

.industry-hero__nav a span {
  transition: transform .3s ease;
}

.industry-hero__nav a:hover span {
  transform: translateX(4px);
}

.industry-hero-manager {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 24px;
  color: #fff;
  text-decoration: none;
}

.industry-hero-manager img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.45);
}

.industry-hero-manager small,
.industry-hero-news small {
  display: block;
  margin-bottom: 8px;
  color: var(--industry-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.industry-hero-manager strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 200;
}

.industry-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-self: end;
  align-self: end;
}

.industry-hero-news {
  width: 390px;
  display: grid;
  grid-template-columns: 1fr 76px 24px;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  background: rgba(7,17,31,.42);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  transition: .2s ease;
}

.industry-hero-news:hover {
  transform: translateY(-2px);
  background: rgba(7,17,31,.56);
}

.industry-hero-news strong {
  display: -webkit-box;
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.03em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.industry-hero-news em {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-style: normal;
}

.industry-hero-news picture,
.industry-hero-news img {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
}

.industry-hero-news i {
  font-style: normal;
  font-size: 24px;
  color: var(--industry-accent);
}

/* Intro */
.industry-content > div:last-child,
.industry-content-copy {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.industry-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25%;
  gap: 48px;
  align-items: center;
}

.industry-content-copy {
  max-width: none;
}

.industry-content-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(7,22,37,.12);
}

/* Headings */
.industry-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 45px;
}

.industry-section-head small,
.industry-data-card small {
  display: block;
  color: var(--industry-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.industry-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: .95;
  letter-spacing: -.055em;
}

.industry-section-head a {
  color: var(--industry-accent);
  font-weight: 800;
  text-decoration: none;
}

/* Data cards */
.industry-data {
  padding: 0 0 35px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 25px;
}

.industry-data-card {
  display: flex;
  gap: 30px;
  min-height: 190px;
  padding: 34px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(7,22,37,.08);
}

.industry-data-card--dark {
  overflow: hidden;
  background: var(--industry-accent);
  color: #fff;
}

.industry-data-card--dark small {
  color: rgba(255,255,255,.65);
}

.industry-data-card--light {
  background: #fff;
}

.industry-data-card__icon {
  width: 2.4em;
  height: 2.4em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--industry-accent);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 15px;
  background: rgba(var(--industry-accent-rgb), .2);
}

.industry-data-card__icon svg,
.industry-data-card__icon svg * {
  display: block;
  fill: currentColor;
  stroke: currentColor;
}

.industry-data-card--dark .industry-data-card__icon {
  color: #fff;
}

.industry-data-card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1;
  letter-spacing: -.045em;
}

.industry-data-card p {
  margin: 0;
  line-height: 1.4;
}

.industry-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 99px;
  background: #fff;
  color: var(--industry-ink);
  font-weight: 900;
  text-decoration: none;
}

.industry-btn--dark {
  background: var(--industry-navy);
  color: #fff;
}

/* Priority cards */
.priority-cards {
  display: grid;
  grid-template-columns: repeat(var(--priority-count, 4), minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 70px;
}

.priority-card {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid var(--industry-line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(7,22,37,.06);
}

.priority-card .number {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  background: var(--industry-accent);
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.priority-card .title {
  color: var(--industry-navy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.priority-heading {
  margin-bottom: 25px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--industry-accent);
}

/* Pathways */
.aviation-pathways {
  display: grid;
  grid-template-columns: repeat(var(--activity-count), minmax(0, 1fr));
  gap: 0;
  margin: 50px 0 70px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(var(--industry-accent-rgb), .35);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  background: rgba(3,14,25,.65);
}

.aviation-pathway {
  padding: 34px 36px;
  border-right: 1px solid rgba(var(--industry-accent-rgb), .35);
}

.aviation-pathway:last-child {
  border-right: 0;
}

.aviation-pathway__content h3 {
  display: block;
  margin: 0;
  color: var(--industry-accent);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.aviation-pathway__content p {
  display: inline;
  margin: 0;
  color: white;
  font-size: 13px;
}

.industry-pathways-section {
  padding: 60px 30px;
}

/* Committee */
.industry-committee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.industry-training-card.commitee {
  padding: 55px;
}

.industry-committee {
  padding: 0 45px;
}

.industry-committee h4 {
  font-size: 15px;
}

.industry-committee__wysiwyg p {
  margin-bottom: 15px;
}

.industry-staff-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.industry-staff-list--leadership,
.industry-staff-list--members {
  grid-template-columns: repeat(2, 1fr);
}

.industry-staff-list--leadership {
  margin-bottom: 18px;
}

.industry-staff-card {
  display: grid;
  grid-template-columns: 54px 1fr 10px;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  background: rgba(var(--industry-bg-rgb), .5);
  border: 1px solid rgba(0,0,0,.15);
  padding: 10px;
  border-radius: 15px;
}

.industry-staff-card--leadership {
  background: rgba(var(--industry-accent-rgb), .1);
  border: 1px solid rgba(var(--industry-accent-rgb), .35);
}

.industry-staff-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.industry-staff-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.05;
}

.industry-staff-card small {
  display: block;
  margin-top: 4px;
  color: var(--industry-muted);
  font-size: 13px;
  line-height: 1.1;
}

.industry-staff-card--leadership small {
  color: var(--industry-accent);
  font-weight: 700;
}

.industry-staff-card.is-hidden {
  display: none;
}

.industry-staff-load-more {
  margin-top: 35px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--industry-accent);
  font-weight: 900;
  cursor: pointer;
}

/* Committee action cards */
.committee-action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.committee-action-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--industry-line);
  box-shadow: 0 12px 28px rgba(7,22,37,.06);
}

.committee-action-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.committee-action-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--industry-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.committee-action-card h3 {
  margin: 0 0 12px;
  color: var(--industry-navy);
  font-size: 20px;
  line-height: 1.1;
}

.committee-action-card p {
  margin: 0 0 16px;
  color: var(--industry-muted);
  font-size: 14px;
  line-height: 1.45;
}

.committee-action-card a {
  color: var(--industry-accent);
  font-weight: 900;
  text-decoration: none;
}

.committee-action-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(var(--industry-accent-rgb), .12);
  color: var(--industry-accent);
  font-size: 22px;
}

.committee-action-card__content {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--industry-muted);
  font-size: 14px;
  line-height: 1.45;
}

/* News + events */
.industry-content-section {
  padding: 100px 0;
  background: var(--industry-bg);
}

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

.industry-news-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(7,22,37,.08);
  box-shadow: 0 10px 30px rgba(7,22,37,.06);
  transition: all .25s ease;
}

.industry-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(7,22,37,.12);
}

.industry-news-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.industry-news-card picture,
.industry-news-card img {
  display: block;
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.industry-news-card > a > div {
  padding: 30px;
}

.industry-news-card h3 {
  margin: 0;
  color: var(--industry-navy);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(22px * 1.1 * 2);
}

.industry-news-card p {
  margin-top: 16px;
  color: var(--industry-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Events */
.industry-events {
  margin-top: 40px;
  padding: 35px;
  border-radius: 10px;
  background: var(--industry-accent);
  color: #fff;
}

.industry-events__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.industry-events__head small {
  display: block;
  color: rgba(0,0,0,.6);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.industry-events__head h2 {
  margin: 0 0 30px;
  color: #fff;
}

.industry-events__head a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.industry-events-list {
  display: grid;
  gap: 8px;
}

.industry-event-card {
  display: grid;
  grid-template-columns: 56px 1fr 20px;
  gap: 12px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 8px;
}

.industry-event-card:last-child {
  border-bottom: 0;
}

.industry-event-card__date {
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.3);
  padding: 12px 5px;
}

.industry-event-card__date strong {
  font-size: 18px;
  line-height: .85;
}

.industry-event-card__date em,
.industry-event-card__body em {
  font-style: normal;
  font-size: 11px;
}

.industry-event-card__body strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}

.industry-event-card__time {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

/* MSTI */
.msti-section {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 90px;
  align-items: center;
  padding: 90px 0;
}

.msti-section small {
  display: block;
  margin-bottom: 18px;
  color: var(--industry-accent);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.msti-section h3 {
  max-width: 980px;
  margin: 0 0 28px;
  color: #061827;
  font-size: clamp(48px, 5.4vw, 60px);
  line-height: .95;
  letter-spacing: -0.06em;
}

.msti-section p {
  max-width: 980px;
  margin: 0 0 22px;
  color: #667085;
  line-height: 1.55;
}

.msti-section__card {
  padding: 46px;
  border: 1px solid #d7dce5;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 24, 39, .08);
}

.msti-section__card h3 {
  margin: 0 0 30px;
  color: #061827;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.msti-section__steps {
  display: grid;
  gap: 16px;
}

.msti-section__steps div {
  padding: 24px 26px;
  font-size: 15px;
  border-radius: 18px;
  background: rgba(var(--industry-accent-rgb), .1);
  border: 1px solid rgba(var(--industry-accent-rgb), .35);
  color: #061827;
  font-weight: 600;
  line-height: 1.25;
}

.tick-step {
  display: flex;
  gap: 15px;
}

.tick-step i {
  font-size: 45px;
  color: var(--industry-accent);
}

/* Modal */
.industry-hero-manager,
.industry-manager-link-button {
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: transparent;
}

.industry-manager-link-button {
  position: relative;
  padding: 0;
  background: none;
  color: var(--industry-accent);
  font-weight: 900;
}

.industry-manager-link-button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width .3s ease;
}

.industry-manager-link-button:hover::after {
  width: 100%;
}

.industry-manager-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.industry-manager-modal.is-open {
  display: flex;
}

.industry-manager-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,24,39,.72);
  backdrop-filter: blur(6px);
}

.industry-manager-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 38px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.industry-manager-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #061827;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease;
}

.industry-manager-modal__close:hover {
  transform: rotate(90deg);
}

.industry-manager-modal__header {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.industry-manager-modal__image img {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  object-fit: cover;
}

.industry-manager-modal small {
  display: block;
  margin-bottom: 8px;
  color: var(--industry-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.industry-manager-modal h2 {
  margin: 0;
  color: #061827;
  font-size: 42px;
  line-height: 1;
}

.industry-manager-modal__role {
  margin: 10px 0 0;
  color: #667085;
  font-weight: 700;
}

.industry-manager-modal__content {
  color: #667085;
  font-size: 17px;
  line-height: 1.7;
}

.industry-manager-modal__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.industry-manager-modal__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(var(--industry-accent-rgb), .12);
  color: var(--industry-accent);
  font-weight: 900;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  border: 1px solid transparent;
}

.industry-manager-modal__contact a:hover {
  background: transparent;
  border-color: var(--industry-accent);
  transform: translateY(-2px);
  box-shadow: 5px 5px 30px rgba(var(--industry-accent-rgb), .2);
}

/* Background wrappers */
.industry-main-grid--intro,
.content-block-bg {
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.content-block-bg {
  background: #f6f7f4;
  padding: 60px 30px;
}

.industry-main-grid--intro .industry-content {
  background: #fff;
}

.industry-page #projects.project-cards-block .js-project-card-animate {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes industryKenBurns {
  from {
    transform: scale(1) translate(0, 0);
  }

  to {
    transform: scale(1.12) translate(-2%, -2%);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .industry-hero__inner {
    grid-template-columns: 1fr;
  }

  .industry-hero__cards {
    justify-self: start;
    width: 100%;
  }

  .industry-hero-news {
    width: min(100%, 520px);
  }

  .industry-data,
  .priority-cards,
  .industry-committee-grid,
  .committee-action-cards,
  .msti-section {
    grid-template-columns: 1fr;
  }

  .industry-projects__row,
  .industry-news-row,
  .industry-staff-list--members,
  .industry-staff-list--leadership {
    grid-template-columns: 1fr;
  }

  .msti-section {
    gap: 45px;
    padding: 60px 0;
  }

  .msti-section__card {
    padding: 34px;
  }
}

@media (max-width: 900px) {
  .industry-content-layout,
  .aviation-pathways {
    grid-template-columns: 1fr !important;
  }

  .industry-content-image img {
    aspect-ratio: 16 / 9;
  }

  .aviation-pathway {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--industry-accent-rgb), .35);
  }

  .aviation-pathway:last-child {
    border-bottom: 0;
  }

  .industry-project-card h3,
  .industry-news-card h3 {
    font-size: 26px;
    min-height: calc(26px * 1.1 * 2);
  }
}

@media (max-width: 760px) {
  .industry-hero__inner,
  .main-container,
  .industry-main-grid,
  .industry-news-section__inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .industry-hero__nav a,
  .industry-data,
  .priority-cards {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .industry-hero-news {
    width: 100%;
    grid-template-columns: 1fr 64px 18px;
    padding: 20px;
  }

  .industry-hero-news picture,
  .industry-hero-news img {
    width: 64px;
    height: 64px;
  }

  .industry-data-card {
    flex-direction: column;
  }

  .industry-project-card img,
  .industry-news-card img {
    height: 180px;
  }

  .industry-committee {
    padding: 0;
  }

  .industry-news-card__meta {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .industry-hero__cards {
    display: none;
  }

  .industry-hero__title {
    align-items: flex-start;
    gap: 18px;
  }

  .industry-hero__icon svg {
    width: 48px;
    height: 48px;
  }

  .industry-manager-modal__dialog {
    padding: 30px 24px;
  }

  .industry-manager-modal__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-manager-modal h2 {
    font-size: 34px;
  }

  .msti-section h2 {
    font-size: 46px;
  }

  .msti-section p {
    font-size: 18px;
  }

  .msti-section__card h3 {
    font-size: 30px;
  }

  .msti-section__steps div {
    font-size: 17px;
  }
}




/* Horizontal case study / news rows */
#case-studies .industry-projects__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}

#case-studies .industry-project-card {
	width: 100%;
	border-radius: 22px;
	overflow: hidden;
}

#case-studies .industry-project-card > a {
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr);
	align-items: stretch;
	min-height: 220px;
}

#case-studies .industry-project-card__image {
	height: 100%;
}

#case-studies .industry-project-card__image picture,
#case-studies .industry-project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto;
}

#case-studies .industry-project-card__content {
	padding: 34px 38px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#case-studies .industry-project-card__content h3 {
	max-width: 780px;
	font-size: clamp(26px, 2.4vw, 38px);
}

#case-studies .industry-project-card__content p {
	max-width: 760px;
}

#case-studies .industry-project-card__arrow {
	position: absolute;
	right: 34px;
	bottom: 28px;
	color: var(--industry-accent);
	font-size: 28px;
}

@media (max-width: 800px) {
	#case-studies .industry-project-card > a {
		grid-template-columns: 1fr;
	}

	#case-studies .industry-project-card__image {
		height: auto;
	}

	#case-studies .industry-project-card__image img {
		aspect-ratio: 16 / 9;
	}
}



#case-studies .industry-projects__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
}

#case-studies .industry-project-card > a {
	display: grid;
	grid-template-columns: 42% 1fr;
	min-height: 360px;
	background: #fff;
	border: 1px solid rgba(7,22,37,.08);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 16px 45px rgba(7,22,37,.08);
}

#case-studies .industry-project-card__image {
	height: 100%;
	min-height: 360px;
}

#case-studies .industry-project-card__image picture,
#case-studies .industry-project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: auto;
}

#case-studies .industry-project-card__status {
	top: 18px;
	right: 18px;
	background: var(--industry-accent);
	color: #fff !important;
}

#case-studies .industry-project-card__content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 64px;
}

#case-studies .industry-project-card__content small {
	color: var(--industry-accent);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
}

#case-studies .industry-project-card__content h3 {
	margin: 18px 0;
	max-width: 760px;
	color: var(--industry-navy);
	font-size: clamp(34px, 4vw, 45px);
	line-height: .95;
	letter-spacing: -.06em;
}

#case-studies .industry-project-card__content p {
	max-width: 720px;
	color: var(--industry-muted);
	font-size: 18px;
	line-height: 1.6;
}

#case-studies .industry-project-card__arrow {
	position: absolute;
	right: 42px;
	bottom: 38px;
	color: var(--industry-accent);
	font-size: 34px;
}

@media (max-width: 900px) {
	#case-studies .industry-project-card > a {
		grid-template-columns: 1fr;
	}

	#case-studies .industry-project-card__image {
		min-height: 240px;
	}

	#case-studies .industry-project-card__content {
		padding: 34px;
	}

	#case-studies .industry-project-card__content h3 {
		font-size: 34px;
	}
}


#case-studies img:is([sizes="auto" i], [sizes^="auto," i]) {
  contain-intrinsic-size: auto;
}


#case-studies .industry-project-card__image,
#case-studies .industry-project-card__image picture,
#case-studies .industry-project-card__image img {
  height: 370px;
  min-height: 0;
}

#case-studies .industry-project-card__image img {
  width: 100%;
  object-fit: cover;
}



.industry-page #projects .industry-section-head small,
.industry-page #projects .industry-section-head a,
.industry-page #projects .industry-section-head a:visited,
.industry-page #projects .industry-section-head a:hover {
	color: var(--industry-accent) !important;
}




#projects.industry-projects--count-1 .industry-projects__row,
.industry-news-row--count-1 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
}

#projects.industry-projects--count-1 .industry-project-card > a,
.industry-news-row--count-1 .industry-news-card > a {
	display: grid;
	grid-template-columns: 42% 1fr;
	min-height: 360px;
	background: #fff;
	border: 1px solid rgba(7,22,37,.08);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 16px 45px rgba(7,22,37,.08);
}

#projects.industry-projects--count-1 .industry-project-card__image,
#projects.industry-projects--count-1 .industry-project-card__image picture,
#projects.industry-projects--count-1 .industry-project-card__image img,
.industry-news-row--count-1 .industry-news-card picture,
.industry-news-row--count-1 .industry-news-card img {
	height: auto;
	width: 100%;
	object-fit: cover;
	aspect-ratio: auto;
	max-height: 560px;
}

#projects.industry-projects--count-1 .industry-project-card__content,
.industry-news-row--count-1 .industry-news-card > a > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 64px;
}

#projects.industry-projects--count-1 .industry-project-card__content h3,
.industry-news-row--count-1 .industry-news-card h3 {
	margin: 18px 0;
	max-width: 760px;
	font-size: clamp(34px, 4vw, 45px);
	line-height: .95;
	letter-spacing: -.06em;
	min-height: 0;
	-webkit-line-clamp: unset;
}

#projects.industry-projects--count-1 .industry-project-card__content p,
.industry-news-row--count-1 .industry-news-card p {
	max-width: 720px;
	font-size: 18px;
	line-height: 1.6;
	-webkit-line-clamp: unset;
}

.industry-news-row--count-1 .industry-news-card__arrow {
	right: 42px;
	bottom: 38px;
	font-size: 34px;
}

@media (max-width: 900px) {
	#projects.industry-projects--count-1 .industry-project-card > a,
	.industry-news-row--count-1 .industry-news-card > a {
		grid-template-columns: 1fr;
	}

	#projects.industry-projects--count-1 .industry-project-card__image,
	#projects.industry-projects--count-1 .industry-project-card__image picture,
	#projects.industry-projects--count-1 .industry-project-card__image img,
	.industry-news-row--count-1 .industry-news-card picture,
	.industry-news-row--count-1 .industry-news-card img {
		height: 240px;
	}

	#projects.industry-projects--count-1 .industry-project-card__content,
	.industry-news-row--count-1 .industry-news-card > a > div {
		padding: 34px;
	}
}


/* ==========================================
   SINGLE DATA CARD = FULL WIDTH
   ========================================== */

.industry-data:has(.industry-data-card:only-child) {
	grid-template-columns: 1fr;
}

.industry-data > .industry-data-card:only-child {
	grid-column: 1 / -1;
}


/* ==========================================
   COMMITTEE ACTION CARDS
   1 card = full width
   2 cards = 2 columns
   3+ cards = existing 3 columns
   ========================================== */

.committee-action-cards:has(> :only-child) {
	grid-template-columns: 1fr;
}

.committee-action-cards:has(> :nth-child(2):last-child) {
	grid-template-columns: repeat(2, 1fr);
}


/* Force industry page project section to use current industry colour */
.industry-page #projects,
.industry-page #projects * {
	--industry-accent: inherit;
	--industry-accent-rgb: inherit;
}

.industry-page #projects .industry-section-head small,
.industry-page #projects .industry-section-head a,
.industry-page #projects .industry-project-card__industry,
.industry-page #projects .industry-project-card__icon,
.industry-page #projects .industry-project-card__cta,
.industry-page #projects .industry-project-card__cta i {
	color: var(--industry-accent) !important;
}

.industry-page #projects .industry-project-card__industry {
	border-color: var(--industry-accent) !important;
	background: rgba(var(--industry-accent-rgb), .12) !important;
}

.industry-page #projects .industry-project-card {
	--industry-accent: var(--page-industry-accent, var(--industry-accent)) !important;
	--industry-accent-rgb: var(--page-industry-accent-rgb, var(--industry-accent-rgb)) !important;
}



.industry-page #projects .industry-project-card__industry {
	color: var(--page-industry-accent, var(--industry-accent)) !important;
	border-color: var(--page-industry-accent, var(--industry-accent)) !important;
	background: rgba(var(--page-industry-accent-rgb, var(--industry-accent-rgb)), .12) !important;
}

.industry-page #projects .industry-project-card__industry:hover {
	background: rgba(var(--page-industry-accent-rgb, var(--industry-accent-rgb)), .18) !important;
}