/*
  Page-specific styles for /about/. Shared chrome lives in main.css.

  A substantial amount of dead CSS existed in the original inline
  stylesheet with zero matching markup anywhere on the page — dropped
  rather than migrated, per the "no dead code / no unused selectors"
  rule: .hero-bullets/.hero-bullet/.hero-bullet-dot/.hero-bullet-txt
  (a "3 bullets instead of long sub-copy" redesign that was never
  actually wired into the markup — the hero still uses the long
  paragraph), .adv-grid and .pillars-grid and .cta-strip-inner (plus
  their responsive overrides — sections that exist on other pages but
  not this one), .ft-logo-txt (a permanently display:none label with
  no element referencing it), .story-img-wrap (no wrapping element
  uses it), an entire unused "team-card" card design superseded by
  the "member-card" design actually used in markup, .btn-outline, and
  the orphaned .d6 transition-delay utility.
*/

/* HERO */

.hero {

  position: relative;

  min-height: 72vh;

  display: flex;

  align-items: flex-end;

  overflow: hidden;

  padding-top: 76px;

  background: var(--black);
}

.hero-media {

  position: absolute;

  inset: 0;
}

.hero-media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center 30%;
}

.hero-over {

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, #000000b8 0%, #00000038 55%, #0000000f 100%);
}

.hero-content {

  position: relative;

  z-index: 2;

  max-width: var(--max);

  margin: 0 auto;

  padding: 80px 56px 72px;

  width: 100%;
}

.hero-eyebrow {

  color: #fff9;

  margin-bottom: 20px;

  opacity: 0;

  animation: hf 0.7s var(--ease) 0.4s forwards;
}

.hero-h1 {

  font-family: var(--fh);

  font-size: clamp(40px, 6.5vw, 96px);

  font-weight: 900;

  color: var(--white);

  line-height: 1.06;

  letter-spacing: -0.5px;

  margin-bottom: 28px;

  opacity: 0;

  animation: hf 0.9s var(--ease) 0.6s forwards;
}

.hero-h1 .ac {

  color: var(--orange);

  display: block;
}

.hero-sub {

  font-size: 15px;

  color: #ffffffb8;

  line-height: 1.8;

  max-width: 620px;

  margin-bottom: 36px;

  opacity: 0;

  animation: hf 0.8s var(--ease) 0.9s forwards;
}

.hero-ctas {

  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  opacity: 0;

  animation: hf 0.8s var(--ease) 1.1s forwards;
}

