/* ============================================================
   모누다 정수기렌탈 — main.css
   색상: 민트(#14b8a6) / 흰(#ffffff) / 딥틸(#0b2b2a)
   ============================================================ */

:root {
  --mint:       #14b8a6;
  --mint-dark:  #0d9488;
  --mint-light: #5eead4;
  --teal-900:   #0b2b2a;
  --teal-800:   #123b39;
  --teal-mid:   #1c5854;
  --white:      #ffffff;
  --gray-50:    #f6fbfa;
  --gray-100:   #e8f3f1;
  --gray-300:   #c3d6d3;
  --gray-500:   #6c8d89;
  --gray-700:   #33524e;
  --text:       #1b3634;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(11,43,42,.08);
  --shadow-md:  0 6px 24px rgba(11,43,42,.12);
  --shadow-lg:  0 16px 48px rgba(11,43,42,.16);
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--mint);
  color: var(--white);
  border-color: var(--mint);
}
.btn-primary:hover { background: var(--mint-dark); border-color: var(--mint-dark); }
.btn-outline {
  background: transparent;
  color: var(--teal-800);
  border-color: var(--teal-800);
}
.btn-outline:hover { background: var(--teal-800); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo a {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

#main-nav ul {
  display: flex;
  gap: 4px;
}
#main-nav a {
  display: block;
  padding: 8px 16px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}
#main-nav a:hover { color: var(--teal-900); background: var(--gray-50); }
#main-nav .nav-cta {
  background: var(--mint);
  color: var(--white);
  padding: 8px 20px;
  font-weight: 700;
}
#main-nav .nav-cta:hover { background: var(--mint-dark); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
}

.slider { position: relative; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--mint) 100%);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,43,42,.6) 0%, rgba(13,148,136,.28) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  padding-top: 68px;
  color: var(--white);
}

.slide-tag {
  display: inline-block;
  background: rgba(20,184,166,.85);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.slide-content h1 strong { font-weight: 700; }

.slide-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prev, .next {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}
.prev:hover, .next:hover { background: rgba(255,255,255,.28); }

.slide-toggle {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 6px;
  height: 24px;
}

/* 일시정지 상태: 두 개의 세로 막대 */
.slide-toggle::before,
.slide-toggle::after {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: rgba(255,255,255,.7);
  border-radius: 1px;
  transition: background var(--transition);
}
.slide-toggle:hover::before,
.slide-toggle:hover::after { background: var(--white); }

/* 재생 상태(paused): 삼각형 */
.slide-toggle.paused::before {
  width: 0;
  height: 0;
  background: transparent;
  border-radius: 0;
  border-style: solid;
  border-width: 7px 0 7px 13px;
  border-color: transparent transparent transparent rgba(255,255,255,.7);
  transition: border-color var(--transition);
}
.slide-toggle.paused::after { display: none; }
.slide-toggle.paused:hover::before {
  background: transparent;
  border-left-color: var(--white);
}

.dots { display: flex; gap: 6px; }
.dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.35);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 4px;
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--mint);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--teal-800);
  margin-bottom: 12px;
}
.section-desc { color: var(--gray-500); font-size: 15px; }

/* ===== FEATURES (왜 모누다) ===== */
.features-section { background: var(--gray-50); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-800);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===== BRAND COMPARISON TABLE ===== */
.compare-section { background: var(--white); }

.compare-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.compare-tab {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.compare-tab:hover { border-color: var(--mint); color: var(--mint-dark); }
.compare-tab.active {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--white);
}

.compare-table-wrap {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.compare-table-head {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr 96px 120px 84px;
  background: var(--teal-800);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 0 20px;
}
.compare-table-head span { padding: 14px 8px; }

.compare-table-body { }

.compare-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr 96px 120px 84px;
  padding: 0 20px;
  align-items: center;
  min-height: 60px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13.5px;
  color: var(--text);
  transition: background var(--transition);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--gray-50); }
.compare-row.recommended { background: rgba(20,184,166,.05); }
.compare-row > span { padding: 10px 8px; }

