@charset "UTF-8";
.page-sets {
  display: flex;
  flex-direction: row;
  max-width: 1470px;
  margin: 0 auto;
  gap: 2%;
}
.page-sets .furniture-sets {
  background-color: #F2F2F2;
  width: 49%;
  height: 350px;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.page-sets .furniture-sets .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}
.page-sets .furniture-sets .text-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-right: 20px;
}
.page-sets .furniture-sets .image-content {
  align-self: center;
  height: 100%;
  display: flex;
  align-items: center;
}
.page-sets .furniture-sets img {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
  margin-top: 0;
}
.page-sets .furniture-sets .standard-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  text-decoration: none;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.page-sets .furniture-sets .standard-btn::after {
  content: "";
  width: 16px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='11' viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3757 9.75L14.75 5.25M14.75 5.25L10.3757 0.75M14.75 5.25L0.75 5.25' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
  margin-right: 10px;
}

/* Планшетная версия */
@media (max-width: 1024px) and (min-width: 769px) {
  .page-sets .furniture-sets {
    height: auto;
  }
  .page-sets .furniture-sets .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-sets .furniture-sets .text-content {
    padding-right: 0;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
  }
  .page-sets .furniture-sets .image-content {
    justify-content: center;
    width: 100%;
  }
}
/* Мобильная версия */
@media (max-width: 768px) {
  .page-sets {
    flex-direction: column;
    gap: 20px;
  }
  .page-sets .furniture-sets {
    width: 100%;
    height: auto;
  }
  .page-sets .furniture-sets .content-wrapper {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }
  .page-sets .furniture-sets .text-content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .page-sets .furniture-sets .image-content {
    justify-content: center;
  }
}

/*# sourceMappingURL=furniture_sets.css.map */
