.sightseeing-facilities {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 120px;
}

.sightseeing-facilities__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sightseeing-facilities__grid {
  display: grid;
  gap: 80px;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  width: 100%;
}

.sightseeing-facilities__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
  height: 100%;
  gap: 16px;
}

.sightseeing-facilities__image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}

.sightseeing-facilities__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sightseeing-facilities__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex: 1;
  margin-top: 16px;
}

.sightseeing-facilities__title {
  font-family: var(--font-family-accent), var(--font-family-main);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--color-text);
  white-space: nowrap;
  margin: 0;
}

.sightseeing-facilities__underline {
  width: 80px;
  height: 0;
  border-bottom: 1px solid var(--color-main);
  position: relative;
}

.sightseeing-facilities__underline::before {
  border-radius: 100vw;
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
}

.sightseeing-facilities__description {
  font-size: var(--font-size-9);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
  flex: 1;
}

.sightseeing-facilities__button {
  background-color: var(--color-main);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--border-radius-lg);
  width: 176px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sightseeing-facilities__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.sightseeing-facilities__button-text {
  font-family: var(--font-family-main);
  font-size: var(--font-size-9);
  font-weight: 700;
  line-height: 1.96;
  color: var(--color-white);
  white-space: nowrap;
  letter-spacing: 1.4px;
}

.sightseeing-facilities__button-icon {
  color: var(--color-white);
  flex-shrink: 0;
}

@media screen and (max-width: 960px) {
  .sightseeing-facilities {
    padding-bottom: 40px;
  }
  .sightseeing-facilities__grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .sightseeing-facilities__card {}
  .sightseeing-facilities__title {
    font-size: var(--font-size-8);
  }
  .sightseeing-facilities__description {
    font-size: var(--font-size-9);
  }
  .sightseeing-facilities__button {
    width: 100%;
  }
  .sightseeing-facilities__content {
    margin-top: 0;
  }
  .sightseeing-facilities__title {
    font-weight: 500;
  }
}
