.produce-detail {
    color: #2a2a30;
    max-width: 1077px;
    margin: 0 auto;
    overflow: hidden;
    overflow-x: hidden;
  }

  body::-webkit-scrollbar {
    width: 0;
  }
  
  @media (min-width: 768px) {
    .produce-detail {
      padding: 0;
    }
  }
  
  .produce-detail__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  @media (min-width: 1236px) {
    .produce-detail__content {
      flex-direction: row;
      gap: 30px;
      margin-bottom: 80px;
    }  
  }
  
  .produce-detail__title {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 20px;
  }

  @media (min-width: 1160px) {
    .produce-detail__title {
        font-size: 36px;
        font-weight: 500;
        line-height: 120%;
        margin-bottom: 30px;    
    }       
}
  
  .produce-detail__picture {
    display: flex;
    flex-shrink: 0;
  }
  
  
  .produce-detail__img {
    margin-bottom: auto;
  }
  
  .produce-detail__description {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 145%;
  }

  @media (min-width: 768px) {
    .produce-detail__description {
        font-size: 15px;
      }
  }

.produce-detail__link {
    color: #2a2a30;
    font-size: 15px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.03em;
    display: flex;
    gap: 12px;
    align-items: start;
    padding: 20px 16px;
    border: 1px solid rgb(151, 214, 249);
    border-radius: 10px;
    background-color: #ffffff;
}

@media (min-width: 1236px) {
   .produce-detail__link {
    align-items: center;
    gap: 20px;
}
}

.produce-detail__link::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("/local/templates/main/assets/img/design/file-load.svg");
    background-size: 16.5px 21px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}