.content-body {
  background: #ffffff;
}

.content-page {
  color: var(--ink);
}

.content-page h1,
.content-page h2,
.content-page h3 {
  text-wrap: balance;
}

.content-page p {
  text-wrap: pretty;
}

.content-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.content-hero {
  position: relative;
  display: grid;
  min-height: clamp(460px, calc(100vh - 250px), 600px);
  overflow: hidden;
  color: #ffffff;
  background: var(--green);
  isolation: isolate;
}

.content-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 23, 19, 0.78) 0%, rgba(5, 23, 19, 0.55) 48%, rgba(5, 23, 19, 0.16) 80%),
    rgba(5, 23, 19, 0.12);
}

.content-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.content-hero-media img {
  height: 100%;
  object-fit: cover;
}

.news-hero .content-hero-media img {
  object-position: center 48%;
}

.about-hero .content-hero-media img {
  object-position: center 55%;
}

.content-hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: clamp(42px, 5vw, 64px) 0;
}

.content-hero .content-kicker {
  color: #8ce7de;
}

.content-hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: 0;
}

.content-hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.68;
}

.content-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content-hero .button {
  min-height: 48px;
}

.content-hero .button.primary {
  color: var(--green);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 16px 34px rgba(5, 23, 19, 0.24);
}

.content-hero .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px) saturate(135%);
}

.content-hero .button:active,
.text-action:active,
.news-filter:active,
.news-item-open:active {
  transform: scale(0.98);
  transition-duration: 90ms;
}

.content-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  align-items: end;
  gap: clamp(40px, 7vw, 96px);
  margin-bottom: clamp(36px, 5vw, 58px);
}

.content-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.12;
}

.content-section-heading > p {
  max-width: 64ch;
  margin-bottom: 2px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
}

.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 44px;
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 160ms var(--motion),
    transform 160ms var(--motion);
}

.text-action > span:last-child {
  font-size: 20px;
  transition: transform 200ms var(--motion);
}

.text-action:hover > span:last-child,
.text-action:focus-visible > span:last-child {
  transform: translateX(6px);
}

.text-action:focus-visible,
.news-filter:focus-visible,
.news-item-open:focus-visible,
.article-dialog-close:focus-visible {
  outline: 3px solid rgba(19, 168, 158, 0.28);
  outline-offset: 3px;
}

/* News */

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(340px, 0.74fr);
  align-items: stretch;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 clamp(82px, 9vw, 118px);
  border-bottom: 1px solid var(--line);
}

.news-feature-media {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
}

.news-feature-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 650ms var(--motion);
}

.news-feature:hover .news-feature-media img {
  transform: scale(1.018);
}

.news-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-meta span:first-child {
  color: var(--teal);
}

.news-feature-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
}

.news-feature-copy > p {
  max-width: 55ch;
  margin-bottom: 24px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.72;
}

.news-library {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 128px) 0;
}

.news-toolbar {
  position: sticky;
  top: 53px;
  z-index: 14;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(15, 61, 53, 0.07);
  backdrop-filter: blur(18px) saturate(145%);
}

.news-filters {
  display: flex;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.news-filters::-webkit-scrollbar {
  display: none;
}

.news-filter {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  color: var(--body);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 160ms var(--motion),
    background 160ms var(--motion),
    border-color 160ms var(--motion),
    transform 100ms var(--motion);
}

.news-filter:hover {
  color: var(--green);
  background: var(--green-soft);
}

.news-filter.is-active {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.news-filter span {
  margin-left: 4px;
  opacity: 0.72;
}

.news-result-count {
  flex: 0 0 auto;
  margin: 0 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

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

.news-item {
  display: grid;
  grid-template-columns: minmax(230px, 0.4fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.news-item[hidden] {
  display: none;
}

.news-item-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
  border-radius: var(--radius-sm);
}

.news-item-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 480ms var(--motion);
}

.news-item:hover .news-item-media img {
  transform: scale(1.025);
}

.news-item-copy {
  min-width: 0;
}

.news-item-copy .news-meta {
  margin-bottom: 10px;
}

.news-item h3 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.news-item-copy > p {
  max-width: 68ch;
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.7;
}

.news-item-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(15, 61, 53, 0.14);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition:
    color 160ms var(--motion),
    background 160ms var(--motion),
    transform 160ms var(--motion);
}

.news-item-open:hover {
  color: #ffffff;
  background: var(--green);
  transform: translateX(4px);
}

.article-dialog {
  width: min(1160px, calc(100% - 48px));
  max-width: none;
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #ffffff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(5, 23, 19, 0.28);
}

.article-dialog::backdrop {
  background: rgba(8, 28, 24, 0.62);
  backdrop-filter: blur(12px);
}

.article-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  min-height: min(740px, calc(100svh - 40px));
  max-height: calc(100svh - 40px);
  overflow: auto;
}

.article-dialog-close {
  position: fixed;
  z-index: 2;
  top: max(32px, calc((100svh - min(740px, calc(100svh - 40px))) / 2 + 16px));
  right: max(32px, calc((100vw - min(1160px, calc(100vw - 48px))) / 2 + 16px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 61, 53, 0.16);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(5, 23, 19, 0.14);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.article-dialog-media {
  position: sticky;
  top: 0;
  min-width: 0;
  height: calc(100svh - 40px);
  max-height: 740px;
  margin: 0;
  background: var(--green);
}

.article-dialog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 23, 19, 0.26));
  pointer-events: none;
}