@keyframes hf {

  from {

    opacity: 0;

    transform: translateY(22px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}

/* TICKER */

.ticker-bar {

  background: var(--orange);

  overflow: hidden;

  white-space: nowrap;
}

.ticker-inner {

  display: inline-flex;

  animation: ticker 28s linear infinite;
}

.ticker-inner:hover {

  animation-play-state: paused;
}

.ticker-item {

  display: inline-flex;

  align-items: center;

  padding: 18px 0;
}

.ticker-text {

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  color: var(--white);

  padding: 0 32px;

  letter-spacing: 0.3px;
}

.ticker-dot {

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: #ffffff80;

  flex-shrink: 0;
}

@keyframes ticker {

  from {

    transform: translateX(0);
  }

  to {

    transform: translateX(-50%);
  }
}

/* MISSION */

.mission {

  background: var(--page);

  padding: 88px 0;
}

.mission-inner {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: start;
}

.mission-h2 {

  font-family: var(--fh);

  font-size: clamp(32px, 4vw, 52px);

  font-weight: 900;

  color: var(--black);

  line-height: 1.08;

  letter-spacing: -0.5px;

  margin-bottom: 28px;
}

.mission-h2 span {

  color: var(--orange);
}

.mission-points {

  display: flex;

  flex-direction: column;

  gap: 12px;

  margin-bottom: 32px;
}

.mission-points li {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  font-size: 15px;

  color: var(--mid);

  line-height: 1.55;
}

.mission-points li::before {

  content: '';

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: var(--orange);

  flex-shrink: 0;

  margin-top: 8px;
}

.mission-quote {

  padding: 20px 24px;

  border-left: 3px solid var(--orange);

  background: var(--orange-pale);

  margin-top: 8px;
}

.mission-quote p {

  font-family: var(--fh);

  font-size: 14px;

  font-weight: 600;

  color: var(--black);

  line-height: 1.6;

  font-style: italic;
}

.stand-grid {

  display: flex;

  flex-direction: column;

  gap: 2px;
}

.stand-card {

  background: var(--white);

  border: 1px solid var(--border);

  padding: 24px 28px;

  display: flex;

  gap: 20px;

  align-items: flex-start;

  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.stand-card:hover {

  background: var(--surface);

  border-color: #ff7a0040;

  transform: translateX(4px);
}

.stand-num {

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 800;

  color: var(--orange);

  letter-spacing: 1px;

  flex-shrink: 0;

  padding-top: 3px;

  min-width: 20px;
}

.stand-title {

  font-family: var(--fh);

  font-size: 14px;

  font-weight: 700;

  color: var(--black);

  margin-bottom: 6px;
}

.stand-bullets {

  display: flex;

  flex-direction: column;

  gap: 4px;

  margin: 0;
}

.stand-bullets li {

  font-size: 12px;

  color: var(--mid);

  line-height: 1.5;

  display: flex;

  align-items: flex-start;

  gap: 8px;
}

.stand-bullets li::before {

  content: '\2192';

  color: var(--orange);

  font-size: 11px;

  flex-shrink: 0;

  font-family: var(--fh);
}

/* OUR STORY */

.story {

  background: var(--page);

  padding: 88px 0;
}

.story-inner {

  display: grid;

  grid-template-columns: 380px 1fr;

  gap: 72px;

  align-items: start;
}

.story-img {

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;
}

.story-img-caption {

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--mid);

  margin-top: 10px;
}

.story-h2 {

  font-family: var(--fh);

  font-size: clamp(28px, 3.5vw, 44px);

  font-weight: 900;

  color: var(--black);

  line-height: 1.1;

  letter-spacing: -0.5px;

  margin-bottom: 28px;
}

.story-h2 span {

  color: var(--orange);
}

.story-timeline {

  display: flex;

  flex-direction: column;

  gap: 2px;
}

.st-item {

  display: flex;

  gap: 18px;

  align-items: flex-start;

  padding: 20px 22px;

  background: var(--white);

  border: 1px solid var(--border);

  border-left: 3px solid var(--orange);

  transition: background 0.3s, transform 0.3s;
}

.st-item:hover {

  background: var(--surface);

  transform: translateX(4px);
}

.st-tag {

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--orange);

  flex-shrink: 0;

  padding-top: 2px;

  min-width: 80px;
}

.st-title {

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  color: var(--black);

  margin-bottom: 4px;
}

.st-body {

  font-size: 12px;

  color: var(--mid);

  line-height: 1.55;
}

/* TEAM */

.team {

  background: var(--surface);

  padding: 88px 0;
}

.team-h2 {

  margin-bottom: 10px;
}

.team-h2 span {

  color: var(--orange);
}

.team-tabs-wrap {

  margin-bottom: 40px;

  position: relative;

  z-index: 100;
}

.team-tabs-bar {

  display: flex;

  align-items: center;

  border-bottom: 1px solid var(--border);

  gap: 0;
}

.team-tab-btn {

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--mid);

  padding: 14px 28px 13px;

  background: none;

  border: none;

  border-bottom: 2px solid transparent;

  margin-bottom: -1px;

  cursor: pointer;

  transition: color 0.22s, border-color 0.22s;

  white-space: nowrap;
}

.team-tab-btn:hover {

  color: var(--black);
}

.team-tab-btn.active {

  color: var(--orange);

  border-bottom-color: var(--orange);
}

.team-dropdown-wrap {

  display: none;

  position: relative;
}

.team-dropdown {

  display: flex;

  align-items: center;

  background: var(--white);

  border: 1.5px solid var(--orange);

  cursor: pointer;

  user-select: none;
}

.team-dropdown-selected {

  flex: 1;

  font-family: var(--fh);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--black);

  padding: 14px 18px;
}

.team-dropdown-arrow {

  width: 44px;

  height: 100%;

  min-height: 48px;

  background: var(--orange);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;
}

.team-dropdown-arrow svg {

  width: 14px;

  height: 14px;

  stroke: var(--white);

  fill: none;

  stroke-width: 2.5;

  transition: transform 0.3s var(--ease);
}

