/* 참가자 유의사항 전용 스타일 */
.contents.sub .left .cont {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  color: #1f2937;
  line-height: 1.9;
  font-size: 15.8px;
}

/* 각 항목을 카드처럼 */
.contents.sub .left .cont section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  padding: 28px 28px 24px;
  margin: 28px 0;
  transition: all 0.2s ease;
}
.contents.sub .left .cont section:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

/* 제목 */
.contents.sub .left .cont .notice-head {
  position: relative;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
  padding-left: 14px;
}
.contents.sub .left .cont .notice-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2563eb, #3b82f6);
  opacity: 0.9;
}

/* 문단 */
.contents.sub .left .cont p {
  margin: 8px 0 0;
  color: #334155;
}

/* 항목 내 간격 조정 */
.contents.sub .left .cont p + p {
  margin-top: 10px;
}

/* 링크 */
.contents.sub .left .cont a {
  color: #2563eb;
  text-decoration: none;
  border-bottom: 1px dotted #93c5fd;
  transition: 0.25s;
}
.contents.sub .left .cont a:hover {
  color: #1d4ed8;
  border-bottom-color: #2563eb;
}

/* 번호 리스트 */
.contents.sub .left .cont ol {
  margin: 8px 0 10px 24px;
  padding: 0;
}
.contents.sub .left .cont ol li {
  margin: 6px 0;
  color: #1e293b;
}
.contents.sub .left .cont ol li::marker {
  color: #2563eb;
  font-weight: 600;
}

/* 강조 */
.contents.sub .left .cont strong {
  color: #2563eb;
  font-weight: 600;
}

/* 반응형 */
@media (max-width: 768px) {
  .contents.sub .left .cont section {
    padding: 22px 20px 20px;
    border-radius: 10px;
  }
  .contents.sub .left .cont .notice-head {
    font-size: 17px;
    padding-left: 10px;
  }
  .contents.sub .left .cont p {
    font-size: 14.8px;
    line-height: 1.75;
  }
}
