.country-interest {
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 40px 0;
  overflow: hidden;
}

.country-interest__grid {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 1370px;
  min-width: 0;
  margin: 0 auto;
  padding: 0 24px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
}

.country-interest__grid.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.country-interest__grid.is-dragging .interest-card {
  pointer-events: none;
}

.interest-card {
  flex: 0 0 516px;
  flex-shrink: 0;
  width: 516px;
  height: 283px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 32px;
  border-radius: 32px;
  background: #fff;
  color: #000;

  scroll-snap-align: start;
}

.interest-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}

.interest-card p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  color: #000;
}

.interest-card span {
  display: block;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.35;
  color: #6f6f6f;
}

.interest-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.interest-card__bottom small,
.interest-card__bottom strong {
  font-size: 18px;
  line-height: 1;
  color: #000;
}

.interest-card__bottom strong {
  font-weight: 500;
}

.country-interest__grid {
  scrollbar-width: none;
}

.country-interest__grid::-webkit-scrollbar {
  display: none;
}