:root {
  --projects-red-soft: #a30c0d;
  --projects-red-deep: #7c090a;
  --projects-sand: #f2eee8;
  --projects-ivory: #faf8f4;
  --projects-border: #e3ddd6;
  --projects-text-soft: #666666;
  --projects-shadow: 0 18px 44px rgba(28, 18, 18, 0.08);
}

.projects-page {
  background: #ffffff;
}

.projects-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #ffffff;
  background: #ffffff;
}

.projects-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.projects-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.52) 28%, rgba(0, 0, 0, 0.08) 64%, rgba(0, 0, 0, 0) 100%);
}

.projects-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  max-width: 500px;
  padding-top: 34px;
  padding-bottom: 44px;
}

.projects-hero__eyebrow {
  margin: 0 0 8px;
  color: #8d0a0b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.projects-hero__summary {
  max-width: 370px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
}

.projects-overview {
  padding: 34px 0 26px;
  background: #ffffff;
}

.projects-overview__feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.projects-overview__media,
.projects-overview__copy,
.overview-card,
.featured-card,
.solution-card {
  background: #ffffff;
}

.projects-overview__media {
  display: flex;
  justify-content: flex-start;
  min-width: 0;
  overflow: hidden;
  height: 430px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.projects-overview__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center center;
}

.projects-overview__copy {
  width: auto;
  max-width: 100%;
  min-width: 0;
  height: 430px;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 28px 0;
  margin: 0 0 0 64px;
  border: 0;
  box-shadow: none;
}

.projects-overview__copy h2 {
  width: 100%;
  max-width: 520px;
  margin: 0 0 18px;
  color: #303030;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.projects-overview__copy h2 span {
  display: block;
}

.projects-overview__copy h2 span + span {
  margin-top: 12px;
  text-align: left;
  padding-left: 72px;
}

.projects-overview__copy .projects-link {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #ffffff !important;
}

.projects-overview__copy .projects-link:hover,
.projects-overview__copy .projects-link:focus-visible {
  background: var(--projects-red-deep) !important;
  border-color: var(--projects-red-deep) !important;
}

.featured-projects .section-tag,
.solution-partner .section-tag,
.customer-visit .section-tag {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
}

.featured-projects h2,
.solution-partner h2,
.customer-visit h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0;
}

.projects-cta h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
  color: #232323;
}

.featured-projects__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-projects__link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.projects-overview__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.overview-card {
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.overview-card img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.overview-card__body,
.solution-card__body {
  padding: 14px 16px 16px;
  background: #ffffff;
}

.overview-card h3,
.solution-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
  color: var(--red);
}

.overview-card p,
.solution-card p,
.solution-partner__summary {
  margin: 8px 0 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

.featured-projects {
  padding: 14px 0 24px;
  background: var(--red);
  color: #ffffff;
}

.featured-projects__header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  max-width: none;
  width: 100%;
  margin: 0 0 10px;
  text-align: left;
}

.featured-projects__carousel {
  position: relative;
  padding: 0 40px;
}

.featured-projects__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
}

.featured-projects__arrow--prev,
.featured-projects__arrow--next {
  position: absolute;
  top: calc(50% - 14px);
  z-index: 3;
  transform: translateY(-50%);
}

.featured-projects__arrow--prev {
  left: 0;
}

.featured-projects__arrow--next {
  right: 0;
}

.featured-projects__arrow:hover,
.featured-projects__arrow:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.featured-projects__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.featured-projects__arrow svg {
  width: 18px;
  height: 18px;
}

.section-tag--light {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.featured-projects h2,
.customer-visit h2,
.projects-cta h2 {
  color: #ffffff;
}

.featured-projects h2 {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.16;
  font-weight: 700;
}

.featured-projects__viewport {
  overflow: hidden;
}

.featured-projects__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: stretch;
  transform: translateX(var(--featured-track-offset, 0px));
  transition: transform 0.35s ease;
  will-change: transform;
}

.featured-projects--static .featured-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  transform: none;
  transition: none;
  will-change: auto;
}

.featured-projects--static .featured-card {
  flex: initial;
}

