/* ════════════════════════════════════════════
   메인 페이지
   ════════════════════════════════════════════ */

/* ── 메인 배너 ── */
#main-banner {
  width: 100%;
  height: 700px;
  background-image: url("../../img/banner_background_new.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.banner-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.banner-inner h1 {
  margin: 0 0;
}

.banner-text {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.banner-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 4px;
}

.banner-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.banner-title em {
  font-style: normal;
  color: var(--color-primary);
  text-decoration-thickness: 3px;
}

.banner-subtitle {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  margin-top: -4px;
}

.banner-subtitle em {
  font-style: normal;
  color: var(--color-primary);
  font-weight: 700;
}

.banner-desc {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 600;
  margin-top: 26px;
}

.banner-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  white-space: nowrap;
}

/* Primary — 흰 배경 + 키컬러 텍스트 + 화살표 SVG */
.banner-btn--primary {
  background-color: #fff;
  color: var(--color-primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  gap: 0.5rem;
}

.banner-btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  background-color: #fef2f0;
}

.banner-btn--primary svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.banner-btn--primary:hover svg {
  transform: translateX(4px);
}

/* Outline — 투명 + 흰 보더 */
.banner-btn--outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.banner-btn--outline:hover {
  background-color: #fff;
  color: var(--color-primary);
  transform: translateY(-4px);
}

/* 우측 이미지 영역 */
.banner-img-wrap {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 70%;
}

.banner-img {
  height: 100%;
  max-height: 680px;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 1;
}

.banner-img-text {
  position: absolute;
  bottom: 48px;
  right: 0;
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text);
  text-align: right;
  line-height: 1.25;
  opacity: 0.12;
  letter-spacing: 0.02em;
  z-index: 0;
}

/* ════════════════════════════════════════════
   대회 정보 바
   ════════════════════════════════════════════ */
.info-bar {
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.info-bar-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  padding-top: 24px;
  padding-bottom: 24px;
  align-items: start;
}

/* 왼쪽 영역 */
.info-left {
  padding-right: 40px;
  border-right: 1px solid var(--color-border);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.info-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.info-item--full {
  grid-column: 1 / -1;
}

/* 오른쪽 영역 */
.info-right {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-division {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: calc(52px + 10px);
}

.info-bar-label {
  flex-shrink: 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  min-width: 52px;
}

.info-bar-value {
  font-size: var(--fs-sm);
  color: #111;
  line-height: 1.5;
}

/* PC 전용 — 정보 바 폰트 1.4배 */
@media (min-width: 1280px) {
  .info-bar-label,
  .info-bar-value {
    font-size: calc(var(--fs-sm) * 1.4);
  }

  .info-bar-label {
    min-width: 73px;
  }

  .info-division {
    padding-left: calc(73px + 10px);
  }

  /* 예선접수 날짜 줄바꿈 방지 + 컬럼 간격 확장 */
  .info-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 14px 56px;
  }

  .info-item .info-bar-value {
    white-space: nowrap;
  }
}

/*대회 일정 (editorial timeline) */
#schedule {
  padding: 96px 0 88px;
  background: #fff;
  position: relative;
}

#schedule::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e8e8e8 20%, #e8e8e8 80%, transparent 100%);
}

/* 헤더 */
.ds-sched-head {
  display: block;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 4px solid var(--color-text);
}
.ds-sched-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--color-text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.ds-sched-rule {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--color-text);
}
.ds-sched-h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -.02em;
}
.ds-sched-h2 em {
  font-style: normal;
  color: var(--color-primary);
}

