.rail-heading-actions {
  display: grid;
  justify-items: end;
  gap: 7px;
  text-align: left;
}

.rail-heading-actions a {
  color: var(--teal-dark);
  font-size: .84rem;
  font-weight: 850;
}

.product-rail-shell {
  position: relative;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 3px 34px;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-rail .product-card {
  scroll-snap-align: start;
}

.rail-button {
  position: absolute;
  z-index: 8;
  top: 42%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d4dfe3;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(32,61,79,.14);
  cursor: pointer;
}

.rail-button:hover {
  background: var(--ink);
  color: #fff;
}

.rail-prev { right: -21px; }
.rail-next { left: -21px; }

@media (max-width: 1000px) {
  .product-rail { grid-auto-columns: calc((100% - 18px) / 2); }
}

@media (max-width: 680px) {
  .rail-heading-actions { justify-items: start; text-align: right; }
  .product-rail { grid-auto-columns: 88%; padding-inline: 1px; }
  .rail-button { display: none; }
}

