
.page-hero {
  position: relative;
  min-height: 465px;
  margin-top: var(--header-h);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 60, 0.58);
}

.page-hero--services .page-hero__media::after {
  background: rgba(11, 37, 60, 0.6);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--page-padding) * 2)), var(--page-max-width));
  margin-inline: auto;
  padding: 4.5rem 0 5rem;
}

.page-hero__content h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 2.2rem);
  max-width: none;
  width: 100%;
  margin-bottom: 3.35rem;
  line-height: 1.15;
}

.page-hero--services {
  align-items: center;
}

.page-hero--services .page-hero__content {
  text-align: center;
  padding: 4rem 0;
}

.page-hero--services .page-hero__content h1 {
  max-width: 30ch;
  margin-inline: auto;
  font-size: 41px;
  color: rgb(214, 241, 255);
}

.btn--ghost {
  background: transparent;
  color: var(--light-blue);
  border-color: var(--light-blue);
}

.btn--ghost:hover {
  background: var(--light-blue);
  color: var(--navy);
}

.btn--dark {
  background: #000;
  color: var(--white);
  border-color: #000;
}

.btn--dark:hover {
  background: #222;
}

/* About pillars — image centered, text left or right */
.about-pillars {
  padding: 4.5rem 0 5rem;
}

.about-pillar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  width: min(calc(100% - (var(--page-padding) * 2)), var(--page-max-width));
  margin: 0 auto 3.25rem;
}

.about-pillar:last-child {
  margin-bottom: 0;
}

.about-pillar__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-pillar__icon img {
  width: clamp(220px, 24vw, 360px);
  height: auto;
  display: block;
}

.about-pillar__text {
  max-width: 22rem;
}

.about-pillar__text h3 {
  margin-bottom: 0.85rem;
  font-size: 41px;
}

.about-pillar__text p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.about-pillar:not(.about-pillar--left) .about-pillar__text {
  justify-self: start;
}

.about-pillar--left .about-pillar__text {
  justify-self: end;
  text-align: right;
}

.about-pillar__spacer {
  min-width: 0;
}

/* Join CTA — full-bleed image + right card */
.join-cta {
  position: relative;
    width: min(calc(100% - (var(--page-padding) * 2)), var(--page-max-width));
    margin:100px 0;
    margin-inline: auto;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.join-cta__media {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  z-index: 0;
  width: 75%;
}

.join-cta__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 52% 80%;
  display: block;
}

.join-cta__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--page-padding) * 0)), var(--page-max-width));
  margin-inline: auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.join-cta__card {
  width: min(100%, 750px);
  background: var(--white);
  padding: 4.35rem;
  margin: 0;
}

.join-cta__card h3 {
  margin-bottom: 1.85rem;
  font-size: 41px;
}

.join-cta__card p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* About quotes — full-width 3 columns */
.about-quotes {
  padding: 5.5rem 0 6rem;
  background: var(--white);
}

.about-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
  width: min(calc(100% - (var(--page-padding) * 2)), var(--page-max-width));
  margin-inline: auto;
}

.about-quote {
  text-align: left;
  width: 100%;
}

