.lens-carousel {
  max-width: var(--max);
  margin: 72px auto 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
}
.lens-carousel button {
  width: 58px;
  height: 58px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}
.lens-carousel p { padding: 0 24px; line-height: 1.5; }
@media (max-width: 560px) {
  .lens-carousel { grid-template-columns: 48px minmax(0, 1fr) 48px; }
  .lens-carousel button { width: 48px; height: 72px; }
  .lens-carousel p { padding: 0 14px; font-size: .84rem; }
}
