@charset "utf-8";


/*====================
Common
====================*/
.news { margin: 2.5rem auto 7.5rem; width: 70%; max-width: 1024px; }
.news__detail-btn { margin: 2rem auto; }
.news-main a { color:#000 !important; }


/*====================
Category Buttons
====================*/
.news-cate { margin: 5rem 0; display: flex; align-items: center; gap: 2.5rem; }
.news-cate a {
color: #403C3C !important;
padding: 0.5rem 1rem;
border: 1px solid #403C3C;
border-radius: 30px;
font-weight: bold;
display: block;
width: 200px;
text-align: center;
font-size: 1.125rem;
transition: all .5s;
}
.news-cate a:hover { background:#403C3C; color:#fff !important; }
.news-cate a p { line-height:1.5; font-weight:bold; }
.news-cate .webgene-blog { display:flex; justify-content:center; align-items:center; gap:2.5rem; }

.newsDetailTit{
  font-size: 20px; 
  font-weight: 400; 
  color: #000; 
  min-height: 80px;
  margin: 1.5rem 0;
  padding-bottom: 1rem;
  width: 100%;
  border-bottom: 1px solid #000;
}

.newsDetail{
	display: flex;
    gap: 5rem;
}

.newsDetailImg{
  min-width: 35%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

.newsDetailCate {
color:#403C3C !important;
padding: 0.25rem 1.5rem;
border: 1px solid #403C3C;
border-radius: 30px;
font-weight:400;
display:block;
}

.news-btn{
  margin: 3rem 0 3rem auto;
}


.newsItemTit { font-size:1rem; font-weight:400; color:#000; min-height: 80px}
.newsItemText { display:flex; align-items:baseline; margin:0.5rem 0; gap:0.5rem; font-size:clamp(0.75rem, 0.659vw + 0.3vw, 1rem); color:#707070; }
.newsItem-text { font-size:14px; font-weight:400; color:#707070; }
.newsItemCatewrap { display:flex; gap:1rem; }
.newsItemCate { line-height:1; font-size:clamp(0.75rem, 0.659rem + 0.3vw, 1rem); color:#707070!important; width:fit-content; }
.newsTextWrap { display:flex; flex-direction:column; gap:.25rem; border-bottom:1px solid #000; width:100%; padding-bottom:2rem; }

@media screen and (max-width: 1024px) {
  .news{
    width: 80%;
  }  
  .newsDetail{
      display: flex;
      gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .news{
    width: 90%;
  }  
  .newsDetailImg{
    min-width: 100%;
  }
  .newsDetail{
      flex-direction: column;
      gap: 2rem;
  }
  .news-btn{
    margin: 3rem auto;
  }
}