.about-quote__photo {
  width: clamp(200px, 18vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.75rem;
}

.about-quote__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote__text {
  margin: 0 0 1rem;
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-quote__attr {
  font-size: 1rem;
  color: hsla(208, 68%, 14%, 0.7);
  margin: 0;
}

/* Services */
.services-solutions {
  position: relative;
  z-index: 1;
  padding: 8rem 0 calc(5rem + 9vw);
  background: var(--white);
  clip-path: url(#divider-who-we-are);
  -webkit-clip-path: url(#divider-who-we-are);
}

.services-solutions__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
  max-width: 1600px;
}

.services-solutions__art img {
  width: 100%;
}

.services-solutions__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.services-solutions__content > p {
  margin-bottom: 1.5rem;
}

.services-accordion {
  border-top: 1px solid hsla(208, 68%, 14%, 0.25);
  margin: 1.5rem 0 2rem;
}

.services-accordion .accordion__item {
  border-bottom: 1px solid hsla(208, 68%, 14%, 0.25);
}

.services-accordion .accordion__trigger {
  color: var(--navy);
  font-size: 1.15rem;
  padding: 1.15rem 0;
}

.services-accordion .accordion__icon::before,
.services-accordion .accordion__icon::after {
  background: var(--navy);
}

.services-accordion .accordion__panel {
  color: var(--text);
  display: none;
  padding: 0 0 1.15rem;
}

.services-accordion .accordion__item.is-open .accordion__panel {
  display: block;
}

.services-accordion .accordion__panel ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.35rem 0 0.75rem;
}

.services-accordion .accordion__panel li {
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.services-accordion .accordion__panel strong {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.2rem;
}

.services-talent {
  position: relative;
  z-index: 0;
  margin-top: -6vw;
  padding: calc(10rem + 6vw) 0 5rem;
  background: var(--light-blue);
}

.services-talent__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
  max-width: 1600px;
}

.services-talent__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services-talent__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.services-talent__content > p {
  margin-bottom: 1.5rem;
}

/* Team */
.team-intro {
  margin-top: var(--header-h);
  padding: 10rem 0;
}

.team-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
  max-width: 1600px;
}
.careers-fits .careers-fits__inner{width: min(calc(92% - (var(--page-padding) * 2)), 96%);}

.team-intro__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-intro__content p {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.team-intro__sig {
  margin-top: 1.5rem !important;
  font-size: 1.05rem;
  line-height: 1.45;
}

.team-intro__sig em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
}

.team-grid-section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}

.team-grid-section__title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
}

.team-grid-section__topo {
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 6.25rem);
  width: 100%;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--light-blue);
  padding: 10% 13% 8%;
}

.team-card__photo {
  width: 225px;
  height: 225px;
  overflow: hidden;
  margin-bottom: 0.9rem;
  background: #cfd8dc;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__name {
  width: 100%;
  max-width: 75%;
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
}

.team-card__role {
  width: 100%;
  max-width: 75%;
  margin: 0 0 1rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  background: #000;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 0.95rem;
}

.team-card__linkedin:hover {
  background: #222;
  color: var(--white);
}

/* Careers */
.careers-hero {
  margin-top: var(--header-h);
  position: relative;
  min-height: min(72vh, 720px);
  overflow: hidden;
}

.careers-hero__media,
.careers-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.careers-hero__media img {
  object-fit: cover;
  object-position: 52% 80%;
}

.careers-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 60, 0.45);
}

.careers-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--page-padding) * 2)), var(--page-max-width));
  margin-inline: auto;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: center;
}

.careers-hero__copy {
  max-width: 34rem;
  color: var(--white);
}

.careers-hero__copy h1 {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
}

.careers-hero__copy p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.btn--frost {
  background: var(--light-blue);
  color: var(--navy);
  border-color: var(--light-blue);
}

.btn--frost:hover {
  background: #c4e8fa;
  border-color: #c4e8fa;
  color: var(--navy);
}

.careers-fits {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--white);
}

.careers-fits__intro {
  max-width: 46rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.careers-fits__intro h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}

.careers-fits__intro p {
  margin: 0;
  color: hsla(208, 68%, 14%, 0.7);
  line-height: 1.7;
}

.careers-fits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 100px;
  align-items: start;
}

.careers-fit h3 {
  margin: 0 0 .65rem;
  color: var(--green);
  font-family: var(--body-font);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.careers-fit p {
  margin: 0;
  color: hsla(208, 68%, 14%, 0.75);
  font-size: .95rem;
  line-height: 1.55;
}

.careers-fits__graphic {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100%;
}

.careers-fits__graphic img {
  width: min(100%, 240px);
  height: auto;
}

.careers-culture {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 5rem) 0 calc(clamp(3rem, 6vw, 5rem) + 6vw);
  background: var(--white);
  clip-path: url(#divider-careers-culture);
  -webkit-clip-path: url(#divider-careers-culture);
}

.careers-culture__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
}

.careers-culture__copy h2 {
  margin: 0 0 .85rem;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
}

.careers-culture__eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-weight: 600;
}

