/* Feature ---------------------------- */
.feature {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10%;
}

.feature-head {
  position: relative;
  z-index: 1;
  width: 50%;
  margin-bottom: -5%;
  padding: 1.5rem 2rem;
  background-color: #fff;
  box-sizing: border-box;
}

.feature-body {
  width: 60%;
  margin-left: -5%;
}

.feature-title {
  font-size: 1.2rem;
}

.feature-desc {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: rgba(0 0 0 / 50%);
}

.feature-img {
  max-width: 100%;
  height: auto;
}

.feature-ul {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.feature-li {
  width: 33.333333%;
}

.feature-link {
  display: inline-block;
  color: #cd8c96;
  font-size: .9rem;
  text-transform: capitalize;
}

.feature-link:hover {
  text-decoration: none;
}

.feature-reverse {
  flex-direction: row-reverse;
}

.feature-reverse .feature-head {
  margin-left: -5%;
}

.feature-reverse .feature-body {
  margin-left: 0;
}


/* Article ----------------------- */

.article-quote,
.article-title-lg,
.article-title-sm {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.article-quote {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  color: rgba(0 0 0 / 50%);
}

.article .fa-quote-left,
.article .fa-quote-right {
  color: #eee;
  font-size: 3rem;
}

.article .fa-quote-left {
  position: absolute;
  left: 15%;
  top: -1rem;
}

.article .fa-quote-right {
  position: absolute;
  right: 15%;
  bottom: -1rem;
}

.article-title-lg {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(0 0 0 / 50%);
  text-decoration: underline wavy #cd8c96;
}

.article-title-sm {
  font-size: 1.1rem;
  list-style-type: square;
  display: list-item;
  margin-left: 1.2rem;
  color: rgba(0 0 0 / 50%);
}

.article-desc {
  margin-top: 1rem;
  margin-left: 1.2rem;
  line-height: 1.5;
}

/* Detail ------------------------------- */

.detail-head {
  display: block;
  line-height: 1.8;
  cursor: pointer;
}

.detail-body {
  padding-top: .5rem;
  border-top: 1px solid rgba(0 0 0 / 10%);
}

.detail-title {
  display: inline-block;
  font-size: 1.5rem;
  color: #ff8f00;
}

.detail-date {
  margin-left: 1rem;
  color: rgba(0 0 0 / 50%);
}

.detail-desc {
  line-height: 1.6;
  text-align: justify;
}

.detail-img {
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 480px) {
  .feature {
    flex-direction: column;
  }

  .feature-head,
  .feature-body {
    width: 100%;
  }

  .feature-head {
    padding: 0;
    margin-bottom: 0;
  }

  .feature-body {
    margin-top: 1rem;
    margin-left: 0;
  }

  .article-desc {
    margin-left: 0;
  }

  .article .fa-quote-left,
  .article .fa-quote-right {
    font-size: 2rem;
  }

  .article .fa-quote-left {
    left: 0;
    top: -1rem;
  }

  .article .fa-quote-right {
    right: 0;
    bottom: -2rem;
  }

  .article-quote {
    font-size: 1.1rem;
  }

  .article-title-lg {
    text-align: center;
  }

  .detail + .detail {
    padding-top: 1rem;
  }
  
  .detail-head {
    line-height: 1.3;
  }

  .detail-body {
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .detail-date {
    display: block;
    margin-left: 0;
    margin-top: .5rem;
  }
}