.applications-section { padding-bottom: 120px; }

.applications-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  gap: 34px;
}

.application-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.application-visual::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(2, 12, 28, .82));
}

.application-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-visual > div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.application-visual > div b {
  font: 700 28px/1 var(--display);
}

.application-visual > div span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.application-list {
  border-top: 1px solid var(--line);
  display: grid;
}

.application-list article {
  min-height: 150px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 52px 150px 1fr;
  gap: 20px;
  align-items: center;
}

.application-list article > span {
  color: var(--accent);
  font: 650 11px/1 var(--display);
}

.application-list h3 {
  margin: 0;
  font: 680 22px/1.2 var(--display);
}

.application-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.team-evidence {
  width: 100%;
  min-height: 700px;
  color: white;
  background: var(--dark);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
}

.team-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, rgba(4, 14, 31, .68));
}

.team-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-copy {
  padding: 100px clamp(42px, 6vw, 110px);
  align-self: center;
}

.team-copy h2,
.career-image-band h2 {
  margin: 0;
  font: 720 clamp(40px, 4.6vw, 72px)/1.08 var(--heading);
  letter-spacing: -.018em;
}

.team-copy > p:not(.section-kicker) {
  max-inline-size: 34em;
  margin: 28px 0;
  color: rgba(255, 255, 255, .64);
  line-height: 1.9;
}

.proof-grid {
  margin: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.proof-grid span {
  min-height: 100px;
  padding: 20px 20px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.proof-grid span:nth-child(even) {
  padding-left: 20px;
  border-right: 0;
}

.proof-grid b { font-size: 15px; }
.proof-grid small { color: rgba(255, 255, 255, .46); line-height: 1.5; }
.team-copy .text-link { color: color-mix(in srgb, var(--accent) 72%, white); }

.career-image-band {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: white;
}

.career-image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 13, 29, .84), rgba(3, 13, 29, .12));
}

.career-image-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-image-band > div {
  position: absolute;
  left: max(32px, calc((100vw - var(--max)) / 2));
  top: 50%;
  z-index: 2;
  max-width: 680px;
  transform: translateY(-50%);
}

body[data-theme="qin"] .application-visual img,
body[data-theme="qin"] .team-image img,
body[data-theme="qin"] .career-image-band > img {
  filter: saturate(.76) sepia(.08);
}

body[data-theme="qin"] .team-evidence {
  background:
    radial-gradient(circle at 82% 24%, rgba(164, 73, 40, .18), transparent 28%),
    var(--dark);
}

body[data-theme="engine"] .application-visual,
body[data-theme="engine"] .team-evidence,
body[data-theme="engine"] .career-image-band {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

body[data-theme="engine"] .application-visual img,
body[data-theme="engine"] .team-image img,
body[data-theme="engine"] .career-image-band > img {
  filter: saturate(.66) contrast(1.08);
}

body[data-theme="horizon"] .team-evidence {
  background:
    radial-gradient(circle at 85% 25%, rgba(49, 88, 214, .18), transparent 30%),
    var(--dark);
}

@media (max-width: 1024px) {
  .applications-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .application-list article {
    grid-template-columns: 42px 1fr;
    min-height: 180px;
    padding-right: 24px;
  }
  .application-list p { grid-column: 2; }
  .team-evidence { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 767px) {
  .applications-layout { grid-template-columns: 1fr; }
  .application-visual { min-height: 410px; }
  .application-visual > div { left: 20px; right: 20px; bottom: 56px; flex-direction: column; align-items: flex-start; }
  .application-list { grid-template-columns: 1fr; }
  .team-evidence { grid-template-columns: 1fr; }
  .team-image { min-height: 430px; }
  .team-image::after { background: linear-gradient(0deg, rgba(4, 14, 31, .5), transparent); }
  .team-copy { padding: 70px 20px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid span,
  .proof-grid span:nth-child(even) {
    padding: 20px 0;
    border-right: 0;
  }
  .career-image-band { min-height: 520px; }
  .career-image-band > div { left: 20px; right: 20px; }
}

/* Brand identity proposal */

.brand-proposal-intro {
  padding-bottom: 96px;
}

.brand-criteria-grid {
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-criterion {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .54);
}

.brand-criterion > span {
  color: var(--accent);
  font: 650 11px/1 var(--display);
  letter-spacing: .14em;
}

.brand-criterion h3 {
  margin: 58px 0 12px;
  font: 680 24px/1.2 var(--heading);
}

.brand-criterion p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.logo-concept-list {
  border-top: 1px solid var(--line);
}

.logo-concept {
  padding: 112px 0 120px;
  border-bottom: 1px solid var(--line);
}

.logo-concept:nth-child(even) {
  background: #eef3f9;
}

.logo-concept-heading,
.logo-concept-main,
.vi-application-board {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.logo-concept-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(280px, .62fr);
  gap: 34px;
  align-items: end;
}

.logo-concept-heading > div {
  display: grid;
  gap: 14px;
}

.logo-concept-heading > div > span {
  color: var(--accent);
  font: 760 56px/.8 var(--display);
  letter-spacing: -.06em;
}

.logo-concept-heading > div > p {
  margin: 0;
  color: var(--faint);
  font: 650 10px/1.35 var(--display);
  letter-spacing: .13em;
}

.logo-concept-heading h2 {
  margin: 0;
  font: 720 clamp(48px, 6vw, 80px)/1 var(--heading);
  letter-spacing: -.018em;
}

.logo-concept-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.logo-concept-main {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
}

.logo-mark-stage {
  position: relative;
  min-height: 500px;
  padding: 70px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 23, 47, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 47, .045) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
  display: grid;
  place-items: center;
}

.logo-mark-stage::before,
.logo-mark-stage::after {
  content: "";
  position: absolute;
  background: rgba(23, 104, 242, .2);
}

.logo-mark-stage::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.logo-mark-stage::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.logo-mark-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  aspect-ratio: 1;
  object-fit: contain;
}

.logo-mark-stage > span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--faint);
  font: 650 10px/1 var(--display);
  letter-spacing: .1em;
}

