.stock-card {
  height: 350px;
  background-color: #E8E6D4;
  border-radius: 8px;
  display: flex;
  left: 0;
}

.stock-info {
  width: 580px;
  height: 350px;
  box-sizing: border-box;
  padding: 50px 20px 50px 30px;
  display: flex;
  flex-direction: column;
}

.stock-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 100%;
  color: #18383C;
  margin: 0 0 20px 0;
}

.stock-conditions {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 42px 0; /* только снизу */
}

.stock-button {
  width: 312px;
  height: 60px;
  line-height: 60px;
}

.stock-image-wrapper {
  width: 575px;
  height: 340px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
  margin: 5px 5px 5px 0;
}

.stock-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {

  .stock-card {
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 0;
    border-radius: 8px;
    background-color: #E8E6D4;
  }

  .stock-info {
    width: 100%;
    height: 100%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .stock-title {
    font-size: 24px;
    margin: 0;
    line-height: 100%;
    margin-bottom: 20px;
  }

  .stock-conditions {
    font-size: 20px;
    margin: 0 0 30px 0;
    line-height: 100%;
    text-transform: uppercase;
  }

  .stock-button {
    padding: 0;
    border-radius: 30px;
    line-height: 60px;
    font-size: 14px;
  }

  .stock-image-wrapper {
    width: 100%;
    height: 270px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    margin: 0;
    padding: 5px 5px 5px 0;
  }

  .stock-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 480px) {

  .stock-card {
    width: calc(100% - 10px);
    height: 100%;
    min-height: 290px;
    flex-direction: column;
    border-radius: 8px;
    background-color: #E8E6D4;
    gap: 20px;
    align-items: center;
    padding: 20px 5px 5px 5px;
  }

  .stock-info {
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
  }

  .stock-title {
    height: 87px;
    font-size: 24px;
    margin: 0;
    line-height: 100%;
    margin-bottom: 20px;
  }

  .stock-conditions {
    height: 48px;
    font-size: 20px;
    margin: 0 0 30px 0;
    line-height: 100%;
    text-transform: uppercase;
  }

  .stock-button {
    width: 270px;
    height: 60px;
    padding: 0;
    border-radius: 30px;
    line-height: 60px;
    font-size: 14px;
  }

  .stock-image-wrapper {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    border-top-right-radius: 0;
    border-top-right-radius: 0;
    margin: 0;
    padding: 0;
  }

  .stock-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .special-card__button {
    width: 100%;
  }
}