.article-dialog-media img {
  height: 100%;
  object-fit: cover;
}

.article-dialog-content {
  min-width: 0;
  padding: clamp(48px, 6vw, 78px);
}

.article-dialog-content h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.article-dialog-lead {
  margin-bottom: 34px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.68;
}

.article-dialog-body {
  display: grid;
  gap: 26px;
}

.article-dialog-body section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-dialog-body h3,
.article-selection h3 {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 750;
}

.article-dialog-body p {
  max-width: 70ch;
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.76;
}

.article-selection {
  margin-top: 32px;
  padding: 24px;
  background: var(--green-soft);
  border-radius: var(--radius-sm);
}

.article-selection ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}

.article-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

body.article-dialog-open {
  overflow: hidden;
}

/* About */

.about-company {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 130px);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 clamp(88px, 11vw, 148px);
}

.about-company-mark {
  align-self: start;
  color: var(--green);
  font-size: clamp(88px, 12vw, 170px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: 0;
}

.about-company-copy {
  align-self: center;
}

.about-company-copy h2 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 700;
  line-height: 1.1;
}

.about-company-copy > p:not(.content-kicker) {
  max-width: 68ch;
  color: var(--body);
  font-size: 17px;
  line-height: 1.76;
}

.about-capabilities {
  padding: clamp(78px, 9vw, 118px) max(24px, calc((100vw - var(--max)) / 2));
  color: #ffffff;
  background: var(--green);
}

.content-section-heading.is-inverse h2 {
  color: #ffffff;
}

.content-section-heading.is-inverse > p {
  color: rgba(255, 255, 255, 0.78);
}

.content-section-heading.is-inverse .content-kicker {
  color: #8ce7de;
}

.about-capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.about-capability {
  min-height: 280px;
  padding: clamp(30px, 4vw, 48px);
}

.about-capability + .about-capability {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.about-capability-index {
  display: inline-flex;
  margin-bottom: 58px;
  color: #8ce7de;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.about-capability h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
}

.about-capability p {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.72;
}

.about-scope {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(88px, 11vw, 138px) 0;
}

.about-scope-list {
  border-top: 1px solid var(--line-strong);
}

.about-scope-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.about-scope-item h3 {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 700;
}

.about-scope-item p {
  max-width: 68ch;
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.68;
}

.about-scope-item strong {
  justify-self: end;
  min-width: 112px;
  padding: 9px 12px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.about-scope-action {
  margin-top: 28px;
}

.about-method {
  padding: clamp(82px, 10vw, 128px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: about-method;
}

.about-method-item {
  position: relative;
  min-height: 260px;
  padding: 34px 30px;
  counter-increment: about-method;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.about-method-item + .about-method-item {
  border-left: 1px solid var(--line);
}

.about-method-item::before {
  content: "0" counter(about-method);
  display: block;
  margin-bottom: 60px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.about-method-item h3 {
  margin-bottom: 11px;
  font-size: 20px;
  font-weight: 750;
}

.about-method-item p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.66;
}

.about-field {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(88px, 11vw, 142px) 0;
}

.about-field-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.56fr);
  gap: 18px clamp(40px, 8vw, 112px);
  margin-bottom: 46px;
}

.about-field-heading .content-kicker {
  grid-column: 1 / -1;
}

.about-field-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.12;
}

.about-field-heading > p:not(.content-kicker) {
  align-self: end;
  margin: 0 0 2px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
}

.about-field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
}

.about-field-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
  border-radius: var(--radius-sm);
}

.about-field-primary {
  grid-row: 1 / span 2;
}

.about-field-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--motion);
}

.about-field-grid figure:hover img {
  transform: scale(1.02);
}

.about-field-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(5, 23, 19, 0.78);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.content-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto clamp(88px, 10vw, 126px);
  padding: clamp(42px, 6vw, 70px);
  color: #ffffff;
  background: #171717;
  border-radius: var(--radius);
}

.content-cta .content-kicker {
  color: #8ce7de;
}

.content-cta h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
}

.content-cta p:not(.content-kicker) {
  max-width: 72ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.72;
}