.logo-concept-copy > p {
  max-inline-size: 34em;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.logo-lockup-sample {
  min-height: 132px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: white;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-lockup-sample img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-lockup-sample > div {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.logo-lockup-sample b {
  color: var(--ink);
  font: 750 clamp(24px, 3vw, 34px)/1 var(--heading);
  letter-spacing: .08em;
  white-space: nowrap;
}

.logo-lockup-sample span {
  color: var(--muted);
  font: 650 10px/1 var(--display);
  letter-spacing: .13em;
  white-space: nowrap;
}

.concept-assessment {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.concept-assessment > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 20px;
}

.concept-assessment dt {
  color: var(--faint);
  font-size: 12px;
}

.concept-assessment dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.concept-assessment dd span {
  display: inline-block;
  margin: 0 16px 5px 0;
  color: var(--ink);
  font-weight: 650;
}

.concept-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
}

.concept-palette > span {
  color: var(--ink);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.concept-palette i {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7, 23, 47, .12);
  background: var(--swatch);
  display: inline-block;
}

.concept-palette small {
  color: var(--faint);
  font: 600 10px/1 var(--display);
}

.vi-application-board {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.25fr .75fr .82fr;
  gap: 14px;
}

.vi-application-board > div {
  min-height: 230px;
  border: 1px solid var(--line);
}

.vi-header-sample {
  padding: 28px;
  background: white;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.vi-lockup-mini {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vi-lockup-mini img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.vi-lockup-mini > span {
  display: grid;
  gap: 4px;
}

.vi-lockup-mini b {
  font: 730 18px/1 var(--heading);
  letter-spacing: .06em;
  white-space: nowrap;
}

.vi-lockup-mini small {
  color: var(--faint);
  font: 650 6px/1 var(--display);
  letter-spacing: .12em;
}

.vi-header-sample > i {
  width: 30px;
  height: 2px;
  margin-top: 20px;
  background: rgba(7, 23, 47, .18);
}

.vi-badge-sample {
  padding: 30px;
  color: white;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vi-badge-sample img {
  width: 76px;
  height: 76px;
  padding: 8px;
  object-fit: contain;
  background: white;
}

.vi-badge-sample > span {
  display: grid;
  gap: 8px;
}

.vi-badge-sample small {
  color: rgba(255, 255, 255, .7);
  font: 650 9px/1 var(--display);
  letter-spacing: .14em;
}

.vi-badge-sample b {
  font: 690 20px/1.2 var(--heading);
}

.vi-plate-sample {
  padding: 28px;
  background: #dde3eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vi-plate-sample > span,
.vi-plate-sample > small {
  color: #5e6976;
  font: 650 9px/1 var(--display);
  letter-spacing: .12em;
}

.vi-plate-sample img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  align-self: center;
}

.brand-next-steps ol {
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-next-steps li {
  min-height: 220px;
  padding: 24px 20px 24px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-next-steps li + li {
  padding-left: 20px;
}

.brand-next-steps li:last-child {
  border-right: 0;
}

.brand-next-steps li > span {
  color: var(--accent);
  font: 650 11px/1 var(--display);
}

.brand-next-steps li b {
  margin-top: 70px;
  font: 680 19px/1.2 var(--heading);
  display: block;
}

.brand-next-steps li p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.brand-proposal-note {
  margin: 28px 0 0;
  color: var(--faint);
  font-size: 12px;
}

@media (max-width: 1024px) {
  .brand-criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-concept-heading {
    grid-template-columns: 90px minmax(0, 1fr);
  }
  .logo-concept-heading > p {
    grid-column: 2;
  }
  .logo-concept-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .logo-mark-stage {
    min-height: 520px;
  }
  .vi-application-board {
    grid-template-columns: 1.2fr .8fr;
  }
  .vi-plate-sample {
    grid-column: 1 / -1;
    min-height: 210px;
  }
  .brand-next-steps ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-next-steps li:nth-child(even) {
    border-right: 0;
  }
  .brand-next-steps li:last-child {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 767px) {
  .brand-proposal-intro {
    padding-bottom: 76px;
  }
  .brand-criteria-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }
  .brand-criterion {
    min-height: 178px;
    padding: 24px;
  }
  .brand-criterion h3 {
    margin-top: 40px;
  }
  .logo-concept {
    padding: 76px 0 84px;
  }
  .logo-concept-heading,
  .logo-concept-main,
  .vi-application-board {
    width: calc(100% - 36px);
  }
  .logo-concept-heading {
    margin-bottom: 36px;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
  }
  .logo-concept-heading > div > span {
    font-size: 40px;
  }
  .logo-concept-heading > div > p {
    font-size: 8px;
    letter-spacing: .08em;
  }
  .logo-concept-heading h2 {
    font-size: 44px;
  }
  .logo-concept-heading > p {
    grid-column: 1 / -1;
    font-size: 15px;
  }
  .logo-mark-stage {
    min-height: 350px;
    padding: 46px;
    background-size: 24px 24px;
  }
  .logo-lockup-sample {
    padding: 20px;
    gap: 16px;
  }
  .logo-lockup-sample img {
    width: 58px;
    height: 58px;
  }
  .logo-lockup-sample b {
    font-size: 24px;
  }
  .logo-lockup-sample span {
    font-size: 7px;
    letter-spacing: .08em;
  }
  .concept-assessment > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .concept-palette {
    display: grid;
  }
  .vi-application-board {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }
  .vi-application-board > div {
    min-height: 210px;
  }
  .vi-plate-sample {
    grid-column: auto;
  }
  .brand-next-steps ol {
    grid-template-columns: 1fr;
  }
  .brand-next-steps li,
  .brand-next-steps li + li,
  .brand-next-steps li:last-child {
    min-height: 178px;
    padding: 22px 0;
    border-right: 0;
  }
  .brand-next-steps li b {
    margin-top: 42px;
  }
}

@media (max-width: 390px) {
  .logo-concept-heading,
  .logo-concept-main,
  .vi-application-board {
    width: calc(100% - 32px);
  }
  .logo-mark-stage {
    min-height: 320px;
    padding: 38px;
  }
  .vi-header-sample {
    padding: 22px;
  }
  .vi-header-sample > i {
    width: 18px;
  }
}

/* Industry insights */

body[data-page="industry"] .page-hero {
  min-height: 500px;
  background:
    linear-gradient(105deg, rgba(5, 20, 43, .96), rgba(11, 45, 88, .86)),
    radial-gradient(circle at 82% 32%, rgba(44, 104, 230, .48), transparent 36%);
}

.industry-intro {
  padding-top: 88px;
  padding-bottom: 72px;
}

.industry-article-list {
  background: #f4f7fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-article + .industry-article {
  border-top: 1px solid var(--line);
}

.industry-article-header {
  padding-top: 92px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 44px;
}

.industry-article-sequence {
  padding-top: 8px;
  color: var(--accent);
  font: 700 13px/1 var(--display);
  letter-spacing: .16em;
}

.industry-article-meta {
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  color: var(--muted);
  font: 600 12px/1.4 var(--display);
  letter-spacing: .06em;
}

.industry-article-meta span {
  color: var(--accent);
}

.industry-article-meta b {
  padding: 7px 10px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  font-weight: 600;
  letter-spacing: .02em;
}

.industry-article-header h2 {
  max-inline-size: 18em;
  margin: 0;
  font: 720 clamp(38px, 4.3vw, 64px)/1.12 var(--heading);
  letter-spacing: -.03em;
  text-wrap: balance;
}

.industry-article-lead {
  max-inline-size: 47em;
  margin: 34px 0 0;
  color: #34445a;
  font-size: 17px;
  line-height: 1.95;
  text-wrap: pretty;
}

.industry-topic-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-topic-list li {
  padding: 8px 12px;
  color: #315072;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #d9e2ee;
  font-size: 12px;
}

.industry-article-layout {
  padding-top: 0;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 78px;
  align-items: start;
}

.industry-article-body {
  border-top: 1px solid #cfd9e6;
}

.industry-copy-section {
  position: relative;
  padding: 44px 0 48px 64px;
  border-bottom: 1px solid #cfd9e6;
}

.industry-copy-section > span {
  position: absolute;
  top: 49px;
  left: 0;
  color: var(--accent);
  font: 700 11px/1 var(--display);
  letter-spacing: .12em;
}

.industry-copy-section h3 {
  margin: 0 0 24px;
  font: 700 26px/1.35 var(--heading);
  letter-spacing: -.015em;
  text-wrap: balance;
}

.industry-copy-section p {
  max-inline-size: 43em;
  margin: 0;
  color: #34445a;
  font-size: 16px;
  line-height: 2;
  text-wrap: pretty;
}

.industry-copy-section p + p {
  margin-top: 18px;
}

.industry-copy-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.industry-copy-section li {
  position: relative;
  padding: 16px 18px 16px 46px;
  color: #263b55;
  background: white;
  border: 1px solid #d8e1ec;
  line-height: 1.75;
}

.industry-copy-section li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 20px;
  width: 10px;
  height: 2px;
  background: var(--accent);
}

.industry-reference-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
  background: white;
  border-top: 3px solid var(--accent);
  box-shadow: 0 18px 54px rgba(13, 39, 74, .08);
}

.industry-reference-panel h3 {
  margin: 10px 0 26px;
  font: 700 24px/1.2 var(--heading);
}

.industry-reference-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-reference-panel li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.industry-reference-panel li span {
  display: block;
  margin-bottom: 7px;
  color: var(--faint);
  font: 600 10px/1.3 var(--display);
  letter-spacing: .12em;
}

.industry-reference-panel li a {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
  text-decoration: none;
}

.industry-reference-panel li a:hover {
  color: var(--accent);
}

.industry-reference-panel > p:last-child {
  margin: 22px 0 0;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.75;
}

.industry-policy {
  padding-top: 86px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 180px minmax(260px, .8fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.industry-policy h2 {
  margin: 0;
  font: 710 34px/1.2 var(--heading);
  letter-spacing: -.02em;
  text-wrap: balance;
}

.industry-policy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  text-wrap: pretty;
}

@media (max-width: 1024px) {
  .industry-article-header {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 28px;
  }
  .industry-article-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .industry-reference-panel {
    position: static;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 0 28px;
  }
  .industry-reference-panel .section-kicker,
  .industry-reference-panel h3 {
    grid-column: 1;
  }
  .industry-reference-panel ol,
  .industry-reference-panel > p:last-child {
    grid-column: 2;
  }
  .industry-reference-panel ol {
    grid-row: 1 / span 3;
  }
  .industry-policy {
    grid-template-columns: 120px minmax(0, 1fr);
  }
  .industry-policy > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  body[data-page="industry"] .page-hero {
    min-height: 430px;
  }
  .industry-intro {
    padding-top: 64px;
    padding-bottom: 54px;
  }
  .industry-article-header {
    padding-top: 64px;
    padding-bottom: 52px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .industry-article-header h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .industry-article-lead {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.85;
  }
  .industry-article-layout {
    padding-bottom: 72px;
    gap: 42px;
  }
  .industry-copy-section {
    padding: 34px 0 38px 38px;
  }
  .industry-copy-section > span {
    top: 40px;
  }
  .industry-copy-section h3 {
    font-size: 23px;
  }
  .industry-copy-section p {
    font-size: 15px;
    line-height: 1.9;
  }
  .industry-copy-section li {
    padding: 14px 16px 14px 40px;
  }
  .industry-reference-panel {
    padding: 24px;
    display: block;
  }
  .industry-reference-panel ol {
    margin-top: 24px;
  }
  .industry-policy {
    padding-top: 64px;
    padding-bottom: 72px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .industry-policy > p:last-child {
    grid-column: auto;
  }
}

/* Industry journal */

body[data-page="industry"] .inner-page {
  color: #182333;
  background: #f7f5ef;
}

body[data-page="industry"] .prototype-badge {
  display: none;
}

.industry-masthead {
  background: #f1eee7;
  border-bottom: 1px solid #d8d4cb;
}

.industry-masthead-inner {
  min-height: 300px;
  padding-top: 64px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 72px;
  align-items: end;
}

.industry-masthead-inner div > p {
  margin: 0 0 18px;
  color: #315f91;
  font: 650 10px/1 var(--display);
  letter-spacing: .18em;
}

.industry-masthead h1 {
  margin: 0;
  font: 710 clamp(48px, 5vw, 70px)/1 var(--heading);
  letter-spacing: -.035em;
}

.industry-masthead-inner > p {
  max-inline-size: 28em;
  margin: 0 0 4px;
  color: #56606b;
  font-size: 15px;
  line-height: 1.9;
}

.journal-article-list {
  background: #fbfaf7;
}

.journal-article + .journal-article {
  border-top: 1px solid #d8d4cb;
}

.journal-article-header {
  padding-top: 108px;
  padding-bottom: 76px;
  border-bottom: 1px solid #d8d4cb;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  column-gap: 44px;
}

.journal-article-kicker {
  grid-column: 1;
  grid-row: 1 / span 4;
  margin: 9px 0 0;
  color: #315f91;
  font: 650 12px/1.5 var(--heading);
  letter-spacing: .08em;
}

.journal-article-header h2,
.journal-article-lead,
.journal-article-meta {
  grid-column: 2;
}

.journal-article-header h2 {
  max-inline-size: 17em;
  margin: 0;
  font: 700 clamp(42px, 4.2vw, 60px)/1.2 var(--heading);
  letter-spacing: -.032em;
  text-wrap: balance;
}

.journal-article-header h2 > span {
  display: block;
}

.journal-article-lead {
  max-inline-size: 45em;
  margin: 36px 0 0;
  color: #3d4854;
  font-size: 18px;
  line-height: 1.95;
  text-wrap: pretty;
}

.journal-article-meta {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid #dedad2;
  display: flex;
  gap: 24px;
  color: #6b737b;
  font-size: 12px;
  line-height: 1.5;
}

.journal-article-meta time {
  color: #283747;
  font-weight: 650;
}

.journal-article-layout {
  padding-top: 0;
  padding-bottom: 0;
}

.journal-article-body {
  width: min(calc(100% - 204px), 760px);
  margin-left: 204px;
}

.journal-copy-section {
  padding: 58px 0 62px;
  border-bottom: 1px solid #dedad2;
}

.journal-copy-section h3 {
  margin: 0 0 26px;
  color: #182333;
  font: 690 27px/1.45 var(--heading);
  letter-spacing: -.012em;
}

.journal-copy-section p {
  margin: 0;
  color: #35414d;
  font-size: 17px;
  line-height: 2.05;
  text-align: justify;
  text-justify: inter-ideograph;
  text-wrap: pretty;
}

.journal-copy-section p + p {
  margin-top: 20px;
}

.journal-copy-section ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  border-top: 1px solid #dedad2;
}

.journal-copy-section li {
  padding: 17px 0;
  color: #35414d;
  border-bottom: 1px solid #dedad2;
  font-size: 16px;
  line-height: 1.85;
}

.journal-copy-section li::marker {
  color: #315f91;
  font: 650 12px/1 var(--display);
}

.journal-sources {
  margin-top: 48px;
  padding-top: 48px;
  padding-bottom: 104px;
  border-top: 2px solid #223248;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 64px;
}

.journal-sources > div > p {
  margin: 0 0 12px;
  color: #315f91;
  font: 650 9px/1 var(--display);
  letter-spacing: .18em;
}

.journal-sources h3 {
  margin: 0 0 22px;
  font: 690 26px/1.3 var(--heading);
}

.journal-sources small {
  display: block;
  color: #66707a;
  font-size: 12px;
  line-height: 1.8;
}

.journal-sources ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
}

.journal-sources li {
  min-width: 0;
  padding: 16px 0;
  border-top: 1px solid #dedad2;
}

.journal-sources li span {
  display: block;
  margin-bottom: 7px;
  color: #747c84;
  font-size: 10px;
  line-height: 1.3;
}

.journal-sources li a {
  color: #26384b;
  font-size: 13px;
  line-height: 1.65;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.journal-sources li a:hover,
.journal-sources li a:focus-visible {
  color: #225f9b;
  text-decoration-color: currentColor;
}

@media (max-width: 1024px) {
  .industry-masthead-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
  }
  .journal-article-header {
    grid-template-columns: 120px minmax(0, 1fr);
    column-gap: 36px;
  }
  .journal-article-body {
    width: min(calc(100% - 156px), 720px);
    margin-left: 156px;
  }
  .journal-sources {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 46px;
  }
}

@media (max-width: 767px) {
  .industry-masthead-inner {
    min-height: 240px;
    padding-top: 46px;
    padding-bottom: 44px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .industry-masthead h1 {
    font-size: 48px;
  }
  .industry-masthead-inner > p {
    max-inline-size: 22em;
    font-size: 14px;
    line-height: 1.8;
  }
  .journal-article-header {
    padding-top: 66px;
    padding-bottom: 50px;
    display: block;
  }
  .journal-article-kicker {
    margin: 0 0 18px;
  }
  .journal-article-header h2 {
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: 1.23;
  }
  .journal-article-lead {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.9;
  }
  .journal-article-meta {
    margin-top: 28px;
    justify-content: space-between;
  }
  .journal-article-body {
    width: 100%;
    margin-left: 0;
  }
  .journal-copy-section {
    padding: 42px 0 46px;
  }
  .journal-copy-section h3 {
    margin-bottom: 20px;
    font-size: 23px;
  }
  .journal-copy-section p {
    font-size: 15.5px;
    line-height: 1.95;
    text-align: left;
  }
  .journal-copy-section li {
    padding: 14px 0;
    font-size: 15px;
  }
  .journal-sources {
    margin-top: 40px;
    padding-top: 38px;
    padding-bottom: 74px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .journal-sources ol {
    grid-template-columns: 1fr;
  }
}

/* Industry index and article detail */

body[data-page="industry"] .inner-page {
  color: var(--ink);
  background: var(--paper);
}

body[data-page="industry"] .prototype-badge {
  display: inline-block;
}

body[data-page="industry"] .page-hero {
  min-height: 520px;
  background:
    linear-gradient(100deg, rgba(5, 19, 43, .98), rgba(8, 30, 66, .88)),
    url("hero-stratosphere-v2.webp") center / cover;
}

.industry-index {
  padding-top: 94px;
  padding-bottom: 118px;
}

.industry-index-head {
  padding-bottom: 46px;
  border-bottom: 2px solid var(--ink);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
  gap: 80px;
  align-items: end;
}

.industry-index-head h2 {
  margin: 0;
  font: 710 clamp(38px, 4.2vw, 58px)/1.12 var(--heading);
  letter-spacing: -.018em;
}

.industry-index-head > p {
  max-inline-size: 40em;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  text-wrap: pretty;
}

.industry-feed-item {
  min-height: 232px;
  padding: 42px 0 44px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 116px;
  gap: 42px;
  align-items: start;
}

.industry-feed-meta {
  display: grid;
  gap: 13px;
  color: var(--muted);
  font: 600 12px/1.4 var(--display);
  letter-spacing: .06em;
}

.industry-feed-meta span {
  color: var(--accent);
}

.industry-feed-copy h3 {
  max-inline-size: 25em;
  margin: 0;
  font: 700 clamp(27px, 2.7vw, 38px)/1.3 var(--heading);
  letter-spacing: -.018em;
  text-wrap: pretty;
}

.industry-feed-copy h3 a {
  color: var(--ink);
  text-decoration: none;
}

.industry-feed-copy h3 a:hover,
.industry-feed-copy h3 a:focus-visible {
  color: var(--accent);
}

.industry-feed-copy p {
  max-inline-size: 50em;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  text-wrap: pretty;
}

.industry-feed-link {
  min-height: 44px;
  padding-top: 3px;
  color: var(--ink);
  border-top: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  text-decoration: none;
}

.industry-feed-link b {
  color: var(--accent);
  font: 500 19px/1 var(--display);
}

.industry-detail {
  background: var(--paper);
}

.industry-detail-shell {
  padding-top: 58px;
  padding-bottom: 110px;
}

.industry-breadcrumb {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.industry-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.industry-detail-header {
  max-width: 970px;
  padding: 78px 0 70px;
}

.industry-detail-meta {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font: 600 12px/1.4 var(--display);
  letter-spacing: .06em;
}

.industry-detail-meta span {
  color: var(--accent);
}

.industry-detail-header h1 {
  max-inline-size: 17em;
  margin: 0;
  font: 720 clamp(44px, 5.2vw, 70px)/1.16 var(--heading);
  letter-spacing: -.026em;
  text-wrap: pretty;
}

.industry-detail-header h1 > span {
  display: block;
}

.industry-detail-header > p {
  max-inline-size: 48em;
  margin: 34px 0 0;
  color: #34445a;
  font-size: 18px;
  line-height: 1.95;
  text-wrap: pretty;
}

.industry-detail-body {
  width: min(calc(100% - 180px), 760px);
  margin-left: 180px;
  border-top: 2px solid var(--ink);
}

.industry-detail-section {
  padding: 52px 0 56px;
  border-bottom: 1px solid var(--line);
}

.industry-detail-section h2 {
  margin: 0 0 26px;
  font: 700 27px/1.4 var(--heading);
  letter-spacing: -.012em;
}

.industry-detail-section p {
  margin: 0;
  color: #34445a;
  font-size: 17px;
  line-height: 2.05;
  text-align: justify;
  text-justify: inter-ideograph;
  text-wrap: pretty;
}

.industry-detail-section p + p {
  margin-top: 20px;
}

.industry-detail-section ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  border-top: 1px solid var(--line);
}

.industry-detail-section li {
  padding: 16px 0;
  color: #34445a;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.9;
}

.industry-detail-section li::marker {
  color: var(--accent);
  font: 650 12px/1 var(--display);
}

.industry-detail-sources {
  margin-top: 58px;
  padding: 48px 0 54px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
}

.industry-detail-sources h2 {
  margin: 0 0 20px;
  font: 700 28px/1.3 var(--heading);
}

.industry-detail-sources > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.industry-detail-sources ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
}

.industry-detail-sources li {
  min-width: 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.industry-detail-sources li span {
  display: block;
  margin-bottom: 7px;
  color: var(--faint);
  font-size: 10px;
}

.industry-detail-sources li a {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.industry-detail-sources li a:hover,
.industry-detail-sources li a:focus-visible {
  color: var(--accent);
  text-decoration-color: currentColor;
}

.industry-back-link {
  margin-top: 36px;
  color: var(--accent);
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .industry-index-head {
    grid-template-columns: minmax(0, .7fr) minmax(320px, 1.3fr);
    gap: 48px;
  }
  .industry-feed-item {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 30px;
  }
  .industry-feed-link {
    grid-column: 2;
    max-width: 116px;
  }
  .industry-detail-body {
    width: min(calc(100% - 120px), 720px);
    margin-left: 120px;
  }
  .industry-detail-sources {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 44px;
  }
}

@media (max-width: 767px) {
  body[data-page="industry"] .prototype-badge {
    display: none;
  }
  body[data-page="industry"] .page-hero {
    min-height: 430px;
  }
  .industry-index {
    padding-top: 66px;
    padding-bottom: 78px;
  }
  .industry-index-head {
    padding-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .industry-index-head > p {
    font-size: 15px;
  }
  .industry-feed-item {
    min-height: 0;
    padding: 32px 0 36px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .industry-feed-meta {
    display: flex;
    justify-content: space-between;
  }
  .industry-feed-copy h3 {
    font-size: 27px;
  }
  .industry-feed-copy p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }
  .industry-feed-link {
    grid-column: auto;
    width: 116px;
  }
  .industry-detail-shell {
    padding-top: 34px;
    padding-bottom: 78px;
  }
  .industry-detail-header {
    padding: 54px 0 48px;
  }
  .industry-detail-header h1 {
    font-size: clamp(36px, 9.4vw, 46px);
    line-height: 1.23;
  }
  .industry-detail-header > p {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.9;
  }
  .industry-detail-body {
    width: 100%;
    margin-left: 0;
  }
  .industry-detail-section {
    padding: 40px 0 44px;
  }
  .industry-detail-section h2 {
    margin-bottom: 20px;
    font-size: 23px;
  }
  .industry-detail-section p {
    font-size: 15.5px;
    line-height: 1.95;
    text-align: left;
  }
  .industry-detail-section li {
    font-size: 15px;
  }
  .industry-detail-sources {
    margin-top: 42px;
    padding-top: 38px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .industry-detail-sources ol {
    grid-template-columns: 1fr;
  }
}

/* Content preparation */

body[data-page="materials"] .page-hero {
  min-height: 460px;
  padding-top: 112px;
  padding-bottom: 78px;
}

.material-ready-section {
  padding-top: 76px;
  padding-bottom: 52px;
}

.material-request-grid,
.material-ongoing-grid {
  margin-top: 40px;
  display: grid;
}

.material-ready-strip {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.material-ready-strip > span {
  min-height: 86px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}

.material-ready-strip > span:last-child {
  border-right: 0;
}

.material-ready-strip i {
  color: var(--accent);
  font: normal 650 10px/1 var(--display);
}

.material-ready-strip b {
  font: 650 15px/1.4 var(--heading);
}

.material-priority-section {
  width: 100%;
  max-width: none;
  padding: 88px max(32px, calc((100vw - var(--max)) / 2)) 96px;
  background: #eaf2ff;
}

.material-priority-section .section-kicker {
  color: #0b56df;
}

.material-priority-section .section-head > p {
  color: #3f587b;
}

.material-request-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.material-request-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(23, 104, 242, .2);
  border-top: 4px solid var(--accent);
  background: white;
  transition: transform .24s ease, border-color .24s ease;
}

.material-request-card:hover {
  border-color: rgba(23, 104, 242, .44);
  transform: translateY(-3px);
}

.material-request-card > span,
.material-ongoing-grid article > span {
  color: var(--accent);
  font: 650 11px/1 var(--display);
  letter-spacing: .12em;
}

.material-request-card h3,
.material-ongoing-grid h3 {
  margin: 48px 0 13px;
  font: 690 23px/1.25 var(--heading);
}

.material-request-card p,
.material-ongoing-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
  font-size: 13px;
}

.material-map-section {
  padding-top: 82px;
  padding-bottom: 58px;
}

.material-map-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.material-map-list article {
  min-height: 104px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 160px minmax(220px, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
}

.material-map-list article > span {
  color: var(--accent);
  font: 650 11px/1 var(--display);
}

.material-map-list h3 {
  margin: 0;
  font: 680 22px/1.2 var(--heading);
}

.material-map-list b {
  font-size: 14px;
  line-height: 1.6;
}

.material-map-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.material-ongoing-section {
  padding-top: 64px;
  padding-bottom: 76px;
}

.material-ongoing-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.material-ongoing-grid article {
  min-height: 188px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .56);
}

.material-ongoing-grid h3 {
  margin-top: 38px;
}

.material-later-section {
  padding-top: 18px;
  padding-bottom: 86px;
}

.material-later-card {
  min-height: 226px;
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  background: white;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: center;
}

.material-later-card h2 {
  margin: 0;
  font: 720 clamp(36px, 4vw, 54px)/1.05 var(--heading);
  letter-spacing: -.018em;
}

.material-later-card > div:last-child > p {
  max-inline-size: 34em;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.material-later-card small {
  color: var(--faint);
}

@media (max-width: 1024px) {
  .material-request-grid,
  .material-ongoing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .material-ready-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .material-ready-strip > span:nth-child(2) {
    border-right: 0;
  }
  .material-ready-strip > span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .material-map-list article {
    grid-template-columns: 54px 150px minmax(0, 1fr);
  }
  .material-map-list article > p {
    grid-column: 3;
  }
  .material-later-card {
    grid-template-columns: minmax(200px, .7fr) minmax(0, 1.3fr);
    gap: 38px;
  }
}

@media (max-width: 767px) {
  body[data-page="materials"] .page-hero {
    min-height: 390px;
    padding-top: 86px;
    padding-bottom: 58px;
  }
  .material-ready-section {
    padding-top: 60px;
    padding-bottom: 34px;
  }
  .material-request-grid,
  .material-ongoing-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
  .material-ready-strip {
    margin-top: 26px;
    grid-template-columns: 1fr;
  }
  .material-ready-strip > span,
  .material-ready-strip > span:nth-child(2) {
    min-height: 64px;
    padding: 15px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .material-ready-strip > span:last-child {
    border-bottom: 0;
  }
  .material-priority-section {
    padding: 68px 20px 72px;
  }
  .material-request-card {
    min-height: 222px;
    padding: 24px;
  }
  .material-request-card h3 {
    margin-top: 40px;
  }
  .material-map-section,
  .material-ongoing-section {
    width: calc(100% - 36px);
  }
  .material-map-section {
    padding-top: 66px;
    padding-bottom: 40px;
  }
  .material-map-list {
    margin-top: 28px;
  }
  .material-map-list article {
    min-height: 0;
    padding: 20px 0 22px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px 16px;
  }
  .material-map-list article > b,
  .material-map-list article > p {
    grid-column: 2;
  }
  .material-ongoing-section {
    padding-top: 52px;
    padding-bottom: 58px;
  }
  .material-ongoing-grid article {
    min-height: 176px;
    padding: 22px;
  }
  .material-ongoing-grid h3 {
    margin-top: 34px;
  }
  .material-later-section {
    width: calc(100% - 36px);
    padding-top: 0;
    padding-bottom: 66px;
  }
  .material-later-card {
    min-height: 0;
    padding: 30px 26px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .material-later-card h2 {
    font-size: 36px;
  }
}

@media (max-width: 390px) {
  .material-map-section,
  .material-ongoing-section,
  .material-later-section {
    width: calc(100% - 32px);
  }
  .material-priority-section {
    padding-inline: 16px;
  }
}