.team-dropdown.open .team-dropdown-arrow svg {

  transform: rotate(180deg);
}

.team-dropdown-menu {

  position: absolute;

  top: calc(100% + 2px);

  left: 0;

  right: 0;

  background: var(--white);

  border: 1.5px solid var(--border);

  box-shadow: 0 8px 32px #0000001a;

  z-index: 500;

  display: none;

  flex-direction: column;
}

.team-dropdown.open .team-dropdown-menu {

  display: flex;
}

.team-dropdown-option {

  font-family: var(--fh);

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--mid);

  padding: 13px 18px;

  cursor: pointer;

  border: none;

  background: transparent;

  text-align: left;

  border-left: 3px solid transparent;

  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.team-dropdown-option:hover {

  background: var(--surface);

  color: var(--black);

  border-left-color: var(--orange);
}

.team-dropdown-option.active {

  color: var(--orange);

  border-left-color: var(--orange);

  background: var(--orange-pale);
}

@media (width < 768px) {

  .team-tabs-bar {

    display: none;
  }

  .team-dropdown-wrap {

    display: block;
  }
}

.team-panel {

  display: none;
}

.team-panel.active {

  display: block;
}

.team-grid {

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 14px;
}

.member-card {

  background: var(--white);

  border: 1px solid var(--border);

  overflow: hidden;

  text-align: center;

  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.member-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 12px 32px #00000014;

  border-color: #ff7a0040;
}

.member-avatar-wrap {

  position: relative;
}

.member-avatar {

  aspect-ratio: 1;

  overflow: hidden;
}

.member-avatar img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: top;

  display: block;
}

.intern-badge {

  position: absolute;

  top: 8px;

  left: 8px;

  font-family: var(--fh);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  background: var(--orange);

  color: var(--white);

  padding: 3px 7px;
}

.member-name {

  font-family: var(--fh);

  font-size: 12px;

  font-weight: 700;

  color: var(--black);

  padding: 12px 10px 0;

  line-height: 1.3;
}

.member-view {

  display: block;

  width: 100%;

  margin-top: 10px;

  padding: 9px 0;

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--orange);

  background: var(--orange-pale);

  border: none;

  border-top: 1px solid var(--border);

  cursor: pointer;

  transition: background 0.25s, color 0.25s;
}

.member-view:hover {

  background: var(--orange);

  color: var(--white);
}

/* TEAM MODAL (Bootstrap .modal, brand-themed) */

.tm-modal-fm .modal-content {

  border-radius: 0;
}

.tm-close {

  position: absolute;

  top: 12px;

  right: 12px;

  z-index: 1;
}

.tm-top {

  display: flex;

  gap: 20px;

  padding: 28px;

  background: var(--surface);

  border-bottom: 1px solid var(--border);
}

.tm-photo {

  width: 80px;

  height: 80px;

  object-fit: cover;

  object-position: top;

  flex-shrink: 0;
}

.tm-info {

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.tm-name {

  font-family: var(--fh);

  font-size: 17px;

  font-weight: 800;

  color: var(--black);

  line-height: 1.2;

  margin-bottom: 4px;
}

.tm-dept {

  font-family: var(--fh);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--orange);

  margin-bottom: 4px;
}

.tm-intern {

  display: none;

  font-family: var(--fh);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  background: var(--orange-pale);

  color: var(--orange);

  padding: 2px 7px;

  margin-top: 2px;
}

.tm-body {

  padding: 22px 28px 28px;
}

.tm-bio {

  font-size: 13px;

  color: var(--mid);

  line-height: 1.75;

  margin-bottom: 20px;
}

.tm-li-link {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.5px;

  padding: 9px 18px;

  border: 1.5px solid var(--border);

  color: var(--black);

  transition: all 0.25s;
}

.tm-li-link svg {

  width: 13px;

  height: 13px;

  fill: currentColor;

  flex-shrink: 0;
}

.tm-li-link:hover {

  border-color: var(--orange);

  color: var(--orange);

  background: var(--orange-pale);
}

/* DOWNLOAD GATE */

#fm_download_gate {

  width: 100%;

  font-family: var(--fb);

  background: var(--page);

  padding: 88px 0;

  border-top: 1px solid var(--border);
}