.featured-projects--static .featured-projects__viewport,
.featured-projects--static .featured-projects__carousel {
  overflow: visible;
  padding: 0;
}

.featured-projects--static .featured-projects__arrow {
  display: none;
}

.featured-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 0 0 calc((100% - 48px) / 4);
  height: 100%;
  border: 1px solid #dddddd;
  border-radius: 12px;
  background: #ffffff;
  scroll-snap-align: start;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.featured-card:hover,
.featured-card:focus-within {
  transform: translateY(-4px);
  border-color: #d3caca;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.featured-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-card:hover img,
.featured-card:focus-within img {
  transform: scale(1.04);
}

.featured-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 14px 16px 16px;
  color: #212121;
}

.featured-card__meta {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.featured-card h3 {
  margin: 6px 0 0;
  color: #232323;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  min-height: 2.9em;
}

.featured-card p:last-child {
  margin: 4px 0 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.featured-projects--editorial {
  padding: 26px 0 20px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 85, 85, 0.2), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #a50000 0%, #8b0000 100%);
  color: #ffffff;
}

.featured-projects--editorial .section-tag {
  color: rgba(255, 255, 255, 0.92);
}

.featured-projects--editorial h2 {
  color: #ffffff;
}

.featured-projects--editorial .featured-projects__shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.featured-projects--editorial .featured-projects__intro {
  position: relative;
  min-height: 542px;
  padding: 12px 14px 108px;
}

.featured-projects--editorial .featured-projects__intro::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 0;
  bottom: 0;
  height: 180px;
  background:
    radial-gradient(circle at 18% 55%, rgba(255, 120, 120, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 43% 40%, rgba(255, 120, 120, 0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 66% 28%, rgba(255, 120, 120, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 58%, rgba(255, 120, 120, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 42%, rgba(255, 120, 120, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 68%, rgba(255, 120, 120, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 74%, rgba(255, 255, 255, 0.08) 0 78px, transparent 79px),
    linear-gradient(135deg, transparent 18%, rgba(255, 120, 120, 0.45) 19%, transparent 20%),
    linear-gradient(32deg, transparent 42%, rgba(255, 120, 120, 0.28) 43%, transparent 44%);
  opacity: 0.88;
  pointer-events: none;
}

.featured-projects--editorial .featured-projects__intro .section-tag {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.featured-projects--editorial .featured-projects__intro h2 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-size: 31px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.featured-projects--editorial .featured-projects__intro h2 span {
  display: block;
}

.featured-projects--editorial .featured-projects__summary {
  max-width: 220px;
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 3px solid rgba(255, 255, 255, 0.58);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.featured-projects--editorial .featured-projects__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background-color 0.24s ease, border-color 0.24s ease;
}

.featured-projects--editorial .featured-projects__cta:hover,
.featured-projects--editorial .featured-projects__cta:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  outline: none;
}

.featured-projects--editorial .featured-projects__content {
  display: grid;
  gap: 14px;
}

.featured-projects--editorial .featured-projects__top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.featured-projects--editorial .featured-projects__bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.featured-projects--editorial .featured-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.featured-projects--editorial .featured-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.featured-projects--editorial .featured-card--wide img {
  aspect-ratio: 1.68 / 1;
}

.featured-projects--editorial .featured-card__body {
  padding: 14px 18px 14px;
  color: #232323;
}

.featured-projects--editorial .featured-card__meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-projects--editorial .featured-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c60f10 0%, #a30809 100%);
  color: #ffffff;
  font-size: 14px;
  flex: 0 0 auto;
}

.featured-projects--editorial .featured-card__meta {
  margin: 0;
  color: #b10b0d;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.featured-projects--editorial .featured-card h3 {
  margin: 14px 0 0;
  min-height: 0;
  color: #171717;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.featured-projects--editorial .featured-card p:last-child {
  margin: 8px 0 0;
  color: #555555;
  font-size: 13px;
  line-height: 1.52;
  font-weight: 400;
}

.featured-projects--editorial .featured-projects__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(136, 0, 0, 0.28);
  overflow: hidden;
}

.featured-projects--editorial .featured-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 82px;
  padding: 12px 18px;
  color: #ffffff;
}

.featured-projects--editorial .featured-stat + .featured-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.featured-projects--editorial .featured-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 22px;
  flex: 0 0 auto;
}

.featured-projects--editorial .featured-stat strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.featured-projects--editorial .featured-stat__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-projects--editorial .featured-stat p {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.featured-projects--global-map {
  padding: 6px 0 20px;
  background: #ffffff;
  color: #232323;
}

.featured-projects--global-map h2 {
  color: #171717;
}

.featured-projects--global-map .featured-projects__hero {
  display: grid;
  grid-template-columns: minmax(clamp(500px, 48vw, 680px), 1fr) minmax(0, 1fr);
  column-gap: 0;
  align-items: stretch;
  min-height: clamp(240px, 20vw, 280px);
  padding: clamp(24px, 2.5vw, 32px) 0 20px clamp(30px, 3vw, 40px);
  background: #ffffff;
  overflow: hidden;
}

.featured-projects--global-map .featured-projects__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  max-width: none;
  padding: 0 30px 0 0;
}

.featured-projects--global-map .featured-projects__eyebrow {
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: clamp(16px, 1.6vw, 20px);
  border-radius: 999px;
  background: #d31517;
}

.featured-projects--global-map .featured-projects__hero-copy h2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.featured-projects--global-map .featured-projects__hero-copy h2 span + span {
  margin-top: 12px;
  padding-left: 72px;
  color: #d31517;
}

.featured-projects--global-map .featured-projects__summary {
  max-width: clamp(380px, 32vw, 440px);
  margin: clamp(14px, 1.4vw, 18px) 0 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.featured-projects--global-map .featured-projects__hero-media {
  grid-column: 2;
  align-self: stretch;
  min-width: 0;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

.featured-projects--global-map .featured-projects__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 40% 50%;
}

.featured-projects--global-map .featured-projects__pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 100%;
  margin-top: clamp(30px, 3vw, 45px);
}

.featured-projects--global-map .project-pillar {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 0.8vw, 12px);
  min-width: 0;
  padding: 0 15px;
  border-right: 1px solid #f0f0f0;
}

.featured-projects--global-map .project-pillar:first-child {
  padding-left: 0;
}

.featured-projects--global-map .project-pillar:last-child {
  padding-right: 0;
  border-right: none;
}

.featured-projects--global-map .project-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 2.2vw, 32px);
  height: clamp(28px, 2.2vw, 32px);
  flex: 0 0 auto;
}

