.notice-section .announcement-section-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.notice-section .announcement-section-header::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #d4a574;
  margin: 0 auto 20px;
}

.notice-section .announcement-page-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.notice-section .announcement-page-subtitle {
  color: #4c4c4c;
  font-weight: 300;
}

@media (max-width: 768px) {
  .notice-section .announcement-page-title {
    margin-bottom:10px;
  }
}

.notice-section .announcement-list {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
  max-height: 150px;
  overflow: auto;
}

.notice-section .announcement-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  column-gap: 20px;
}

.notice-section .announcement-item:last-child {
  border-bottom: none;
}

.notice-section .announcement-date-wrapper {
  display: flex;
  align-items: center;
}

.notice-section .announcement-date-wrapper .announcement-label {
  display: none;
}

.notice-section .announcement-date {
  min-width: 80px;
  font-size: 14px;
  color: #4a90e2;
  margin-right: 0;
  padding-top: 2px;
}

.notice-section .announcement-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-section .announcement-label {
  background-color: #555555;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  min-width: 60px;
  text-align: center;
}

.notice-section .announcement-title {
  font-size: 16px;
  color: #000000;
  flex: 1;
  text-decoration: none;
  cursor: pointer;
}

.notice-section .announcement-title:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .notice-section .announcement-item {
    flex-direction: column;
  }

  .notice-section .announcement-date-wrapper {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .notice-section .announcement-date-wrapper .announcement-label {
    display: inline-block;
    margin-left: 12px;
  }

  .notice-section .announcement-date {
    margin-right: 0;
  }

  .notice-section .announcement-content {
    width: 100%;
  }

  .notice-section .announcement-content .announcement-label {
    display: none;
  }
}