.content-depth {
  padding: clamp(4.8rem, 8vw, 8.5rem) 0;
  background: #eeece5;
  color: #0b0d10;
}

.content-depth.is-dark {
  background: #0b0e13;
  color: #f3f2ed;
}

.content-depth-wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.content-depth-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.content-depth-kicker {
  display: block;
  margin-bottom: 1rem;
  color: #315cff;
  font: 600 .7rem/1.4 "Space Mono", ui-monospace, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.content-depth h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.055em;
}

.content-depth-head > div:last-child {
  color: #5f6570;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.content-depth.is-dark .content-depth-head > div:last-child {
  color: #a5adb8;
}

.content-depth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #b9b7b0;
  border-left: 1px solid #b9b7b0;
}

.content-depth.is-dark .content-depth-grid {
  border-color: rgba(255, 255, 255, .2);
}

.content-depth-card {
  min-height: 320px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border-right: 1px solid #b9b7b0;
  border-bottom: 1px solid #b9b7b0;
}

.content-depth.is-dark .content-depth-card {
  border-color: rgba(255, 255, 255, .2);
}

.content-depth-card > span {
  color: #315cff;
  font: 600 .64rem/1.4 "Space Mono", ui-monospace, monospace;
  letter-spacing: .08em;
}

.content-depth-card h3 {
  margin: 3.5rem 0 1.1rem;
  font-size: clamp(1.55rem, 2.35vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.content-depth-card p,
.content-depth-card li {
  color: #5f6570;
  line-height: 1.68;
}

.content-depth.is-dark .content-depth-card p,
.content-depth.is-dark .content-depth-card li {
  color: #a5adb8;
}

.content-depth-card ul {
  display: grid;
  gap: .75rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.content-depth-card li {
  position: relative;
  padding-left: 1.1rem;
}

.content-depth-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #315cff;
}

.content-depth-note {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1.65fr);
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #b9b7b0;
  border-bottom: 1px solid #b9b7b0;
}

.content-depth.is-dark .content-depth-note {
  border-color: rgba(255, 255, 255, .2);
}

.content-depth-note strong {
  color: #315cff;
  font: 600 .72rem/1.5 "Space Mono", ui-monospace, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.content-depth-note p {
  max-width: 900px;
  color: #555c66;
  line-height: 1.75;
}

.content-depth.is-dark .content-depth-note p {
  color: #a5adb8;
}

.content-depth-followup {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1.65fr);
  gap: 2rem;
  padding: 2rem 0 0;
}

.content-depth-followup h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.content-depth-followup p {
  max-width: 900px;
  margin: 0;
  color: #555c66;
  line-height: 1.75;
}

.content-depth.is-dark .content-depth-followup p {
  color: #a5adb8;
}

.content-depth-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.content-depth-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border: 1px solid currentColor;
  color: inherit;
  font-weight: 600;
}

.content-depth-links a:hover {
  border-color: #315cff;
  background: #315cff;
  color: #fff;
}

@media (max-width: 900px) {
  .content-depth-head,
  .content-depth-note,
  .content-depth-followup {
    grid-template-columns: 1fr;
  }

  .content-depth-grid {
    grid-template-columns: 1fr;
  }

  .content-depth-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .content-depth-wrap {
    width: min(100% - 28px, 1180px);
  }

  .content-depth-card h3 {
    margin-top: 2.5rem;
  }
}