.featured-projects--global-map .project-pillar__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-projects--global-map .project-pillar__copy {
  min-width: 0;
}

.featured-projects--global-map .project-pillar h3 {
  margin: 0;
  color: #3b3b3b;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
}

.featured-projects--global-map .project-pillar p {
  margin: 8px 0 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.featured-projects--global-map .featured-projects__mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1.55fr 0.85fr 1fr;
  grid-template-rows: minmax(146px, auto) minmax(146px, auto);
  gap: 14px;
  margin-top: 12px;
}

.featured-projects--global-map .global-project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #eaeaea;
  min-width: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.featured-projects--global-map .global-project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.featured-projects--global-map .global-project-card:hover img,
.featured-projects--global-map .global-project-card:focus-within img {
  transform: scale(1.03);
}

.featured-projects--global-map .global-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.04) 0%, rgba(13, 13, 13, 0.34) 58%, rgba(13, 13, 13, 0.7) 100%);
  pointer-events: none;
}

.featured-projects--global-map .global-project-card__body {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #ffffff;
}

.featured-projects--global-map .global-project-card__body--light {
  right: 24px;
  bottom: 18px;
}

.featured-projects--global-map .global-project-card__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.featured-projects--global-map .global-project-card__location i {
  color: #ff3b30;
  font-size: 14px;
}

.featured-projects--global-map .global-project-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 700;
}

