.ffl-volunteers__slider {
  position: relative;
  margin-bottom: 28px;
  padding: 0 8px;
}

.ffl-volunteers__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.ffl-volunteers__viewport.is-dragging {
  cursor: grabbing;
}

.ffl-volunteers__track {
  display: flex;
  gap: 12px;
  width: 100%;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ffl-volunteers__track.is-dragging {
  transition: none;
}

.ffl-volunteers__card {
  flex: 0 0 72%;
  width: 72%;
  max-width: 72%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 18px 16px;
  border-radius: var(--ffl-radius);
  background: #fff;
  border: 1px solid var(--ffl-line);
  box-shadow: 0 8px 22px rgba(15, 40, 60, 0.06);
  text-align: center;
}

.ffl-volunteers__name {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ffl-ink);
}

.ffl-volunteers__arrow {
  position: absolute;
  top: 42%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ffl-line);
  border-radius: 50%;
  background: #fff;
  color: var(--ffl-teal);
  box-shadow: 0 8px 22px rgba(15, 40, 60, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ffl-volunteers__arrow:hover:not(:disabled) {
  background: var(--ffl-teal);
  color: #fff;
}

.ffl-volunteers__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.ffl-volunteers__arrow[hidden] {
  display: none !important;
}

.ffl-volunteers__arrow--prev {
  left: -2px;
}

.ffl-volunteers__arrow--next {
  right: -2px;
}

.ffl-volunteers__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.ffl-volunteers__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b7c2ce;
  cursor: pointer;
}

.ffl-volunteers__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--ffl-teal);
}

.ffl-volunteers__map {
  min-height: 280px;
  border-radius: var(--ffl-radius);
  overflow: hidden;
  border: 1px solid var(--ffl-line);
  background: #e8eef3;
}

.ffl-volunteers__iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media (min-width: 700px) {
  .ffl-volunteers__card {
    flex-basis: calc((100% - 24px) / 3);
    width: calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
    min-height: 96px;
  }

  .ffl-volunteers__name {
    font-size: 16px;
  }

  .ffl-volunteers__iframe {
    min-height: 380px;
  }
}

@media (min-width: 1024px) {
  .ffl-volunteers__slider {
    padding: 0 16px;
  }

  .ffl-volunteers__card {
    flex-basis: calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
  }

  .ffl-volunteers__arrow--prev {
    left: -6px;
  }

  .ffl-volunteers__arrow--next {
    right: -6px;
  }

  .ffl-volunteers__iframe {
    min-height: 420px;
  }
}