.fm-card {

  display: grid;

  grid-template-columns: 300px 1fr;

  background: var(--white);

  border: 1px solid var(--border);

  box-shadow: 0 8px 40px #00000012;

  overflow: hidden;

  max-width: var(--max);

  margin: 0 auto;
}

.fm-left {

  background: var(--black);

  padding: 44px 32px;

  position: relative;

  overflow: hidden;
}

.fm-left::before {

  content: '';

  position: absolute;

  top: -80px;

  right: -80px;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  border: 44px solid #ff7a001a;

  pointer-events: none;
}

.fm-left::after {

  content: '';

  position: absolute;

  bottom: -44px;

  left: 32px;

  width: 130px;

  height: 130px;

  border-radius: 50%;

  border: 26px solid #ff7a0012;

  pointer-events: none;
}

.fm-eyebrow {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--orange);

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 20px;

  position: relative;

  z-index: 1;
}

.fm-eyebrow::before {

  content: '';

  width: 22px;

  height: 2px;

  background: var(--orange);

  flex-shrink: 0;
}

.fm-left-title {

  font-family: var(--fh);

  font-size: clamp(18px, 2vw, 23px);

  font-weight: 900;

  color: var(--white);

  line-height: 1.1;

  letter-spacing: -0.3px;

  margin-bottom: 14px;

  position: relative;

  z-index: 1;
}

.fm-left-title span {

  color: var(--orange);
}

.fm-left-desc {

  font-size: 13px;

  color: #ffffff73;

  line-height: 1.75;

  margin-bottom: 28px;

  position: relative;

  z-index: 1;
}

.fm-contents {

  display: flex;

  flex-direction: column;

  gap: 2px;

  position: relative;

  z-index: 1;
}

.fm-ci {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 13px;

  background: #ffffff0a;

  border: 1px solid #ffffff12;

  transition: background 0.2s, border-color 0.2s;
}

.fm-ci:hover {

  background: #ff7a0012;

  border-color: #ff7a002e;
}

.fm-ci-icon {

  width: 14px;

  height: 14px;

  flex-shrink: 0;

  opacity: 0.5;
}

.fm-ci-icon svg {

  width: 14px;

  height: 14px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 2;
}

.fm-ci:hover .fm-ci-icon {

  opacity: 1;
}

.fm-ci-text {

  font-size: 12px;

  color: #fff9;

  line-height: 1.4;
}

.fm-left-note {

  margin-top: 22px;

  padding: 14px 16px;

  background: #ff7a0012;

  border-left: 3px solid var(--orange);

  position: relative;

  z-index: 1;
}

.fm-left-note p {

  font-size: 11px;

  color: #ffffff61;

  line-height: 1.7;
}

.fm-right {

  padding: 44px 44px 40px;

  background: var(--page);

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.fm-right-eyebrow {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--mid);

  margin-bottom: 6px;
}

.fm-right-title {

  font-family: var(--fh);

  font-size: clamp(18px, 2.2vw, 26px);

  font-weight: 900;

  color: var(--black);

  line-height: 1.1;

  margin-bottom: 8px;
}

.fm-right-title span {

  color: var(--orange);
}

.fm-right-sub {

  font-size: 13px;

  color: var(--mid);

  line-height: 1.7;

  margin-bottom: 32px;

  max-width: 440px;
}

.fm-capture-row {

  display: flex;

  gap: 2px;

  margin-bottom: 10px;
}

.fm-email-wrap {

  flex: 1;

  position: relative;
}

.fm-email-wrap input {

  width: 100%;

  height: 52px;

  background: var(--white);

  border: none;

  border-bottom: 1px solid var(--border);

  padding: 18px 18px 6px;

  font-family: var(--fb);

  font-size: 15px;

  color: var(--black);

  outline: none;

  transition: all 0.3s var(--ease);
}

.fm-email-wrap input::placeholder {

  opacity: 0;
}

.fm-email-wrap input:focus {

  background: #ff7a0008;

  border-bottom-color: var(--orange);
}

.fm-email-wrap label {

  position: absolute;

  top: 16px;

  left: 18px;

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #0000004d;

  transition: all 0.3s var(--ease);

  pointer-events: none;
}

.fm-email-wrap input:focus ~ label,
.fm-email-wrap input:not(:placeholder-shown) ~ label,
.fm-email-wrap.has-val label {

  top: 7px;

  font-size: 9px;

  color: var(--orange);

  letter-spacing: 3px;
}

