/* Tools horizontal slider */
.lp-tools-slider {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}

.lp-tools-slider .lp-wrap {
  max-width: 95%;
}

.lp-tools-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 32px;
  align-items: center;
}

.lp-tools-left h2 {
  margin: 0 0 14px;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -1.4px;
}

.lp-tools-left p {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  max-width: 46ch;
}

.lp-tools-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 0;
}

.lp-dot {
  display: inline-block;
  height: 6px;
  width: 40px;
  border-radius: 999px;
  background: var(--color-white);
  opacity: 0.85;
  transition: width 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}

.lp-dot:hover {
  opacity: 1;
}

.lp-dot:focus,
.lp-dot.is-active {
  width: 120px;
  background: var(--color-accent-p);
  opacity: 1;
  outline: none;
}

.lp-tools-viewport {
  overflow: hidden;
  border-radius: var(--radius-card);
  cursor: grab;
}

.lp-tools-viewport.is-dragging {
  cursor: grabbing;
}

.lp-tools-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
  padding: 8px 2px 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lp-tools-track::-webkit-scrollbar {
  display: none;
  height: 0;
}

.lp-tool-card {
  flex: 0 0 calc(50% - 11px);
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius-card);
  border: 2px solid var(--color-accent-p);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  scroll-snap-align: start;
}

.lp-tool-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 22px;
}

.lp-tool-card p {
  margin: 0;
  font-size: 22px;
  line-height: 26px;
}

.lp-tool-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-tool-icon img {
  width: 22px;
  height: 22px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}
