/* ========== Component: Board News (Notice & Regional News) ========== */
.section-board-news {
  position: relative;
  background: #ffffff;
  /* Soft Honey Cream */
  padding: 100px 20px;
  width: 100%;
  box-sizing: border-box;
}

.section-board-news .main_re_container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Pretendard', sans-serif;
}

.section-board-news .section-header {
  text-align: left;
  margin-bottom: 60px;
}

.section-board-news .main-title {
  font-size: 36px;
  font-weight: 800;
  color: #3E2723;
  /* Deep Honey Brown */
  margin-bottom: 15px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #FF8F00 0%, #FFB300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-board-news .main-subtitle {
  font-size: 20px;
  color: #795548;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-board-news .board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.section-board-news .board-column {
  background: #ffffff;
  border-radius: 40px;
  padding: 45px;
  box-shadow: 0 20px 50px rgba(255, 179, 0, 0.08);
  border: 1px solid rgba(255, 179, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.section-board-news .board-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #FF8F00, #FFD54F);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-board-news .board-column:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(255, 143, 0, 0.15);
  border-color: #FFB300;
}

.section-board-news .board-column:hover::before {
  opacity: 1;
}

.section-board-news .board-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-board-news .board-title {
  font-size: 28px;
  font-weight: 700;
  color: #3E2723;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-board-news .board-subtitle {
  font-size: 16px;
  color: #8D6E63;
  font-weight: 400;
  margin: 0;
}

.section-board-news .view-more {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #FFF8E1;
  border-radius: 30px;
  color: #E65100;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 179, 0, 0.2);
}

.section-board-news .view-more:hover {
  background: #FFB300;
  color: #fff;
  border-color: #FFB300;
  transform: translateX(3px);
  box-shadow: 0 5px 15px rgba(255, 179, 0, 0.3);
}

.section-board-news .view-more i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.section-board-news .view-more:hover i {
  transform: rotate(90deg);
}

.section-board-news .board-list {
  display: flex;
  flex-direction: column;
}

.section-board-news .board-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px dotted rgba(255, 179, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-board-news .board-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-board-news .board-item:first-child {
  padding-top: 0;
}

.section-board-news .item-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}

.section-board-news .item-title {
  font-size: 19px;
  color: #4E342E;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.section-board-news .board-item:hover .item-title {
  color: #FF6F00;
  transform: translateX(5px);
}

.section-board-news .badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #FF6D00;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 109, 0, 0.3);
}

.section-board-news .item-date {
  font-size: 15px;
  color: #A1887F;
  margin-left: 30px;
  flex-shrink: 0;
  font-weight: 400;
}

.section-board-news .empty-list {
  padding: 40px 0;
  text-align: center;
  color: #BCAAA4;
  font-size: 16px;
}

/* 반응형 */
@media (max-width: 1400px) {
  .section-board-news .board-grid {
    gap: 20px;
  }

  .section-board-news .board-column {
    padding: 30px;
  }
}

@media (max-width: 1024px) {
  .section-board-news {
    padding: 80px 20px;
  }

  .section-board-news .board-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-board-news {
    padding: 60px 15px;
  }

  .section-board-news .board-column {
    padding: 30px 25px;
    border-radius: 30px;
  }

  .section-board-news .board-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .section-board-news .section-header {
    margin-bottom: 40px;
  }

  .section-board-news .main-title {
    font-size: 30px;
  }

  .section-board-news .main-subtitle {
    font-size: 17px;
  }

  .section-board-news .board-title {
    font-size: 24px;
  }

  .section-board-news .board-subtitle {
    font-size: 15px;
  }

  .section-board-news .item-title {
    font-size: 17px;
  }

  .section-board-news .item-date {
    font-size: 14px;
    margin-left: 15px;
  }

  .section-board-news .view-more {
    padding: 8px 16px;
    font-size: 14px;
  }
}