.fm-email-line {

  position: absolute;

  bottom: 0;

  left: 0;

  height: 1px;

  background: var(--orange);

  width: 0;

  transition: width 0.4s var(--ease);
}

.fm-email-wrap input:focus ~ .fm-email-line {

  width: 100%;
}

.fm-dl-btn {

  background: var(--orange);

  color: var(--white);

  font-family: var(--fh);

  font-size: 13px;

  font-weight: 700;

  padding: 0 28px;

  height: 52px;

  border: none;

  cursor: pointer;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  transition: all 0.3s var(--ease);

  white-space: nowrap;

  flex-shrink: 0;
}

.fm-dl-btn svg {

  width: 13px;

  height: 13px;

  stroke: currentColor;

  fill: none;

  stroke-width: 2.5;

  transition: transform 0.3s;
}

.fm-dl-btn:hover:not(:disabled) {

  background: var(--orange-dk);
}

.fm-dl-btn:hover:not(:disabled) svg {

  transform: translateX(4px);
}

.fm-dl-btn:disabled {

  opacity: 0.6;

  cursor: not-allowed;
}

.fm-gate-err {

  font-family: var(--fh);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  color: #e53935;

  padding: 8px 14px;

  background: #e539350d;

  border-left: 3px solid #e53935;

  display: none;

  margin-bottom: 8px;
}

.fm-gate-err.show {

  display: block;
}

.fm-gate-privacy {

  font-size: 11px;

  color: #0000004d;

  line-height: 1.6;

  display: flex;

  align-items: center;

  gap: 7px;
}

.fm-gate-privacy svg {

  width: 11px;

  height: 11px;

  stroke: #00000040;

  fill: none;

  stroke-width: 2;

  flex-shrink: 0;
}

.fm-gate-success {

  display: none;

  animation: fm-gate-up 0.4s var(--ease);
}

@keyframes fm-gate-up {

  from {

    opacity: 0;

    transform: translateY(12px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}

.fm-gate-success-icon {

  width: 52px;

  height: 52px;

  background: #ff7a0012;

  border-left: 3px solid var(--orange);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 18px;
}

.fm-gate-success-icon svg {

  width: 20px;

  height: 20px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 2;
}

.fm-gate-success-title {

  font-family: var(--fh);

  font-size: 20px;

  font-weight: 900;

  color: var(--black);

  margin-bottom: 8px;
}

.fm-gate-success-sub {

  font-size: 13px;

  color: var(--mid);

  line-height: 1.75;

  max-width: 380px;

  margin-bottom: 24px;
}

.fm-gate-retry {

  font-family: var(--fh);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--orange);

  background: none;

  border: none;

  cursor: pointer;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  transition: gap 0.3s;
}

.fm-gate-retry:hover {

  gap: 13px;
}

.fm-gate-retry svg {

  width: 11px;

  height: 11px;

  stroke: var(--orange);

  fill: none;

  stroke-width: 2.5;
}

@media (width < 760px) {

  #fm_download_gate {

    padding: 56px 24px;
  }

  .fm-card {

    grid-template-columns: 1fr;
  }

  .fm-left {

    padding: 36px 24px;
  }

  .fm-contents {

    display: none;
  }

  .fm-left-desc {

    margin-bottom: 0;
  }

  .fm-left-note {

    margin-top: 20px;
  }

  .fm-right {

    padding: 32px 24px 36px;

    justify-content: flex-start;
  }

  .fm-capture-row {

    flex-direction: column;

    gap: 2px;
  }

  .fm-dl-btn {

    width: 100%;

    justify-content: center;

    height: 48px;
  }

  .fm-email-wrap input {

    height: 48px;
  }
}

@media (width < 400px) {

  .fm-left,
  .fm-right {

    padding: 28px 16px;
  }
}

/* RESPONSIVE */

@media (width < 1100px) {

  .story-inner {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .story-img {

    aspect-ratio: 16 / 7;
  }
}

@media (width < 900px) {

  .hero-content {

    padding: 72px 24px 60px;
  }

  .hero-ctas {

    flex-direction: column;

    align-items: flex-start;
  }

  .mission-inner {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .team-grid {

    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width < 600px) {

  .team-grid {

    grid-template-columns: repeat(2, 1fr);
  }
}
