@media screen and (min-width: 768px) {
  #pageTop {
    padding-bottom: 180px;
  }
}
@media screen and (max-width: 767px) {
  #pageTop {
    padding-bottom: 140px;
  }
}
.secNews {
  padding: 140px 0 0;
  overflow: hidden;
}
.secNews .newsItem {
  border-bottom: 1px solid #EB6D1E;
  position: relative;
}
.secNews .newsItem::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FFB88D;
  content: "";
  transition: all 1.5s ease;
  z-index: 3;
}
.secNews .newsItem:hover::before {
  width: 100%;
}
.secNews .newsItem a {
  display: flex;
  align-items: center;
  padding: 24px 0;
  gap: 40px;
  text-decoration: none;
  color: #EB6D1E;
}
.secNews .newsMeta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.secNews .newsMeta .newsDate {
  font-size: clamp(15px, 1.11vw, 16px);
  font-weight: bold;
}
.secNews .newsMeta .newsCat {
  background-color: #EB6D1E;
  color: #fff;
  font-size: 12px;
  padding: 4px 16px;
  border-radius: 20px;
  text-align: center;
  min-width: 80px;
}
.secNews .newsTitle {
  color: #868686;
  font-size: clamp(15px, 1.11vw, 16px);
  font-weight: bold;
  line-height: 1.6;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.secNews .newsBtn {
  display: flex;
  justify-content: center;
}
.secNews .newsBtn .comBtn {
  background-color: #fff;
  color: #EB6D1E;
  border: none;
  min-width: 160px;
  height: 46px;
  border-radius: 23px;
}
.secNews .newsBtn .comBtn:hover {
  background-color: #EB6D1E;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .secNews {
    padding: 50px 0 0;
  }
  .secNews .newsItem a {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    gap: 10px;
  }
  .secNews .newsMeta {
    gap: 15px;
  }
  .secNews .newsMeta .newsDate {
    font-size: 14px;
  }
  .secNews .newsTitle {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .secNews .newsBtn .comBtn {
    min-width: 140px;
    height: 40px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */