.sightseeing {
  padding: 80px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.sightseeing__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sightseeing__slider-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: slide 240s linear infinite;
  width: max-content;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sightseeing__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 56px;

}

.sightseeing__spot {
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
  max-width: 318px;
  overflow: hidden;
}

.sightseeing__spot-img {
  width: 100%;
  height: auto;
  display: block;
}

.sightseeing__description {
  max-width: 944px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
}

.sightseeing__description p {
  font-family: var(--font-family-main);
  font-size: var(--font-size-8);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  text-align: center;
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 960px) {


  .sightseeing {
    gap: 24px;
    padding: 40px 0;
  }
  .sightseeing__spot {
    max-width: 240px;
  }
  .sightseeing__body {
    gap: 24px;
  }

  .sightseeing__description p { 
    text-align: left;
  }
  .sightseeing__slider-track {
    gap: 24px;
  }

}

