.notice-list {
  margin-top: 24px;
  border-top: 1px solid var(--gray-color, #d9d9d9);
}

.notice-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-color, #d9d9d9);
}

.notice-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.notice-date {
  flex: 0 0 auto;
  min-width: 92px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.7;
}

.notice-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  color: #111;
}

.notice-body {
  margin-top: 8px;
  padding-left: 108px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

@media (max-width: 767px) {
  .notice-head {
    gap: 10px;
  }

  .notice-date {
    min-width: 84px;
    font-size: 13px;
  }

  .notice-title,
  .notice-body {
    font-size: 13px;
  }

  .notice-body {
    padding-left: 0;
    margin-top: 6px;
  }
}

.notice-body {
  margin-top: 12px;
}

.notice-accordion {
  margin-top: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.notice-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 700;
  background: #f7f7f7;
}

.notice-accordion summary::-webkit-details-marker {
  display: none;
}

.notice-accordion[open] summary {
  background: #efefef;
}

.notice-accordion-body {
  padding: 12px 16px 16px;
  border-top: 1px solid #d9d9d9;
}

.notice-accordion-body p {
  margin: 0 0 12px;
  line-height: 1.8;
}

.notice-accordion-body p:last-child {
  margin-bottom: 0;
}

.notice-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-accordion summary::-webkit-details-marker {
  display: none;
}

.notice-accordion summary::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid #333;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.2s ease;
}

.notice-accordion[open] summary::before {
  transform: rotate(90deg);
}

