@charset "utf-8";

/* story style - 식재료 스토리 영역*/
.story {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.story .content {
  flex-flow: row;
}
.story .content .text {
  width: 370px;
}
.story .content .text strong {
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
}
.story .content .text > p {
  margin-top: 20px;
  white-space: pre-line;
  line-height: 28px;
}

/* mo -  ~ 767px*/
@media all and (max-width: 767px) {
  .story .content {
    flex-flow: column;
  }
  .story .content .text {
    width: 100%;
  }
  .story .content .text strong {
    font-size: 24px;
    line-height: 32px;
  }
  .story .content .text > p {
    font-size: 13px;
    white-space: normal;
    line-height: 24px;
  }
}