.interesting {
  background-color: var(--color-gray-bg);
  padding-top: 40px;
}

.interesting__slider {
  margin-top: 20px;
  padding-bottom: 40px;
}

.interesting__product {
  display: flex;
  column-gap: 20px;
  max-width: 530px;
}

.interesting__product-image {
  height: fit-content;
  width: 50%;
  aspect-ratio: 253/332;
  max-width: 253px;
  object-fit: cover;

  box-shadow: 0 75px 50px -70px var(--color-black);
}

.interesting__product-text-container {
  display: flex;
  flex-direction: column;
}

.interesting__product-title {
  font-family: 'PT Serif', 'Times New Roman', Times, serif;
  font-weight: 700;
}

.interesting__product-text {
  color: var(--color-gray);
  margin: 15px 0;
}

.interesting__product-link {
  margin-top: auto;
  border: 1px solid var(--color-gray);
  border-radius: 200px;
  padding: 11px 20px;
  width: fit-content;
  font-weight: 700;
  display: block;
}

@media (max-width: 1130px) {
  .interesting__product {
    max-width: none;
  }

}

@media (max-width: 950px) {
  .interesting__product-image {
    max-width: 320px;
  }
}

@media (max-width: 720px) {
  .interesting__product-image {
    width: auto !important;
    max-width: 420px;
  }

  .interesting__product {
    flex-direction: column;
  }

  .interesting__product-text {
    margin: 8px 0 20px;
  }

  .interesting__product-title {
    font-size: 16px;
    line-height: 21px;
    margin-top: 20px;
  }

  .interesting__title {
    font-size: 23px;
    line-height: 27px;
  }

  .interesting {
    padding-top: 30px;
  }
}