.sc-label-main {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
.sc-title-main {
    font-size: var(--fs-xl);
    color: var(--color-primary);
    font-weight: 600;
}

/* Progress bar */
.ds-sched-progress {
  margin: 0 0 56px;
  padding: 0 8px;
}
.ds-sched-progress-track {
  position: relative;
  height: 4px;
  background: #f1ecec;
  border-radius: 2px;
}
.ds-sched-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, #ff6a3d 100%);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.ds-sched-progress-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d8d8d8;
}
.ds-sched-progress-dot.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(255, 89, 32, 0.15);
  width: 16px;
  height: 16px;
}
.ds-sched-progress-dot.is-done {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.ds-sched-progress-labels {
  position: relative;
  height: 1.4em;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: #9a9a9a;
  letter-spacing: .04em;
}
.ds-sched-progress-labels span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}
/* 첫/마지막 라벨은 좌우 끝에 붙지 않도록 보정 */
.ds-sched-progress-labels span:first-child { transform: translateX(0); }
.ds-sched-progress-labels span:last-child  { transform: translateX(-100%); }

/* Editorial timeline list */
.ds-sched-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ds-sched-row {
  display: grid;
  grid-template-columns: 320px 36px 1fr;
  gap: 28px;
  padding: 28px 0 28px 24px;
  border-bottom: 1px solid #efefef;
  align-items: start;
  transition: background .25s;
  position: relative;
}
.ds-sched-row:hover { background: #fcfafa; }
.ds-sched-row.is-active {
  background: linear-gradient(90deg, rgba(255, 89, 32, 0.04) 0%, rgba(255, 89, 32, 0) 50%);
}
.ds-sched-row.is-active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--color-primary);
}

/* 좌측: 번호 + 라벨/날짜 */
.ds-sched-row-num {
  padding-top: 2px;
  padding-right: 24px;
  border-right: 1px solid #efefef;
  min-height: 50px;
}
.ds-sched-row-num-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ds-sched-row-n {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 44px;
  font-weight: 200;
  color: #d8d8d8;
  line-height: 1;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.ds-sched-row-num-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ds-sched-row-en {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #9a9a9a;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.ds-sched-row-date {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -.005em;
  white-space: nowrap;
}
.ds-sched-row.is-active .ds-sched-row-n {
  color: var(--color-primary);
  font-weight: 800;
}
.ds-sched-row.is-active .ds-sched-row-en,
.ds-sched-row.is-active .ds-sched-row-date {
  color: var(--color-primary);
}

/* 마커 (점 + 선) */
.ds-sched-row-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 14px;
}
.ds-sched-row-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d8d8d8;
  flex-shrink: 0;
  z-index: 1;
}
.ds-sched-row.is-active .ds-sched-row-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(255, 89, 32, 0.15);
  animation: schedDotPulse 1.6s ease-in-out infinite;
}
.ds-sched-row.is-done .ds-sched-row-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.ds-sched-row-line {
  flex: 1;
  width: 1px;
  background: #e8e8e8;
  margin-top: 4px;
  min-height: 56px;
}
@keyframes schedDotPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255, 89, 32, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 89, 32, 0.05); }
}

/* 우측: 본문 */
.ds-sched-row-body { padding-top: 6px; }
.ds-sched-row-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.ds-sched-row-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -.015em;
}
.ds-sched-row.is-active .ds-sched-row-title {
  color: var(--color-primary);
}
.ds-sched-row-desc {
  margin: 0;
  font-size: 14px;
  color: #6e6e6e;
  line-height: 1.65;
  max-width: 580px;
}

