.section-title h2, .content h3 { 
  color: #5d5e65; 
}
.section-title h2 {margin-bottom: 0;}
.content h3 {
  position: relative;
  padding-left: 15px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}
.content h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #2b2c68;
}
.content-desc {padding: 0 20px;color: #5d5e65}
.content-desc dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 1.2em;
  column-gap: 20px;
  font-size: 18px;
  line-height: 1.6;
}
.content-desc strong::before {
  content: "· ";
  margin-right: 0.3rem;
}
.content-desc dt {
  font-weight: bold;
  white-space: nowrap;
}

.content-desc dd {
  margin: 0;
}
.content-desc dt::before {
  content: "· ";
  margin-right: 0.3rem;
}
.small-text {
  font-size: 15px;
  margin-left: 10px; 
  padding-bottom:0;
  margin-bottom:0;
}

.download-box {
  display: flex;
  gap: 20px;
}
.download-buttons {
  margin-top: 15px;
}

.download-btn {
  text-align: center;
  display: inline-block;
  background: linear-gradient(135deg, #4a4b8e 0%, #2b2c68 100%);
  color: white;
  text-decoration: none;
  line-height: 26px;
  padding: 2px 60px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(75, 75, 142, 0.3);
  transition: all 0.3s ease;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 75, 142, 0.4);
  text-decoration: none;
  color: white;
}


.content-desc dd .circle-number {
  font-size: 0.75em;
  vertical-align: baseline;
}

.award-table-container {
  margin: 20px 0;
}

.award-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #8283a6;
  font-size: 16px;
  margin-bottom: 15px;
}

.award-table th, .award-table td {
  border: 1px solid #8283a6;
  padding: 8px 12px;
  text-align: center;
  vertical-align: middle;
}

.award-table thead th {
  background-color: #d0d1de;
  font-weight: bold;
  color: #2b2c68;
}
.award-table tfoot td {
  font-weight: bold;
}
.award-table tbody td {
  background-color: white;
}

.award-table .idea-section {
  background-color: #f8f8fa;
  color: #666;
}

.award-notes {
  margin-top: 10px;
}

.award-notes p {
  margin: 5px 0;
  font-size: 16px;
  color: #666;
}

.judging-section {
  width: 80%;
}

.v-arrow {
  width: 12px;
  height: 12px;
  border: solid #bbb;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin: 20px auto;
}

.judging-box {
  border: 1px solid #ddd;
  padding: 30px 25px 10px;
  margin: 20px 0;
}

.judging-box h4 {
  background-color: #f1f1f3;
  text-align: center;
  padding: 15px;
  margin: -30px -25px 20px -25px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.judging-box p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 600;
}

.judging-box .sub-text {
  font-size: 18px;
  font-weight: 400;
}

.judging-box ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.judging-box ul li {
  font-size: 16px;
  margin: 8px 0;
  position: relative;
  padding-left: 15px;
}

.judging-box ul li:before {
  content: "·";
  position: absolute;
  left: 0;
}

.arrow-down {
  text-align: center;
  margin: 20px 0;
}

.arrow-down i {
  font-size: 24px;
  color: #ccc;
}

/* Notice Board Section */
.search-bar {
  display: flex;
  margin-bottom: 20px;
  justify-content: flex-end;
}

.search-bar input {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  width: 250px;
}

.btn-search {
  background-color: #1a2a47;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.notice-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-top: 2px solid #1a2a47;
}

.notice-table th,
.notice-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.notice-table th {
  background-color: #f8f8f8;
  font-weight: 600;
}

.notice-table td.title {
  text-align: left;
  width: 50%;
  cursor: pointer;
}

.notice-table td.title a:hover {
  color: #1a9fa9;
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 4px;
  border: 1px solid #ddd;
  color: #555;
  transition: all 0.2s;
}

.pagination a.active,
.pagination a:hover {
  background-color: #1a9fa9;
  color: #fff;
  border-color: #1a9fa9;
}


/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 800px;
  position: relative;
  animation: slideDown 0.4s;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

#modalTitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a2a47;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.modal-info {
  display: flex;
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-info span {
  margin-right: 15px;
}

#modalContent {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}
#modalContent img {
  max-width: 100%;
}

/* 모달 애니메이션 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* 첨부파일 관련 스타일 */
.modal-files {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.file-list-header {
  font-size: 16px;
  font-weight: 600;
  color: #1a2a47;
  margin-bottom: 10px;
}

.file-list {
  padding-left: 10px;
}

.file-item {
  margin-bottom: 8px;
}

.file-link {
  display: inline-flex;
  align-items: center;
  color: #1a9fa9;
  transition: color 0.2s;
  font-size: 14px;
  cursor: pointer;
}

.file-link:hover {
  color: #26bcbd;
  text-decoration: underline;
}

.file-link i {
  margin-right: 5px;
  font-size: 16px;
}


/* 모바일 환경 개선을 위한 반응형 스타일 */
@media screen and (max-width: 768px) {
  .content-desc {padding: 0;}
  .content-desc dl {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0.5em;
  }
  .download-box {
    gap: 0px;
    flex-direction: column;
  }
  .content-desc dd {
    font-size: 14px;
  }
  .judging-section {
    width: 100%;
  }
  .judging-box p, .judging-box .sub-text { 
    font-size: 14px;
  }
  .judging-box ul li {
    font-size: 14px;
  }
  .judging-box ul li:before {
  .judging-box {
    padding: 15px;
  }
  .judging-box h4 {
    margin: -15px -15px 10px -15px;
  }
  .award-table-container {
    padding:0;
    width: 100%;
  }
  /* 테이블 반응형 처리 */
  .notice-table {
      display: block;
      width: 100%;
  }
  
  .notice-table thead {
      display: none; /* 모바일에서는 테이블 헤더 숨김 */
  }
  
  .notice-table tbody, 
  .notice-table tr {
      display: block;
      width: 100%;
  }
  
  .notice-table tr {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 10px;
      position: relative;
  }
  
  .notice-table td {
      display: block;
      text-align: right;
      padding: 8px 10px;
      border-bottom: 1px solid #eee;
      position: relative;
  }
  
  .notice-table td:last-child {
      border-bottom: none;
  }
  
  .notice-table td:before {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      font-weight: 600;
  }
  
  .notice-table td.title {
      text-align: left;
      padding-left: 10px;
      font-size: 16px;
      font-weight: 600;
      width: 100%;
  }
  
  .notice-table td.title:before {
      content: none;
  }
  
  /* 페이지네이션 */
  .pagination a {
      width: 30px;
      height: 30px;
      margin: 0 3px;
      font-size: 13px;
  }
  
  /* 모달 */
  .modal-content {
      width: 95%;
      margin: 10% auto;
      padding: 15px;
  }
  
  #modalTitle {
      font-size: 18px;
  }
  
  #modalContent {
      font-size: 14px;
  }
  
  .close {
      top: 10px;
      right: 15px;
  }
  
  .modal-info {
      flex-direction: column;
  }
  
  .modal-info span {
      margin-bottom: 5px;
  }

  /* 첨부파일 모바일 스타일 */
  .modal-files {
      margin-top: 15px;
      padding-top: 10px;
  }
  
  .file-list-header {
      font-size: 14px;
  }
  
  .file-link {
      font-size: 13px;
  }
  
  .file-item {
      margin-bottom: 10px;
  }
}