.content-cta .button.primary {
  color: var(--green);
  background: #ffffff;
  border-color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .news-feature {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .news-item {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 26px;
  }

  .about-company {
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  }

  .about-capability {
    padding: 34px 26px;
  }

  .about-method-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-method-item:nth-child(3) {
    border-left: 0;
  }

  .about-method-item:nth-child(n + 3) {
    border-top: 0;
  }
}

@media (max-width: 820px) {
  .content-section-heading,
  .about-field-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-section-heading > p,
  .about-field-heading > p:not(.content-kicker) {
    max-width: 70ch;
  }

  .news-feature {
    grid-template-columns: 1fr;
  }

  .news-feature-media {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .news-feature-copy {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .news-item {
    grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  }

  .news-item-open {
    grid-column: 2;
    justify-self: start;
  }

  .article-dialog-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-dialog-media {
    position: relative;
    width: 100%;
    height: min(40svh, 360px);
    min-height: 300px;
    aspect-ratio: auto;
  }

  .about-company {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-company-mark {
    font-size: clamp(90px, 24vw, 160px);
  }

  .about-capability-list {
    grid-template-columns: 1fr;
  }

  .about-capability {
    min-height: auto;
  }

  .about-capability + .about-capability {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .about-capability-index {
    margin-bottom: 34px;
  }

  .about-scope-item {
    grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1fr);
  }

  .about-scope-item strong {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .about-scope-item p {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .about-field-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(360px, 1.2fr) minmax(230px, 0.8fr);
  }

  .about-field-primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .content-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content-cta .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .content-body .search {
    grid-template-columns: minmax(0, 1fr) 64px;
  }

  .content-body .search button {
    display: block;
    padding: 0 8px;
    font-size: 11px;
  }

  .content-hero {
    min-height: clamp(470px, calc(100svh - 230px), 580px);
  }

  .content-hero::after {
    background:
      linear-gradient(180deg, rgba(5, 23, 19, 0.28) 0%, rgba(5, 23, 19, 0.72) 64%, rgba(5, 23, 19, 0.88) 100%),
      rgba(5, 23, 19, 0.1);
  }

  .content-hero-inner,
  .news-feature,
  .news-library,
  .about-company,
  .about-scope,
  .about-field,
  .content-cta {
    width: min(100% - 30px, var(--max));
  }

  .content-hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
    padding: 48px 0;
  }

  .content-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.05;
  }

  .content-hero-copy {
    font-size: 15px;
    line-height: 1.62;
  }

  .content-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .content-hero .button {
    width: 100%;
  }

  .content-section-heading h2,
  .about-field-heading h2 {
    font-size: 34px;
  }

  .news-feature {
    padding: 72px 0;
  }

  .news-feature-copy {
    padding: 30px 24px 34px;
  }

  .news-feature-copy h2 {
    font-size: 31px;
  }

  .news-library {
    padding: 78px 0 96px;
  }

  .news-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .news-result-count {
    padding: 0 4px 4px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 0 32px;
  }

  .news-item-media {
    aspect-ratio: 16 / 9;
  }

  .news-item-open {
    grid-column: 1;
  }

  .article-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .article-dialog-panel {
    min-height: calc(100svh - 20px);
    max-height: calc(100svh - 20px);
  }

  .article-dialog-close {
    top: 20px;
    right: 20px;
  }

  .article-dialog-media {
    height: 230px;
    min-height: 230px;
  }

  .article-dialog-content {
    padding: 34px 24px 40px;
  }

  .article-dialog-content h2 {
    font-size: 34px;
  }

  .article-dialog-lead {
    font-size: 16px;
  }

  .article-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .article-dialog-actions .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .about-company {
    padding: 82px 0 96px;
  }

  .about-company-mark {
    font-size: min(27vw, 116px);
  }

  .about-company-copy h2 {
    font-size: 36px;
  }

  .about-company-copy > p:not(.content-kicker) {
    font-size: 15px;
  }

  .about-capabilities,
  .about-method {
    padding-right: 15px;
    padding-left: 15px;
  }

  .about-scope {
    padding: 82px 0 96px;
  }

  .about-scope-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .about-scope-item p,
  .about-scope-item strong {
    grid-column: 1;
    grid-row: auto;
  }

  .about-method-list {
    grid-template-columns: 1fr;
  }

  .about-method-item,
  .about-method-item:nth-child(3),
  .about-method-item:nth-child(n + 3) {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .about-method-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .about-method-item + .about-method-item {
    border-left: 0;
  }

  .about-method-item::before {
    margin-bottom: 28px;
  }

  .about-field {
    padding: 82px 0 96px;
  }

  .about-field-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(250px, auto));
  }

  .about-field-primary {
    grid-column: auto;
  }

  .content-cta {
    margin-bottom: 88px;
    padding: 38px 24px;
  }

  .content-cta h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content-hero-media img,
  .news-feature-media img,
  .news-item-media img,
  .about-field-grid img,
  .text-action > span:last-child,
  .news-item-open {
    transition: none !important;
    transform: none !important;
  }

  .content-hero .button:active,
  .text-action:active,
  .news-filter:active,
  .news-item-open:active {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .content-hero .button.secondary,
  .news-toolbar,
  .article-dialog-close,
  .about-field-grid figcaption {
    backdrop-filter: none;
  }

  .news-toolbar,
  .article-dialog-close {
    background: #ffffff;
  }
}
