.notice__item {
  border-bottom: 1px solid #eeeeee;
}

.notice__preview {
  padding: 15px 0;
  cursor: pointer;
}

.notice__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.notice__date {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray);
}

.notice__status {
  font-size: 12px;
  color: var(--color-red);
}

.notice__title {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.notice__detail {
  font-size: 14px;
  font-weight: 500;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--color-light-purple);
}

.notice__content {
  padding: 20px 10px;
}

.alert__img {
  width: fit-content;
  display: block;
  margin-bottom: 25px;
}