/* status pill */
.ds-sched-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 99px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.ds-sched-pill--active   { background: var(--color-primary); color: #fff; }
.ds-sched-pill--upcoming { background: #f1ecec; color: #9a9a9a; }
.ds-sched-pill--done     { background: var(--color-text); color: #fff; }
.ds-sched-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: schedDotPulse2 1.4s ease-in-out infinite;
}
@keyframes schedDotPulse2 {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

/* footnote */
.ds-sched-footnote {
  margin: 28px 0 0;
  font-size: 12px;
  color: #9a9a9a;
  letter-spacing: -.005em;
    display: block;
    padding-bottom: 28px;
    border-bottom: 4px solid var(--color-text);
}

/* 반응형 (mobile + small tablet) */
@media (max-width: 900px) {
  /* 좌우 호흡 — 모바일에서 좌우 패딩 강제 (inner-wrap 위치 무관 보장) */
  #schedule {
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-top: 56px;
    padding-bottom: 64px;
  }
  #schedule .inner-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .ds-sched-head {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
  .ds-sched-eyebrow { margin: 0 0 12px; }
  .ds-sched-h2 { font-size: 26px; line-height: 1.25; }

  .ds-sched-progress {
    margin-bottom: 40px;
    padding: 0 4px;
  }

  .ds-sched-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 12px 22px 14px;     /* 좌/우 모두 호흡 */
  }
  .ds-sched-row.is-active::before { left: -14px; }
  .ds-sched-row-num {
    border-right: none;
    padding-right: 0;
    padding-bottom: 8px;
  }
  .ds-sched-row-marker { display: none; }
  .ds-sched-row-n      { font-size: 32px; }
  .ds-sched-row-date   { font-size: 13px; white-space: normal; }
  .ds-sched-row-title  { font-size: 18px; }
  .ds-sched-row-desc   { font-size: 13.5px; line-height: 1.7; }

  .ds-sched-footnote {
    margin-top: 24px;
    padding-top: 14px;
    font-size: 11.5px;
    line-height: 1.6;
  }
}

/* 작은 모바일 — 좁은 화면에서 한번 더 정돈 */
@media (max-width: 480px) {
  #schedule {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .ds-sched-h2 { font-size: 24px; }
  .ds-sched-row { padding: 18px 8px 18px 10px; }
  .ds-sched-row.is-active::before { left: -10px; }
  .ds-sched-row-n { font-size: 28px; }
}

.timeline {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 80%;
  margin: 25px auto 0;
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  left: calc(50% + 22px);
  width: calc(100% - 44px);
  height: 1px;
  background: var(--color-border);
}

.timeline-step {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ada0;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.timeline-step span {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-bg-white);
}

.timeline-item.is-active .timeline-step {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.timeline-item.is-active .timeline-step span {
  color: #fff;
}

.timeline-date {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

/* 모바일에서만 줄바꿈 시키는 범용 유틸 (banner-title, timeline-date 등) */
.mob-br {
  display: none;
}

.timeline-name {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-primary);
}

.timeline-item.is-active .timeline-name {
  color: var(--color-primary);
}

#application {
  padding: 96px 0;
}

.app-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-dark);
  width: fit-content;
  margin: 25px auto 50px;
  border-radius: 99px;
  padding: 10px 15px;
}

.app-badge {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--color-bg-white);
}

.app-dday {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-primary);
}

/* 카드 묶음 */
.app-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* 카드 공통 */
.app-card {
  border-radius: 30px;
  padding: 50px;
  display: flex;
  flex-direction: column;

  gap: 20px;
  width: 400px;
}

/* 개인 접수 — 다크 */
.app-card--dark {
  background: #333333;
}

.app-card--dark .app-card-title,
.app-card--dark .app-card-desc,
.app-card--dark .ci-val {
  color: #fff;
}

.app-card--dark .ci-label {
  color: rgba(255, 255, 255, 0.55);
}

.app-card-btn:hover {
  background: #ffffff38;
  border: solid 1px #fff;
}

/* 단체 접수 — 프라이머리 */
.app-card--primary {
  background: var(--gradient-primary);
}

.app-card--primary .app-card-title,
.app-card--primary .app-card-desc,
.app-card--primary .ci-val,
.app-card--primary .ci-label {
  color: #fff;
}

.app-card--primary .ci-label {
  color: rgba(255, 255, 255, 0.7);
}

/* 할인 태그 */
.app-discount-tag {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 6px 10px;
  align-self: flex-start;
}

/* 카드 내부 요소 */
.app-card-title {
  font-size: var(--fs-xl);
  font-weight: 600;
}

.app-card-desc {
  font-size: var(--fs-base);
  line-height: 1.4;
  opacity: 0.85;
  font-weight: 100;
}

