@media screen and (min-width:768px) {
  .passage-detail {
    background: #fff;
    padding: 50px;
  }
  
  .passage-detail h2, .passage-detail .l1, .passage-detail .l2 {
    text-align: center;
  }
  
  .passage-detail h2 {
    font-size: 30px;
    color: #000;
  }
  
  .edit-passage p {
    margin-top: 30px;
    font-size: 16px;
    color: #666;
    text-indent: 32px;
  }
  
  .edit-passage p .historylink {
    color: #ff5400;
    text-decoration: none;
  }
}

@media screen and (max-width:768px) {
  .passage-detail {
    background: #fff;
    padding: 20px;
  }
  
  .passage-detail h2, .passage-detail .l1, .passage-detail .l2 {
    text-align: center;
  }
  
  .passage-detail h2 {
    font-size: 16px;
    color: #000;
  }
  
  .edit-passage p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    /* text-indent: 32px; */
    line-height: 1.8;
  }
  .edit-passage p:last-child {
    text-indent: 0;
  }
  
  .edit-passage p .historylink {
    color: #ff5400;
    text-decoration: none;
  }
}

