.latest-news-list {
    font-family: 'Pretendard', sans-serif;
  }
  
  .news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
  }
  
  .news-underline {
    border: none;
    border-bottom: 2px solid #222;
    margin-bottom: 16px;
    width: 100%;
  }
  
  .latest-news-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .latest-news-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  
  .latest-news-list li a {
    color: #111;
    text-decoration: none;
    display: block;
    font-weight: 500;
  }
  
  .latest-news-list li a:hover {
    text-decoration: underline;
  }
  
  .latest-news-list li.empty {
    color: #999;
    padding: 10px 0;
  }
  .latest-news-list { position: relative; overflow: hidden; }
  .news-slider { display: flex; transition: transform 0.3s ease; }
  .news-slide { flex: 0 0 100%; /* 한 번에 한 페이지(5개) */ }
  .news-slide ul { list-style: none; margin: 0; padding: 0; }
  .news-slide li {
    display: flex;
    align-items: center;
    margin: 0.5em 0;
  }
  .news-number {
    display: inline-block;
    width: 1.5em;
    text-align: left;
    margin-right: 0.5em;
    font-weight: bold;
    color: var(--accent-color);
  }
  .news-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  .news-nav button {
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 1.5em;
    line-height: 1;
    cursor: pointer;
    padding: 0.2em 0.5em;
    border-radius: 4px;
  }
  .latest-news-wrapper {
    overflow: hidden;
  }
  
  .news-heading {
    margin-bottom: 0.5em;
  }
  




  .latest-news-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .news-slide {
    display: none;
  }
  .news-slide.active {
    display: block;
  }
  
  .news-slide ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .news-slide li {
    margin: 0.75em 0;
    display: flex;
    align-items: flex-start;
  }
  .news-number {
    font-weight: bold;
    color: #000; /* 번호 항상 검정색 */
    margin-right: 0.5em;
    width: 1.5em;

  }
  
  .news-dots {
    margin-top: 1em;
    text-align: center;
  }
  .news-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
  }
  .news-dot.active {
    background: #000;
  }