.cp-brand { font-weight: 700; color: var(--teal-800); }
.cp-feature { color: var(--gray-700); }
.cp-period { color: var(--gray-500); }
.cp-price { font-weight: 700; color: var(--mint-dark); }
.cp-badge {
  display: inline-block;
  background: var(--mint);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 8px;
  margin-right: 6px;
  vertical-align: middle;
}

.compare-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 64px 20px;
  color: var(--gray-500);
  text-align: center;
}
.compare-empty span { font-size: 40px; }
.compare-empty small { color: var(--gray-300); }

/* ===== NOTICE + CONSULT (COMBINED) ===== */
.notice-consult-section { background: var(--gray-50); }

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

.nc-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  min-height: 36px;
}
.nc-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nc-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-800);
}

/* LIVE badge */
.live-badge {
  background: #e84040;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* Consult list table */
.consult-list-wrap {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.consult-list-head {
  display: grid;
  grid-template-columns: 76px 52px 1fr 70px;
  background: var(--teal-800);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 0 12px;
}
.consult-list-head span {
  padding: 10px 0;
}
.consult-list-head span:last-child { text-align: center; }

.consult-list-body {
  height: 220px;
  overflow: hidden;
  position: relative;
}
@keyframes scrollConsult {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.consult-list-inner {
  /* duration은 JS가 rows 수에 맞춰 동적으로 설정 */
}
.consult-list-inner:hover { animation-play-state: paused !important; }

.consult-row {
  display: grid;
  grid-template-columns: 76px 52px 1fr 70px;
  padding: 0 12px;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
  height: 44px;
  font-size: 13px;
  color: var(--text);
}
.consult-row:last-child { border-bottom: none; }
.consult-row .cr-date  { color: var(--gray-500); font-size: 12px; }
.consult-row .cr-name  { font-weight: 600; }
.consult-row .cr-svc   { color: var(--gray-700); }
.consult-row .cr-status { text-align: center; }

.status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  white-space: nowrap;
}
/* 상담중=초록, 처리중=민트, 처리완료=주황 */
.status-ing   { background: #e8f5e9; color: #2e7d32; }
.status-proc  { background: rgba(20,184,166,.12); color: var(--mint-dark); }
.status-done  { background: #fff3e0; color: #e65100; }

/* ===== EVENT BANNER ===== */
.event-banner-section {
  background: var(--teal-mid);
  padding: 20px 0;
}
.event-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
}
.event-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  display: flex;
  align-items: stretch;
}
.event-slide.active { opacity: 1; z-index: 1; }
.event-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-mid));
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,.7);
  text-align: center;
  cursor: default;
}
.event-placeholder span { font-size: 32px; }
.event-placeholder strong { font-size: 15px; color: var(--white); }
.event-placeholder p { font-size: 12px; color: rgba(255,255,255,.45); }
.event-prev, .event-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px; height: 36px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.event-prev { left: 12px; }
.event-next { right: 12px; }
.event-prev:hover, .event-next:hover { background: rgba(0,0,0,.6); }
.event-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.event-dot {
  width: 7px; height: 7px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}
.event-dot.active { background: var(--white); width: 20px; border-radius: 4px; }

/* ===== NOTICE (right column) ===== */
.notice-list-wrap {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.notice-list-head {
  display: grid;
  grid-template-columns: 58px 1fr 72px;
  column-gap: 10px;
  background: var(--teal-800);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 700;
  padding: 0 12px;
  letter-spacing: .3px;
}
.notice-list-head span { padding: 10px 0; }
.notice-list-head span:last-child { text-align: right; }

.notice-more {
  font-size: 12px;
  color: var(--gray-500);
  transition: color var(--transition);
  white-space: nowrap;
}
.notice-more:hover { color: var(--mint-dark); }

.notice-list { border-top: none; }
.notice-item {
  display: grid;
  grid-template-columns: 58px 1fr 72px;
  column-gap: 10px;
  padding: 0 12px;
  align-items: center;
  height: 44px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: rgba(20,184,166,.04); }
.notice-item.pinned { background: rgba(11,43,42,.02); }

.notice-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--gray-100);
  color: var(--gray-500);
  white-space: nowrap;
}
.notice-badge.pin {
  background: var(--teal-800);
  color: var(--white);
}