.careers-culture__copy p {
  margin: 0 0 1rem;
  color: hsla(208, 68%, 14%, 0.8);
  line-height: 1.7;
}

.careers-culture__copy .btn {
  margin-top: .75rem;
}

.careers-culture__media img {
  display: block;
  width: 100%;
  height: auto;
}

.careers-talk {
  position: relative;
  z-index: 1;
  margin-top: -6vw;
  padding: calc(clamp(4rem, 8vw, 6rem) + 10vw) 0 clamp(3.5rem, 6vw, 5rem);
  background: var(--light-blue);
}

.careers-talk__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  width: min(calc(100% - (var(--page-padding) * 2)), 80%)!important;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.careers-talk__copy h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 400;
}

.careers-talk__copy p {
  margin: 0 0 1rem;
  color: hsla(208, 68%, 14%, 0.8);
  line-height: 1.7;
}

.careers-talk__copy a {
  color: var(--navy);
  text-decoration: underline;
}

.careers-talk__icon {
  display: block;
  width: 350px;
  margin-top: 8rem;
  height: auto;
}

.careers-talk__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.careers-talk__field {
  margin-top: 1rem;
}

.careers-talk label {
  display: block;
  margin-bottom: .35rem;
  font-size: .9rem;
  color: var(--navy);
}

.careers-talk .required {
  opacity: .7;
  font-weight: 400;
}

.careers-talk input[type="text"],
.careers-talk input[type="email"],
.careers-talk textarea {
  width: 100%;
  padding: .8rem .9rem;
  border: 1px solid hsla(208, 68%, 14%, .28);
  background:transparent;
  font: inherit;
}

.careers-talk textarea {
  min-height: 140px;
  resize: vertical;
}

.careers-talk__check {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  font-size: .95rem;
}

.careers-talk__check input {
  width: auto;
}

.careers-talk__actions {
  margin-top: 1.25rem;
}

.careers-quote {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.careers-quote__media,
.careers-quote__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.careers-quote__media img {
  object-fit: cover;
}

.careers-quote__card {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 60%);
  margin: 4rem auto;
  padding: 100px;
  background: rgba(11, 37, 60, 0.78);
  color: var(--white);
  text-align: center;
}

.careers-quote__card blockquote {
  margin: 0;
}

.careers-quote__card p {
  margin: 0 0 1rem;
  font-family: var(--heading-font);
  font-size: 41px;
  font-weight: 400;
  line-height: 1.25;
}

.careers-quote__card cite {
  font-style: normal;
  font-size: 21px;
  font-weight: 500;
}

/* News */
.news-hero {
  margin-top: var(--header-h);
  background: var(--white);
  color: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) 0 1.75rem;
}

.news-hero__inner {
  text-align: left;
}

.news-hero h1 {
  margin: 0 0 .85rem;
  max-width: 38rem;
  color: var(--green);
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

.news-hero p {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: hsla(208, 68%, 14%, 0.75);
  text-align: left;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - (var(--page-padding) * 2)), var(--page-max-width));
  margin-inline: auto;
  column-gap: clamp(2.5rem, 8.5vw, 8.2rem);
  row-gap: 1.4rem;
  padding: 1.25rem 0 5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
}

.news-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f6f8;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body {
  padding-top: 1rem;
}

.news-card__date {
  display: block;
  margin-bottom: .55rem;
  font-size: 1.05rem;
  color: hsla(208, 68%, 14%, 0.5);
}

.news-card__title {
  margin: 0 0 .85rem;
  font-family: var(--heading-font);
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
}

.news-card__title a {
  color: inherit;
  text-decoration: none;
}

.news-card__title a:hover {
  color: var(--orange);
}

.news-card__more {
  font-family: var(--body-font);
  font-size: .9rem;
  font-weight: 400;
  color: var(--orange);
  text-decoration: none;
}

.news-card__more:hover {
  text-decoration: underline;
}

.news-single {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--page-max-width));
  margin: calc(var(--header-h) + 2.5rem) auto 0;
  padding-bottom: 0;
}

.news-single__article {
  max-width: none;
}

