
/* 검색 */
#search_wrap {
  margin:70px 0;
  display:flex;
  justify-content: center;
}
.news_search_form {
  width:70%;
  border:solid 1px var(--color-b8);
  border-radius: 20px;
  padding:20px 42px 20px 32px;
  display:flex;
  justify-content: space-between;
}
#news_search {
  width:70%;
  font-size:18px;
  font-weight: 500;
  line-height: 1.2;
  outline:none;
  border:none;
}
.news_search_form button {
  width:30px;
  height:30px;
  background-color:transparent;
  border:none;
  outline:none;
}
.news_search_form button:hover {
  cursor:pointer;
}
.news_search_form imig {
  width:100%;
}

/* 인도네시아 뉴스 내용 */
#news_list {
  margin-top:70px;
}
.news_line {
  width:100%;
  display:flex;
  align-items: center;
  justify-content: space-between;
  border-bottom:solid 1px var(--color-cc);

  margin-right:72px;
}
.news_line:hover {
  cursor: pointer;
  transition:.3s;
}
.news_line:not(:first-child) {
  margin-top:2px;
}
.notification {  
  background-color:var(--color-sub);
}
.news_line > div {
  padding:24px 32px 24px 24px;
}
/* 공지 */
.news_line .nameNdate p:first-of-type {
  font-weight: 600;
  color:var(--color-76);
}
.news_line .nameNdate p.mc {
  color:var(--color-main);
}
.news_line .nameNdate p:not(:first-of-type) {
  font-size:14px;
}
.news_line .title {
  width:80%;
}
.news_line .title h3 {
  font-size:18px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notification .title h3 {
  font-weight: 600;
}
.news_line .go_btn {
  width:32px;
  height:32px;
  display:flex;
  justify-content: center;
  align-items: center;
  background-color:transparent;
  outline: none;
  border:none;
  margin-right:32px;
}
.news_line .go_btn img {
  transition:.3s;
  cursor: pointer;
}
.tableA .nameNdate p:not(.mc),
.tableA .title h3 {
  color:black;
}

/* 태블릿 반응형 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #search_wrap {
    margin: 50px 0 !important;
  }
  
  .news_search_form {
    width: 80% !important;
    padding: 18px 36px 18px 28px !important;
  }
  
  #news_search {
    font-size: 16px !important;
  }
  
  .news_search_form button {
    width: 28px !important;
    height: 28px !important;
  }
  
  #news_list {
    margin-top: 50px !important;
  }
  
  .news_line {
    margin-right: 40px !important;
  }
  
  .news_line > div {
    padding: 20px 28px 20px 20px !important;
  }
  
  .news_line .title h3 {
    font-size: 16px !important;
  }
  
  .news_line .go_btn {
    width: 28px !important;
    height: 28px !important;
    margin-right: 28px !important;
  }
}

/* 모바일 반응형 */
@media screen and (max-width: 768px) {
  #search_wrap {
    margin: 40px 0 !important;
    padding: 0 20px !important;
  }
  
  .news_search_form {
    width: 100% !important;
    padding: 16px 32px 16px 24px !important;
    border-radius: 16px !important;
  }
  
  #news_search {
    width: 80% !important;
    font-size: 14px !important;
  }
  
  .news_search_form button {
    width: 24px !important;
    height: 24px !important;
  }
  
  #news_list {
    margin-top: 40px !important;
    padding: 0 20px !important;
  }
  
  .news_line {
    margin-right: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .news_line > div {
    padding: 16px 20px !important;
    width: 100% !important;
  }
  
  .news_line .nameNdate {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 8px !important;
  }
  
  .news_line .nameNdate p:first-of-type {
    font-size: 14px !important;
  }
  
  .news_line .nameNdate p:not(:first-of-type) {
    font-size: 12px !important;
  }
  
  .news_line .title {
    width: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 16px !important;
  }
  
  .news_line .title h3 {
    font-size: 14px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: initial !important;
    line-height: 1.4 !important;
  }
  
  .news_line .go_btn {
    position: absolute !important;
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    margin-right: 0 !important;
  }
  
  .news_line {
    position: relative !important;
    padding-right: 50px !important;
  }
}

/* 소형 모바일 반응형 */
@media screen and (max-width: 375px) {
  #search_wrap {
    margin: 30px 0 !important;
    padding: 0 16px !important;
  }
  
  .news_search_form {
    padding: 14px 28px 14px 20px !important;
    border-radius: 14px !important;
  }
  
  #news_search {
    font-size: 13px !important;
  }
  
  .news_search_form button {
    width: 20px !important;
    height: 20px !important;
  }
  
  #news_list {
    margin-top: 30px !important;
    padding: 0 16px !important;
  }
  
  .news_line > div {
    padding: 14px 16px !important;
  }
  
  .news_line .nameNdate p:first-of-type {
    font-size: 13px !important;
  }
  
  .news_line .nameNdate p:not(:first-of-type) {
    font-size: 11px !important;
  }
  
  .news_line .title h3 {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
  
  .news_line .go_btn {
    width: 20px !important;
    height: 20px !important;
    right: 16px !important;
  }
  
  .news_line {
    padding-right: 40px !important;
  }
}