.choice-path {
  padding: 2.7rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.choice-path-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.choice-path-head h2 {
  margin: .25rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.choice-path-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.choice-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.choice-path-grid a {
  display: grid;
  gap: .35rem;
  min-height: 150px;
  padding: 1.25rem;
  text-decoration: none;
  background: #f8fbfb;
  border-right: 1px solid var(--line);
  transition: background .18s ease;
}

.choice-path-grid a:last-child { border-right: 0; }
.choice-path-grid a:hover,
.choice-path-grid a:focus-visible { background: var(--mist); outline: 0; }
.choice-path-grid span { color: var(--teal); font-size: .78rem; font-weight: 900; letter-spacing: .09em; }
.choice-path-grid strong { color: var(--navy); font-size: 1.4rem; }
.choice-path-grid small { color: var(--muted); font-size: .9rem; line-height: 1.45; }
.path-cards { grid-template-columns: repeat(3, 1fr) !important; }

@media (max-width: 850px) {
  .choice-path-head { display: block; }
  .choice-path-head p { margin-top: .8rem; }
  .choice-path-grid { grid-template-columns: 1fr 1fr; }
  .choice-path-grid a:nth-child(2) { border-right: 0; }
  .choice-path-grid a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .path-cards { grid-template-columns: 1fr !important; }
}

@media (max-width: 520px) {
  .choice-path-grid { grid-template-columns: 1fr; }
  .choice-path-grid a { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .choice-path-grid a:last-child { border-bottom: 0; }
}
