@charset "utf-8";
.news {
  padding-top: clamp(5rem, 1.667rem + 6.94vw, 10rem);
  padding-bottom: clamp(7.5rem, 2.083rem + 11.28vw, 15.625rem);
}
.news__inner {
      padding-left: clamp(1.25rem, -5.917rem + 14.93vw, 12rem);
    padding-right: clamp(1.25rem, -9.917rem + 23.26vw, 18rem);
}
.news__container {
      display: flex;
    column-gap: clamp(2.5rem, 0.167rem + 4.86vw, 6rem);
}
.news__left {
        width: clamp(8.75rem, 6.583rem + 4.51vw, 12rem);
    min-width: 140px;
}
.archive__title {
      height: 23px;
    font-size: 15px;
    font-weight: 700;
    padding-left: 16px;
    border-left: 6px solid #000;
    display: flex;
    align-items: center;
}
.news__left section {
      margin-top: 44px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.news__left article {
      padding-bottom: 20px;
    border-bottom: 1px solid #000;
}
.news__left article a {
      font-size: 16px;
    font-weight: 700;
    transition: all 0.5s;
}
.news__left article a:hover {
  opacity: 0.5;
}
.news__right {
  width: 100%;
  min-width: 0;
}
.newsDetail-header {
      display: flex;
    padding-bottom: clamp(0.875rem, 0.125rem + 1.56vw, 2rem);
    border-bottom: 1px solid #000;
}
.newsDetailTime {
      padding-right: clamp(1rem, 2.08vw, 2.5rem);
    border-right: 1px solid #000;
    font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
    font-weight: 700;
    line-height: 1.4;
}
.newsDetailTit {
      font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
    font-weight: 700;
    padding-left: clamp(1rem, 2.08vw, 2.5rem);
    padding-right: 20px;
    line-height: 1.4;
}
.newsDetailImg {
      margin-top: clamp(1.25rem, -0.167rem + 2.95vw, 3.375rem);
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.newsDetailTxt {
  margin-top: clamp(2.5rem, 1.833rem + 1.39vw, 3.5rem);
}

.newsdetail__btn {
      margin-top: clamp(3.5rem, 2.167rem + 2.78vw, 5.5rem);
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
  .news__inner {
    padding: 0 20px;
  }
  .news__container {
        flex-direction: column-reverse;
    row-gap: 120px;
  }
  .news__left {
        min-width: unset;
    width: 100%;
  }
  .newsDetailImg {
    width: 100%;
  }
}
  
@media (max-width: 389px) {
  .news__inner {
    padding: 0 16px;
  }
  .newsDetailTime {
    padding-right: 10px;
  }
  .newsDetailTit {
    padding-left: 10px;
  }
}