.featured-projects--global-map .global-project-card p:last-child {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.featured-projects--global-map .global-project-card--feature {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 296px;
}

.featured-projects--global-map .global-project-card--feature .global-project-card__body {
  left: 20px;
  right: 24px;
  bottom: 22px;
}

.featured-projects--global-map .global-project-card--feature h3 {
  font-size: 20px;
}

.featured-projects--global-map .global-project-card--wide {
  min-height: 141px;
}

.featured-projects--global-map .global-project-card--split {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  align-items: stretch;
  background: #ffffff;
}

.featured-projects--global-map .global-project-card--split::after {
  display: none;
}

.featured-projects--global-map .global-project-card--split img {
  grid-column: 2;
  grid-row: 1;
  height: 100%;
}

.featured-projects--global-map .global-project-card--split .global-project-card__body {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px 22px;
  color: #2a2a2a;
}

.featured-projects--global-map .global-project-card--split .global-project-card__location {
  margin-bottom: 10px;
  color: #3b3b3b;
  font-size: 14px;
  font-weight: 700;
}

.featured-projects--global-map .global-project-card--split .global-project-card__location i {
  display: none;
}

.featured-projects--global-map .global-project-card--split h3 {
  color: #1a1a1a;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.featured-projects--global-map .global-project-card--split p:last-child {
  margin-top: 6px;
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

.featured-projects--global-map .global-project-card--wide:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.featured-projects--global-map .global-project-card--wide:nth-of-type(5) {
  grid-column: 2;
  grid-row: 2;
}

.featured-projects--global-map .global-project-card--tall {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 296px;
}

.featured-projects--global-map .global-project-card--compact:nth-of-type(4) {
  grid-column: 4;
  grid-row: 1;
}

.featured-projects--global-map .global-project-card--compact:nth-of-type(6) {
  grid-column: 4;
  grid-row: 2;
}

.featured-projects--global-map .featured-projects__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.featured-projects--global-map .featured-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 78px;
  padding: 12px 20px;
  color: #232323;
}

.featured-projects--global-map .featured-stat + .featured-stat {
  border-left: 1px solid #e8e8e8;
}

.featured-projects--global-map .featured-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.featured-projects--global-map .featured-stat__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-projects--global-map .featured-stat__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.featured-projects--global-map .featured-stat strong {
  display: block;
  color: #d31517;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.featured-projects--global-map .featured-stat p {
  margin: 4px 0 0;
  color: #222222;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.solution-partner {
  padding: 18px 0 28px;
  background: #ffffff;
}

.section-center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-center--narrow {
  max-width: 780px;
}

.solution-partner__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.solution-card {
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #f8f8f8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1.74 / 1;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.solution-partner .section-center {
  max-width: 900px;
  margin-bottom: 0;
}

.solution-partner > .container > .section-center > .section-tag {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.solution-partner > .container > .section-center > h2 {
  color: #3b3b3b;
}

.solution-partner__summary {
  max-width: 860px;
  margin: 12px auto 0;
  color: #8f8f8f;
  font-size: 16px;
  line-height: 1.5;
}

.project-process {
  margin-top: 40px;
}

.project-process .section-center.section-center--narrow {
  max-width: 900px;
  margin-bottom: 2rem;
}

.project-process .section-center h2 {
  margin: 0;
  color: #3b3b3b;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.project-process__summary {
  max-width: 860px;
  margin: 12px auto 0;
  color: #979797;
  font-size: 16px;
  line-height: 1.5;
}

.project-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
  padding-bottom: 34px;
}

.project-process__steps::after {
  display: none;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  background: transparent;
  text-align: center;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #c9c9c9 0 6px,
    transparent 6px 11px
  );
  z-index: 0;
}

.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: -7px;
  width: 1px;
  background: #e3e3e3;
}

.process-step__marker {
  position: absolute;
  bottom: -18px;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  border: 1px solid #c9c9c9;
  background: transparent;
  z-index: 1;
}

