.swiper {
  width: 100%;
  padding: 50px 0;
}
.swiper-slide {
  width: 600px;
  height: 300px;
  background: white;
  border: 1px solid black;
}
.slide-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slide-img {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-img img {
  max-width: 300px;
  min-width: 300px;
  height: auto;
}
.slide-text {
  font-size: 18px;
  max-width: 200px;
  word-wrap: break-word;
  padding: 20px;
}
.slide-text h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
}
.swiper-slide a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