.notice-title {
  font-size: 13px;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--transition);
}
.notice-item:hover .notice-title { color: var(--mint-dark); }

.notice-date {
  font-size: 12px;
  color: var(--gray-500);
  text-align: right;
  white-space: nowrap;
}

/* ===== CONTACT (공지사항 + 상담신청) ===== */
.contact-section {
  background: var(--gray-50);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

/* FORM */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.required { color: #e84040; }

input[type="text"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(20,184,166,.14);
}
textarea { resize: vertical; min-height: 100px; }

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--gray-700);
}
.form-check input { width: auto; }
.popup-link {
  margin-left: auto;
  font-size: 11px;
  color: var(--mint-dark);
  white-space: nowrap;
  text-decoration: underline;
  flex-shrink: 0;
}
.popup-link:hover { color: var(--mint); }

.form-msg {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  text-align: center;
  display: none;
}
.form-msg.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-msg.error   { background: #fdecea; color: #b71c1c; display: block; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--teal-800);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
}
.footer-main {
  background: var(--teal-mid);
  padding: 48px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.45); }

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
}
.footer-links a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-info { text-align: right; font-size: 12px; line-height: 1.9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-policies {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.footer-policies a {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  transition: color var(--transition);
}
.footer-policies a:hover { color: var(--white); }
.footer-sep { color: rgba(255,255,255,.2); font-size: 11px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table-head, .compare-row { grid-template-columns: 84px 1fr 1fr 80px 100px 70px; font-size: 12.5px; }
  .nc-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-info { text-align: left; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  #main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--teal-900);
    z-index: 999;
  }
  #main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0;
  }
  #main-nav a { font-size: 1.1rem; padding: 14px 40px; text-align: center; display: block; color: rgba(255,255,255,.85); }
  #main-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
  #main-nav.open ~ .hamburger span { background: var(--white); }
  .hamburger { display: flex; z-index: 1001; }

  .section { padding: 60px 0; }
  .hero { max-height: 640px; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .compare-table-head { display: none; }
  .compare-row {
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: 16px 20px;
    min-height: auto;
  }
  .compare-row > span { padding: 2px 0; }
  .cp-cta { margin-top: 8px; }

  /* 이벤트 배너: 모바일에서 이미지 좌→우 1회 패닝 */
  @keyframes panEventImg {
    0%   { object-position: left center; }
    100% { object-position: right center; }
  }
  .event-slide.active img {
    animation: panEventImg 6s ease-in-out forwards;
  }
}

/* ===== 공지사항 목록 페이지 (home.php) ===== */
.notice-archive-main {
  padding: 120px 0 80px;
  background: var(--gray-50);
  min-height: 100vh;
}

.notice-archive-header {
  text-align: center;
  margin-bottom: 40px;
}
.notice-archive-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--teal-800);
  margin-bottom: 12px;
}

.notice-archive-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.notice-archive-list {
  list-style: none;
}
/* notice-item, notice-badge, notice-title, notice-date 스타일은 기존 CSS 재사용 */
.notice-archive-list .notice-item {
  border-bottom: 1px solid var(--gray-100);
  height: auto;
  min-height: 52px;
  padding: 14px 12px;
}
.notice-archive-list .notice-item:last-child { border-bottom: none; }
.notice-archive-list .notice-title {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  font-size: 14px;
}

/* ===== 페이지네이션 ===== */
.notice-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.notice-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.notice-pagination .page-numbers:hover { border-color: var(--teal-800); color: var(--teal-800); }
.notice-pagination .page-numbers.current {
  background: var(--teal-800);
  border-color: var(--teal-800);
  color: var(--white);
}
.notice-pagination .page-numbers.dots {
  border: none;
  background: none;
  color: var(--gray-500);
  cursor: default;
}

.notice-archive-back { text-align: center; }

@media (max-width: 480px) {
  .hero { min-height: 480px; }
  .slide-content h1 { font-size: 1.7rem; }
}