.news-single__date {
  display: block;
  margin: 0 0 .85rem;
  font-size: 1.05rem;
  color: hsla(208, 68%, 14%, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.news-single h1 {
  margin: 0 0 1.75rem;
  color: var(--green);
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
}

.news-single__media {
  margin: 0 0 1.5rem;
  max-width: min(20rem, 42vw);
}

.news-single__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-single__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
}

.news-single__body p { margin: 0 0 1rem; }
.news-single__body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.news-single__body a:hover {
  color: var(--navy);
}
.news-single__body ul,
.news-single__body ol { margin: 0 0 1rem 1.25rem; padding: 0; }
.news-single__body li { margin: 0 0 .55rem; }
.news-single__body li:last-child { margin-bottom: 0; }

.news-single__pager {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid hsla(208, 68%, 14%, 0.15);
}

.news-single__pager-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: min(48%, 34rem);
  color: hsla(208, 68%, 14%, 0.55);
  text-decoration: none;
}

.news-single__pager-link:hover {
  color: var(--navy);
}

.news-single__pager-link--next {
  margin-left: auto;
  text-align: right;
  justify-content: flex-end;
}

.news-single__pager-title {
  font-family: var(--body-font);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}

.news-single__pager-icon {
  flex: 0 0 auto;
  display: inline-flex;
  color: inherit;
}

.news-single__pager-icon svg {
  display: block;
}

/* Contact */
.contact-main {
  margin-top: var(--header-h);
  position: relative;
  padding: 5rem 0 4rem;
  background: url("../images/CC_element_topo-frost.png") center/cover no-repeat;
}

.contact-main__inner {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  row-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-main__intro {
  grid-column: 6 / 14;
}

.contact-main__intro h1 {
  margin: 0 0 1.25rem;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-main__intro p {
  margin: 0 0 1rem;
  line-height: 1.7;
  font-size: 16px;
}

.contact-main__intro p:last-child {
  margin-bottom: 0;
}

.contact-form {
  grid-column: 6 / 20;
  width: 100%;
  margin: 0;
  background: var(--light-blue);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__field {
  margin-top: 1rem;
}

.contact-form label {
  display: block;
  font-size: .9rem;
  margin-bottom: .35rem;
  color: var(--navy);
}

.contact-form .required {
  color: inherit;
  opacity: .7;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .4rem .9rem;
  border: 1px solid var(--navy);
  background: transparent;
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__actions {
  margin-top: 1.5rem;
  text-align: center;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: #163a55;
  border-color: #163a55;
  color: var(--white);
}
/* Inner pages — About / Services / Team */
.page-container {
  width: min(calc(100% - (var(--page-padding) * 2)), 96%);
  margin-inline: auto;
}


@media (max-width: 980px) {
  .about-pillar,
  .about-pillar--left,
  .services-solutions__grid,
  .services-talent__grid,
  .team-intro__grid,
  .about-quotes__grid,
  .careers-culture__grid,
  .careers-talk__grid {
    grid-template-columns: 1fr;
  }

  .careers-fits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careers-culture {
    padding-bottom: calc(clamp(3rem, 6vw, 5rem) + 48px);
  }

  .careers-talk {
    margin-top: -48px;
    padding-top: calc(clamp(4rem, 8vw, 6rem) + 48px);
  }

  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .about-pillar__spacer {
    display: none;
  }

  .about-pillar--left .about-pillar__text,
  .about-pillar__text {
    justify-self: stretch;
    text-align: left;
    max-width: none;
  }

  .about-pillar__icon {
    order: -1;
  }

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

  .join-cta {
    min-height: 480px;
    padding: 0;
  }

  .join-cta__inner {
    width: min(calc(100% - 2rem), var(--page-max-width));
    justify-content: center;
  }

  .join-cta__card {
    margin: 2.5rem 0;
    width: min(100%, 420px);
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-main__inner {
    grid-template-columns: 1fr;
  }

  .contact-main__intro,
  .contact-form {
    grid-column: 1;
  }

  .page-hero {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .news-list,
  .careers-fits__grid,
  .careers-talk__row {
    grid-template-columns: 1fr;
  }

  .about-quotes__grid {
    gap: 2.5rem;
  }
}