.process-step__marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.process-step__index {
  display: block;
  color: var(--red);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.process-step h3 {
  margin: 10px 0 0;
  min-height: 66px;
  color: #3b3b3b;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
}

.process-step img {
  width: 100%;
  margin-top: 10px;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
}

.process-step p {
  min-height: 110px;
  margin: 14px 0 0;
  color: #8f8f8f;
  font-size: 15px;
  line-height: 1.45;
}

.customer-visit {
  padding: 16px 0 22px;
  background: #ffffff;
  color: #232323;
}

.customer-visit__header {
  max-width: 980px;
  margin: 0 auto 18px;
  text-align: center;
}

.customer-visit__header .section-tag {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.customer-visit__header h2 {
  color: #3b3b3b;
}

.customer-visit__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
}

.customer-visit__grid img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  border: 1px solid #ddd6cf;
}

.customer-visit__grid img:nth-child(-n+4) {
  grid-column: span 3;
}

.customer-visit__grid img:nth-child(5) {
  grid-column: span 4;
}

.customer-visit__grid img:nth-child(6) {
  grid-column: span 4;
}

.customer-visit__grid img:nth-child(7) {
  grid-column: span 4;
}

.customer-visit__grid img:nth-child(1) {
  object-position: center center;
}

.customer-visit__grid img:nth-child(2) {
  object-position: center 35%;
}

.customer-visit__grid img:nth-child(3) {
  object-position: center 36%;
}

.customer-visit__grid img:nth-child(4) {
  object-position: center 35%;
}

.customer-visit__grid img:nth-child(5) {
  object-position: center 42%;
}

.customer-visit__grid img:nth-child(6) {
  object-position: center 38%;
}

.customer-visit__grid img:nth-child(7) {
  object-position: center 40%;
}

.projects-cta {
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.projects-cta:hover,
.projects-cta:focus-visible {
  background: var(--red-dark);
}

.projects-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.4);
  outline-offset: -3px;
}

.projects-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.projects-cta__eyebrow {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 700;
}