.app-card-info {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 좌측 시작 (참가비 제거 후 빈공간 우측에 두고 항목 간격은 좁힘) */
  gap: 32px;                   /* 접수인원 ↔ divider ↔ 대상 사이 적정 간격 */
  padding-top: 16px;
  margin-bottom: 60px;
}

.app-card--dark .app-card-info {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.app-card-info li {
  font-size: var(--fs-sm);
  text-align: center;
}

.li-line {
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.3;
  display: block;
}

.ci-label {
  min-width: 56px;
  font-weight: 300;
}

.ci-val {
  font-weight: 500;
  font-size: var(--fs-base);
  margin-top: 4px;
}

.app-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;

  background: transparent;
  border: solid 1px #fff;
  color: var(--color-bg-white);
  font-weight: 600;
  font-size: var(--fs-md);
}

/* ════════════════════════════════════════════
   공지사항 + 문의 — #notice-contact
   ════════════════════════════════════════════ */
#notice-contact {
  padding: 96px 0;
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
}

.nc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* 공지사항 */
.notice-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0; /* ul 기본 padding-inline-start 제거 */
  margin: 0;
}

.notice-item {
  border-radius: 20px;
  margin-bottom: 8px;
  border: solid 1px #dfdfdf;
  overflow: hidden;
  transition: border-color 0.15s, background-color 0.15s;
}

.notice-item:hover {
  border-color: var(--color-primary);
  background-color: #f7f5f2;
}

.notice-link {
  display: flex;
  align-items: self-start;
  gap: 16px;
  padding: 20px 30px;
  color: inherit;
  text-decoration: none;
}

.notice-link:hover {
  color: inherit;
  text-decoration: none;
}

.notice-num {
  flex-shrink: 0;
  width: fit-content;
  padding: 5px 15px;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-body {
  flex: 1;
  min-width: 0; /* flex child overflow 방지 — ellipsis 동작 필수 */
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notice-text {
  width: 100%;
  min-width: 0;
  margin: 0;
  font-size: var(--fs-md);
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-date {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* 문의 */
.contact-wrap .sc-label {
  margin-bottom: 8px;
}

.contact-email-box {
  display: flex;
  align-items: stretch;
  gap: 24px;
  background: #f7f5f2;
  border: solid 1px #dfdfdf;
  border-radius: 20px;
  padding: 20px 24px;
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 50%;
  min-width: 0;
}

.contact-info-item:last-child {
  align-items: flex-start;
  text-align: left;
}

.email-label {
  font-size: 12px;
  color: var(--color-text-muted);
}

.email-addr {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: opacity 0.2s;
}

.email-addr:hover {
  opacity: 0.75;
}

.contact-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding: 18px 24px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: var(--fs-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: opacity 0.2s;
}

.contact-cta-btn:hover {
  opacity: 0.88;
}

.contact-cta-arrow {
  font-size: 22px;
  line-height: 1;
}

/* 모바일 — 공지사항 + 문의 섹션 (좌우 스크롤 방지: 1열 stack + 좌우 패딩 + min-width 0) */
@media (max-width: 900px) {
  #notice-contact {
    padding: 64px 24px;
  }
  #notice-contact .inner-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .nc-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .notice-wrap,
  .contact-wrap {
    min-width: 0;            /* grid child overflow 방지 */
  }
  .notice-top {
    margin-bottom: 20px;
  }
  .notice-link {
    padding: 16px 18px;
    gap: 12px;
  }
  .notice-text {
    font-size: 14px;
  }
  .contact-email-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 16px 18px;
    margin-top: 28px;
  }
  .contact-info-item {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .email-label {
    flex-shrink: 0;
  }
  .email-addr {
    word-break: normal;
    overflow-wrap: normal;
  }
  .contact-cta-btn {
    padding: 16px 18px;
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  #notice-contact {
    padding: 48px 20px;
  }
  .nc-inner {
    gap: 40px;
  }
  .notice-link {
    padding: 14px 16px;
  }
}

/* CTA 배너 스타일은 css/default.css 로 이동 */
