.product-selector {
  padding: 0 clamp(24px, 8vw, 140px) 110px;
  background: #fff;
}

.product-selector a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, .42fr) 1fr 64px;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  min-height: 178px;
  color: var(--navy);
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: padding .35s cubic-bezier(.22, .8, .2, 1), background .3s ease;
}

.product-selector a:last-child { border-bottom: 1px solid var(--line); }
.product-selector span { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.product-selector h2 { margin: 0; font-size: clamp(30px, 4vw, 62px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.product-selector i { width: 52px; height: 52px; display: grid; place-items: center; justify-self: end; color: var(--blue); border: 1px solid var(--line); border-radius: 50%; font-size: 21px; font-style: normal; transition: transform .3s ease, color .3s ease, background .3s ease; }
.product-selector a:hover,.product-selector a:focus-visible { padding-left: 24px; padding-right: 24px; background: #eef5f7; outline: 0; }
.product-selector a:hover i,.product-selector a:focus-visible i { color: #fff; background: var(--blue); transform: rotate(45deg); }

.product-detail-hero { min-height: calc(100vh - 84px); }
.product-detail-hero h1 { max-width: 1180px; font-size: clamp(54px, 7vw, 112px); }
.product-detail-hero > p { max-width: 620px; }
.product-detail-space { min-height: clamp(110px, 22vh, 260px); }

.selection-page main {
  min-height: calc(100vh - 84px);
}

.selection-page .detail-hero {
  min-height: calc(100vh - 84px);
  padding-top: clamp(42px, 6vh, 70px);
  padding-bottom: clamp(48px, 7vh, 82px);
}

.selection-page .detail-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(48px, 5.4vw, 82px);
}

.selection-page .detail-hero > p {
  max-width: 720px;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.42;
}

.selection-page .product-selector {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 5px;
  margin-top: clamp(36px, 6vh, 72px);
  padding: 20px 0 0;
  border-top: 1px solid rgba(8, 40, 59, .2);
  background: transparent;
}

.selection-page .product-selector a {
  display: block;
  position: relative;
  min-height: 0;
  padding: 10px 0 8px 18px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.selection-page .product-selector a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 16px;
  background: var(--ice);
  transform: translateY(-50%);
  transition: height .25s ease, background .25s ease;
}

.selection-page .product-selector h2 {
  margin: 0;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em;
}

.selection-page .product-selector a:hover,
.selection-page .product-selector a:focus-visible {
  padding: 10px 0 8px 18px;
  color: var(--blue);
  border-bottom-color: var(--ice);
  background: transparent;
  transform: translateY(-2px);
  outline: 0;
}

.selection-page .product-selector a:hover::before,
.selection-page .product-selector a:focus-visible::before {
  height: 24px;
  background: var(--blue);
}

@media (max-width: 720px) {
  .product-selector { padding: 0 24px 80px; }
  .product-selector a { grid-template-columns: 1fr 44px; gap: 16px; min-height: 150px; }
  .product-selector span { grid-column: 1 / -1; align-self: end; }
  .product-selector h2 { align-self: start; font-size: clamp(28px, 8vw, 42px); }
  .product-selector i { grid-column: 2; grid-row: 2; width: 42px; height: 42px; }
  .product-selector a:hover,.product-selector a:focus-visible { padding-left: 12px; padding-right: 12px; }
  .product-detail-hero { min-height: calc(100vh - 72px); }
  .selection-page main { min-height: auto; }
  .selection-page .detail-hero { min-height: calc(100vh - 72px); padding-top: 58px; padding-bottom: 88px; }
  .selection-page .product-selector { display: grid; gap: 5px; margin-top: 42px; padding: 16px 0 0; }
  .selection-page .product-selector a,
  .selection-page .product-selector a:hover,
  .selection-page .product-selector a:focus-visible { padding: 10px 0 10px 18px; }
}