.projects-cta h2 {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.projects-cta .button {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1f1f1f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1280px) {
  .projects-overview__feature {
    grid-template-columns: 1fr 1fr;
  }

  .featured-projects__grid,
  .solution-partner__grid {
    gap: 12px;
  }

  .featured-card {
    flex-basis: calc((100% - 24px) / 3);
  }

  .featured-projects--static .featured-projects__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-projects--editorial .featured-projects__shell {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
  }

  .featured-projects--editorial .featured-projects__intro {
    min-height: 520px;
    padding-right: 8px;
  }

  .featured-projects--editorial .featured-projects__bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-projects--editorial .featured-card h3 {
    font-size: 17px;
  }

  .featured-projects--global-map .featured-projects__mosaic {
    grid-template-columns: 1.4fr 1.35fr 0.9fr 0.95fr;
  }

  .featured-projects--global-map .global-project-card--split {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .featured-projects--global-map .featured-stat {
    padding-left: 14px;
    padding-right: 14px;
  }

  .project-process__steps {
    gap: 10px;
  }

  .process-step {
    padding: 0 6px;
  }
}

@media (max-width: 1100px) {
  .projects-hero,
  .projects-hero__content {
    min-height: 360px;
  }

  .projects-overview__feature,
  .projects-overview__cards,
  .solution-partner__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .featured-projects--static .featured-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-projects--editorial .featured-projects__shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-projects--editorial .featured-projects__intro {
    min-height: 0;
    max-width: none;
    padding: 6px 0 98px;
  }

  .featured-projects--editorial .featured-projects__intro::after {
    left: auto;
    right: 0;
    width: 300px;
  }

  .featured-projects--editorial .featured-projects__summary {
    max-width: 320px;
  }

  .featured-projects--editorial .featured-projects__top,
  .featured-projects--editorial .featured-projects__bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-projects--editorial .featured-projects__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-projects--editorial .featured-stat:nth-child(3) {
    border-left: 0;
  }

  .featured-projects--editorial .featured-stat:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .featured-projects--global-map .featured-projects__hero {
    display: block;
    min-height: 0;
    padding: 22px 20px 20px;
  }

  .featured-projects--global-map .featured-projects__hero-copy {
    width: auto;
    max-width: none;
    padding: 0;
  }

  .featured-projects--global-map .featured-projects__hero-media {
    position: relative;
    grid-column: auto;
    align-self: auto;
    min-width: 0;
    margin-top: 18px;
    border-radius: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .featured-projects--global-map .featured-projects__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    max-width: none;
    margin-top: 24px;
  }

  .featured-projects--global-map .project-pillar {
    padding: 0 !important;
    border: none !important;
  }

  .featured-projects--global-map .featured-projects__mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .featured-projects--global-map .global-project-card,
  .featured-projects--global-map .global-project-card--feature,
  .featured-projects--global-map .global-project-card--wide,
  .featured-projects--global-map .global-project-card--tall,
  .featured-projects--global-map .global-project-card--compact {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .featured-projects--global-map .global-project-card--split {
    display: block;
  }

  .featured-projects--global-map .global-project-card--split::after {
    display: block;
  }

  .featured-projects--global-map .global-project-card--split img {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-projects--global-map .global-project-card--split .global-project-card__body {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: block;
    padding: 0;
    color: #ffffff;
  }

  .featured-projects--global-map .global-project-card--split .global-project-card__location {
    color: #ffffff;
  }

  .featured-projects--global-map .global-project-card--split h3 {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.28;
  }

  .featured-projects--global-map .global-project-card--split p:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
  }

  .featured-projects--global-map .featured-projects__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-projects--global-map .featured-stat:nth-child(3) {
    border-left: 0;
  }

  .featured-projects--global-map .featured-stat:nth-child(n+3) {
    border-top: 1px solid #ddd7d7;
  }

  .featured-projects__viewport {
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .featured-projects__viewport::-webkit-scrollbar {
    display: none;
  }

  .featured-projects__grid {
    transform: none;
    transition: none;
  }

  .project-process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 24px;
    padding-bottom: 0;
  }

  .project-process__steps::after {
    display: none;
  }

  .process-step:not(:last-child)::before {
    display: none;
  }

  .process-step::after {
    display: none;
  }

  .process-step__marker {
    display: none;
  }

  .process-step p {
    min-height: 0;
  }

  .customer-visit__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .customer-visit__grid img:nth-child(-n+4) {
    grid-column: span 3;
  }

  .customer-visit__grid img:nth-child(5),
  .customer-visit__grid img:nth-child(6),
  .customer-visit__grid img:nth-child(7) {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .projects-overview,
  .featured-projects,
  .solution-partner,
  .customer-visit {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .projects-overview__feature,
  .projects-overview__cards,
  .solution-partner__grid,
  .project-process__steps,
  .customer-visit__grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    flex-basis: min(82vw, 320px);
  }

  .featured-projects--static .featured-projects__grid {
    grid-template-columns: 1fr;
  }

  .featured-projects--editorial .featured-projects__intro {
    padding-bottom: 92px;
  }

  .featured-projects--editorial .featured-projects__top,
  .featured-projects--editorial .featured-projects__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured-projects--editorial .featured-projects__stats {
    margin-top: 12px;
  }

  .featured-projects--global-map .featured-projects__pillars,
  .featured-projects--global-map .featured-projects__mosaic,
  .featured-projects--global-map .featured-projects__stats {
    grid-template-columns: 1fr;
  }

  .featured-projects--global-map .featured-projects__summary {
    max-width: none;
    font-size: 14px;
    line-height: 1.55;
  }

  .featured-projects--global-map .project-pillar {
    gap: 10px;
  }

  .featured-projects--global-map .project-pillar__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .featured-projects--global-map .project-pillar h3 {
    font-size: 12px;
  }

  .featured-projects--global-map .project-pillar p {
    font-size: 10px;
  }

  .featured-projects--global-map .global-project-card,
  .featured-projects--global-map .global-project-card--feature,
  .featured-projects--global-map .global-project-card--wide,
  .featured-projects--global-map .global-project-card--tall,
  .featured-projects--global-map .global-project-card--compact {
    min-height: 240px;
  }

  .featured-projects--global-map .featured-projects__hero-copy {
    padding-left: 0;
  }

  .featured-projects--global-map .featured-stat {
    justify-content: flex-start;
    min-height: 76px;
    padding: 14px 18px;
  }

  .featured-projects--global-map .featured-stat + .featured-stat {
    border-left: 0;
    border-top: 1px solid #ddd7d7;
  }

  .featured-projects__carousel {
    padding: 0 38px;
  }

  .projects-cta__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .projects-overview__feature {
    gap: 22px;
  }

  .project-process .section-center {
    margin-bottom: 18px;
  }

  .project-process__summary {
    max-width: 620px;
    font-size: 14px;
  }

  .process-step {
    padding: 0;
  }

  .process-step h3 {
    min-height: 0;
  }

  .process-step img {
    max-width: 300px;
  }

  .process-step p {
    max-width: 300px;
    margin-top: 12px;
  }

  .featured-projects__header {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .projects-overview__copy {
    margin-left: 0;
    max-width: none;
    height: auto;
    padding: 0;
  }

  .projects-overview__media {
    height: auto;
  }

  .projects-overview__media img {
    min-height: 0;
    aspect-ratio: 1.45 / 1;
  }

  .projects-overview__cards {
    gap: 12px;
    margin-top: 14px;
  }

  .overview-card__body {
    padding: 14px 16px 16px;
  }

  .overview-card h3 {
    font-size: 15px;
  }

  .overview-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .customer-visit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .customer-visit__grid img:nth-child(-n+7) {
    grid-column: auto;
  }

  .customer-visit__grid img {
    min-height: 180px;
  }

  .projects-cta__eyebrow {
    font-size: 24px;
  }

  .projects-cta .button {
    align-self: flex-start;
  }

  .projects-overview__copy h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .projects-overview__copy h2 span + span {
    padding-left: 56px;
  }
}

@media (max-width: 640px) {
  .projects-hero,
  .projects-hero__content {
    min-height: 300px;
  }

  .projects-hero__content {
    max-width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .projects-hero h1 {
    font-size: 32px;
  }

  .projects-hero__summary {
    max-width: 370px;
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.4;
  }

  .projects-overview,
  .featured-projects,
  .solution-partner,
  .customer-visit {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .projects-overview__feature {
    gap: 16px;
  }

  .projects-overview__media img {
    aspect-ratio: 1.28 / 1;
  }

  .projects-overview__copy {
    padding: 0;
  }

  .featured-projects__header {
    align-items: flex-start;
    flex-direction: row;
  }

  .featured-projects--editorial {
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .featured-projects--editorial .featured-projects__summary {
    max-width: 240px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .featured-projects--editorial .featured-card img {
    aspect-ratio: 1.62 / 1;
  }

  .featured-projects--editorial .featured-card h3 {
    font-size: 16px;
    line-height: 1.35;
  }

  .featured-projects--editorial .featured-card p:last-child {
    font-size: 14px;
    line-height: 1.6;
  }

  .featured-projects--editorial .featured-card__body {
    padding: 12px 14px 13px;
  }

  .featured-projects--editorial .featured-card__meta-row {
    gap: 8px;
  }

  .featured-projects--editorial .featured-card__icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .featured-projects--editorial .featured-card__meta {
    font-size: 11px;
  }

  .featured-projects--global-map {
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .featured-projects--global-map .featured-projects__hero-copy h2 {
    font-size: 26px;
  }

  .featured-projects--global-map .featured-projects__hero-media {
    margin-top: 16px;
    border-radius: 0;
  }

  .featured-projects--global-map .featured-projects__summary {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
  }

  .featured-projects--global-map .global-project-card,
  .featured-projects--global-map .global-project-card--feature,
  .featured-projects--global-map .global-project-card--wide,
  .featured-projects--global-map .global-project-card--tall,
  .featured-projects--global-map .global-project-card--compact {
    min-height: 220px;
  }

  .featured-projects--global-map .global-project-card__body,
  .featured-projects--global-map .global-project-card--feature .global-project-card__body {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .featured-projects--global-map .global-project-card__location {
    margin-bottom: 10px;
  }

  .featured-projects--global-map .global-project-card h3 {
    font-size: 17px;
    line-height: 1.28;
  }

  .featured-projects--global-map .global-project-card p:last-child {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.6;
  }

  .featured-projects--global-map .featured-stat,
  .featured-projects--global-map .featured-stat:nth-child(n+3) {
    border-top: 0;
  }

  .featured-projects--global-map .featured-stat p {
    font-size: 12px;
  }

  .featured-projects--editorial .featured-projects__stats {
    grid-template-columns: 1fr;
  }

  .featured-projects--editorial .featured-stat,
  .featured-projects--editorial .featured-stat:nth-child(n+3) {
    border-top: 0;
  }

  .featured-projects--editorial .featured-stat + .featured-stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .featured-projects--editorial .featured-stat {
    justify-content: flex-start;
    min-height: 74px;
  }

  .featured-projects__carousel {
    padding: 0 34px;
  }

  .projects-overview__copy .button,
  .projects-link {
    width: 100%;
    justify-content: center;
  }

  .featured-projects .section-tag,
  .solution-partner .section-tag,
  .customer-visit .section-tag {
    font-size: 14px;
  }

  .project-process__summary {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .featured-projects h2,
  .solution-partner h2,
  .customer-visit h2,
  .project-process .section-center h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .featured-card {
    flex-basis: calc(100% - 28px);
  }

  .featured-projects__header {
    align-items: flex-start;
    flex-direction: row;
  }

  .featured-projects__actions {
    align-self: flex-end;
  }

  .solution-partner__summary {
    font-size: 15px;
    line-height: 1.55;
  }

  .solution-partner__grid {
    gap: 12px;
    margin-top: 16px;
  }

  .solution-card img {
    aspect-ratio: 1.85 / 1;
  }

  .solution-card__body {
    padding: 12px 14px 14px;
  }

  .solution-card h3 {
    font-size: 14px;
  }

  .solution-card p {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .featured-card img {
    aspect-ratio: 1.9 / 1;
  }

  .featured-card__body {
    min-height: 108px;
    padding: 11px 12px 13px;
  }

  .featured-card__meta {
    font-size: 15px;
    line-height: 1.6;
  }

  .featured-card h3 {
    font-size: 16px;
  }

  .featured-card p:last-child {
    font-size: 15px;
    line-height: 1.6;
  }


  .projects-overview__cards {
    gap: 10px;
  }

  .overview-card img {
    aspect-ratio: 1.9 / 1;
  }

  .overview-card__body {
    padding: 12px 14px 14px;
  }

  .overview-card h3 {
    font-size: 14px;
  }

  .overview-card p {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.6;
  }

  .process-step__index {
    font-size: 20px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .process-step p {
    font-size: 14px;
  }

  .customer-visit__header {
    max-width: none;
    margin-bottom: 14px;
  }

  .customer-visit__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .customer-visit__grid img {
    min-height: 210px;
  }

  .projects-cta__inner {
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 22px;
    align-items: stretch;
  }

  .projects-cta__eyebrow {
    font-size: 20px;
  }

  .projects-cta h2 {
    font-size: 14px;
    line-height: 1.5;
  }

  .projects-cta .button {
    min-height: 46px;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .projects-hero,
  .projects-hero__content {
    min-height: 260px;
  }

  .projects-hero__content {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .projects-hero h1 {
    font-size: 28px;
  }

  .projects-hero__summary {
    font-size: 17px;
    line-height: 1.4;
  }

  .projects-overview__media img,
  .featured-card img,
  .overview-card img,
  .solution-card img {
    aspect-ratio: 1.22 / 1;
  }

  .featured-card__body,
  .overview-card__body,
  .solution-card__body {
    padding: 12px;
  }

  .featured-card__meta,
  .featured-card p:last-child,
  .overview-card p,
  .solution-card p,
  .project-process__summary,
  .process-step p {
    font-size: 13px;
  }

  .projects-cta__eyebrow {
    font-size: 18px;
  }

  .projects-cta h2 {
    font-size: 13px;
  }

  .featured-projects h2,
  .solution-partner h2,
  .customer-visit h2,
  .project-process .section-center h2 {
    font-size: 18px;
  }

  .projects-overview__copy h2 {
    font-size: 18px;
  }

  .projects-overview__copy h2 span + span {
    padding-left: 36px;
  }
}
