/* ============================================================
   연수문화재단 도서관 자료 서비스 — 통합 디자인 시스템
   참고: ysfac.or.kr (연수문화재단) + osanlibrary.go.kr (소리울도서관)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;900&family=Noto+Serif+KR:wght@400;600;700&display=swap');

/* ── CSS 변수 ─────────────────────────────────────────────── */
:root {
  /* 연수문화재단 주조색 (딥블루 계열) */
  --primary:       #003366;
  --primary-hover: #00254d;
  --primary-light: #e8eef5;
  --primary-pale:  #f2f6fa;

  /* 포인트 컬러 (소리울 참고 — 민트/틸) */
  --accent:        #00897B;
  --accent-hover:  #00695C;
  --accent-light:  #e0f2f1;
  --accent-pale:   #f0faf9;

  /* 서브 컬러 */
  --gold:          #c9960c;
  --gold-light:    #fdf8e8;

  /* 텍스트 */
  --text-primary:  #1a1a2e;
  --text-body:     #333347;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;

  /* 배경/보더 */
  --bg-base:       #f8f9fc;
  --bg-white:      #ffffff;
  --bg-gray:       #f1f3f8;
  --border:        #dde3ed;
  --border-light:  #edf0f7;

  /* 상태 색상 */
  --success:       #15803d;
  --success-bg:    #f0fdf4;
  --warning:       #b45309;
  --warning-bg:    #fffbeb;
  --danger:        #b91c1c;
  --danger-bg:     #fef2f2;
  --info:          #0369a1;
  --info-bg:       #e0f2fe;

  /* 그림자 */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 6px rgba(0,51,102,.08);
  --shadow-md:  0 4px 16px rgba(0,51,102,.12);
  --shadow-lg:  0 8px 32px rgba(0,51,102,.15);
  --shadow-xl:  0 16px 48px rgba(0,51,102,.18);

  /* 폰트 */
  --font-sans:  'Noto Sans KR', sans-serif;
  --font-serif: 'Noto Serif KR', serif;

  /* 라운드 */
  --r-xs: 4px;
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* 레이아웃 */
  --max-w:    1240px;
  --header-h: 64px;
}

/* ── 리셋 & 기본 ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 15px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ── 유틸리티 ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   HEADER — 연수문화재단 스타일 2단 헤더
   ============================================================ */

/* 최상단 유틸 바 */
.header-util {
  background: var(--primary-hover);
  height: 36px;
  display: flex;
  align-items: center;
}
.header-util .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header-util a {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  letter-spacing: .3px;
  transition: color .15s;
}
.header-util a:hover { color: #fff; }
.header-util .divider {
  width: 1px; height: 10px;
  background: rgba(255,255,255,.25);
}

/* 메인 헤더 */
.header-main {
  background: var(--primary);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.header-main .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 로고 */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-emblem {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
  transition: background .2s;
}
.site-logo:hover .logo-emblem { background: rgba(255,255,255,.25); }
.logo-text { line-height: 1.25; }
.logo-text .ko {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
}
.logo-text .en {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* 메인 내비 */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item {
  position: relative;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: 100%;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: -.2px;
  transition: color .15s, background .15s;
  border-bottom: 3px solid transparent;
}
.nav-item > a:hover,
.nav-item > a.active {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-bottom-color: var(--accent);
}
.nav-item.current > a {
  color: #fff;
  font-weight: 700;
  border-bottom-color: #fff;
}

/* 헤더 우측 액션 */
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  background: transparent;
  transition: all .18s;
  white-space: nowrap;
}
.header-btn:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6);
}
.header-btn.accent {
  background: var(--accent);
  border-color: var(--accent);
}
.header-btn.accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* 모바일 햄버거 */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}

/* 서브메뉴 (드롭다운) */
.nav-sub {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  min-width: 200px;
  background: var(--bg-white);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 100;
}
.nav-item:hover .nav-sub { display: block; }
.nav-sub a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  color: var(--text-body);
  border-left: 3px solid transparent;
  transition: all .15s;
}
.nav-sub a:hover {
  color: var(--primary);
  background: var(--primary-pale);
  border-left-color: var(--accent);
}

/* 모바일 메뉴 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100vh;
  background: var(--primary);
  z-index: 9999;
  padding: 20px 0;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
}
.mobile-overlay.open { display: block; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 10px;
}
.mobile-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 24px;
  line-height: 1;
}
.mobile-nav-item {
  display: block;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .15s;
}
.mobile-nav-item:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
  padding-left: 30px;
}
.mobile-nav-item.sub {
  padding-left: 38px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.mobile-nav-label {
  padding: 16px 24px 8px;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--primary-pale);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); font-size: 10px; }
.breadcrumb .current { color: var(--primary); font-weight: 600; }

/* ============================================================
   HERO 검색 영역 — 소리울도서관 스타일
   ============================================================ */
.hero-search {
  background: linear-gradient(135deg, var(--primary) 0%, #00509E 55%, #006B7A 100%);
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero-search::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,137,123,.25) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='12'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  letter-spacing: .5px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.5px;
  line-height: 1.25;
}
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
}

/* 검색 박스 */
.search-box {
  max-width: 780px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  padding: 6px;
  gap: 6px;
}
.search-select {
  flex-shrink: 0;
  padding: 10px 14px;
  background: var(--bg-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-body);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  cursor: pointer;
  min-width: 110px;
}
.search-select:focus { outline: none; border-color: var(--primary); }

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-primary);
  padding: 10px 8px;
  background: transparent;
}
.search-input::placeholder { color: var(--text-light); }

.search-btn {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 11px 28px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .18s, transform .12s;
}
.search-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
.search-btn svg { width: 17px; height: 17px; }

/* 인기 검색어 */
.popular-keywords {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.popular-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}
.kw-tag {
  display: inline-block;
  padding: 4px 13px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 99px;
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.kw-tag:hover { background: rgba(255,255,255,.22); color: #fff; }
.kw-rank {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  margin-right: 2px;
}

/* ============================================================
   FILTER BAR — 소리울 스타일
   ============================================================ */
.filter-bar {
  background: var(--bg-white);
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  box-shadow: var(--shadow-xs);
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0;
}
.filter-inner::-webkit-scrollbar { display: none; }

.filter-tab {
  flex-shrink: 0;
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  transition: all .18s;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
}
.filter-tab:hover { color: var(--primary); background: var(--primary-pale); }
.filter-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 700;
  background: var(--primary-pale);
}
.filter-count {
  font-size: 11px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 1px 7px;
  border-radius: 99px;
  font-weight: 600;
}
.filter-tab.active .filter-count {
  background: var(--primary);
  color: #fff;
}

.filter-divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; margin: 0 4px; }

.filter-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  flex-shrink: 0;
}
.sort-select {
  padding: 7px 28px 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-body);
  background: var(--bg-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
.results-info {
  font-size: 12.5px;
  color: var(--text-muted);
  white-space: nowrap;
}
.results-info strong { color: var(--primary); font-weight: 700; }

/* ============================================================
   자료 카드 그리드
   ============================================================ */
.materials-section { padding: 28px 0 60px; }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.material-card {
  background: var(--bg-white);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.material-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.card-cover {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(145deg, var(--primary-pale) 0%, var(--accent-pale) 100%);
  overflow: hidden;
}
.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-cover-icon {
  font-size: 52px;
  opacity: .6;
  line-height: 1;
}
.card-type-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 9px;
  border-radius: var(--r-xs);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
}
.type-BOOK  { background: #dbeafe; color: #1d4ed8; }
.type-LP    { background: #fce7f3; color: #9d174d; }
.type-CD    { background: #ede9fe; color: #5b21b6; }
.type-ALBUM { background: #dcfce7; color: #14532d; }
.type-ETC   { background: #f1f5f9; color: #475569; }

.card-body { padding: 14px 16px; flex: 1; }
.card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-creator { font-size: 12.5px; color: var(--text-muted); margin-bottom: 4px; }
.card-meta {
  font-size: 11.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-meta .dot { width: 2px; height: 2px; background: var(--text-light); border-radius: 50%; }

.card-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-gray);
}
.card-views { font-size: 11.5px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.card-link {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* 빈 상태 */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}
.empty-icon { font-size: 56px; margin-bottom: 16px; opacity: .5; }
.empty-title { font-size: 17px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.empty-desc { font-size: 14px; color: var(--text-light); }

/* ============================================================
   자료 상세 페이지
   ============================================================ */
.detail-wrap { max-width: var(--max-w); margin: 0 auto; padding: 36px 24px 64px; }
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 24px;
  transition: color .15s;
}
.detail-back:hover { color: var(--primary); }

.detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.detail-cover-wrap { position: sticky; top: calc(var(--header-h) + 20px); }
.detail-cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary-pale), var(--accent-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }

.detail-side-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 상세 정보 영역 */
.detail-info { display: flex; flex-direction: column; gap: 24px; }
.detail-badge { display: inline-flex; }
.detail-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -.3px;
}
.detail-creator { font-size: 15px; color: var(--text-muted); margin-top: 4px; }

/* 메타 그리드 */
.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--bg-gray);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
}
.meta-item {}
.meta-key {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px;
}
.meta-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
}
.meta-full { grid-column: 1 / -1; }

/* 소장 현황 */
.status-available {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--accent-pale);
  border: 1.5px solid var(--accent-light);
  border-radius: var(--r);
}
.status-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0,137,123,.2);
}
.status-text { font-size: 14px; color: var(--accent-hover); }
.status-text strong { font-weight: 700; }
.status-text small { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* 자료 소개 */
.desc-box {
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}
.desc-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}
.desc-text { font-size: 14.5px; color: var(--text-body); line-height: 1.75; }

/* 트랙 테이블 */
.tracks-wrap {
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.tracks-header {
  display: grid;
  grid-template-columns: 40px 1fr 70px;
  padding: 10px 16px;
  background: var(--primary);
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.track-row {
  display: grid;
  grid-template-columns: 40px 1fr 70px;
  padding: 11px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  transition: background .12s;
}
.track-row:last-child { border-bottom: none; }
.track-row:hover { background: var(--primary-pale); }
.track-no { color: var(--text-light); font-size: 12px; }
.track-title { color: var(--text-body); font-weight: 500; }
.track-dur { color: var(--text-light); text-align: right; font-size: 12.5px; }
.track-row:nth-child(even) { background: var(--bg-gray); }
.track-row:nth-child(even):hover { background: var(--primary-pale); }

/* 연관 자료 */
.related-section { margin-top: 48px; }
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}
.section-heading::before {
  content: '';
  display: block;
  width: 4px; height: 20px;
  background: var(--primary);
  border-radius: 2px;
}

/* ============================================================
   공통 폼 컴포넌트
   ============================================================ */
.form-page { max-width: 740px; margin: 0 auto; padding: 40px 24px 64px; }
.page-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -.3px;
}
.page-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.form-card-head {
  padding: 16px 24px;
  background: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-card-head .title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.form-card-body { padding: 24px; }

.form-section { margin-bottom: 24px; }
.form-section-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--accent-light);
}

.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}
.form-label .req { color: var(--danger); margin-left: 2px; }
.form-hint { font-size: 11.5px; color: var(--text-muted); }
.error-msg { font-size: 12px; color: var(--danger); }

.input, .select, .textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,51,102,.1);
}
.input.error, .select.error { border-color: var(--danger); }
.input::placeholder { color: var(--text-light); }
.textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* 자료유형 선택 칩 */
.type-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.type-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  background: var(--bg-white);
  transition: all .18s;
  font-family: var(--font-sans);
}
.type-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.type-chip.active {
  border-color: var(--primary);
  color: var(--bg-white);
  background: var(--primary);
}
.type-chip input { display: none; }

/* 단계 표시기 */
.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item.done::after { background: var(--primary); }
.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  border: 2px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  transition: all .25s;
}
.step-item.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0,51,102,.15);
}
.step-item.done .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.step-label {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}
.step-item.active .step-label { color: var(--primary); font-weight: 700; }
.step-item.done .step-label { color: var(--accent); }

/* ============================================================
   버튼
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .18s;
  text-decoration: none;
  letter-spacing: -.1px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
  background: var(--bg-white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-pale); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-gray); color: var(--text-body); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #991b1b; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ============================================================
   뱃지 & 상태
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
}
.badge-received  { background: #f1f5f9; color: #64748b; }
.badge-approved  { background: var(--info-bg); color: var(--info); }
.badge-purchasing{ background: var(--warning-bg); color: var(--warning); }
.badge-completed { background: var(--success-bg); color: var(--success); }
.badge-rejected  { background: var(--danger-bg); color: var(--danger); }
.badge-cancelled { background: #f9fafb; color: #9ca3af; }
.badge-reviewing { background: var(--info-bg); color: var(--info); }
.badge-accepted  { background: var(--success-bg); color: var(--success); }

/* ============================================================
   신청 카드 (내역 조회)
   ============================================================ */
.request-list { display: flex; flex-direction: column; gap: 14px; }
.request-card {
  background: var(--bg-white);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow .18s, border-color .18s;
}
.request-card:hover { box-shadow: var(--shadow-md); border-color: var(--border); }
.request-card-head {
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.request-card-main { flex: 1; min-width: 0; }
.request-card-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.request-card-sub { font-size: 13px; color: var(--text-muted); }
.request-card-meta {
  padding: 10px 20px;
  background: var(--bg-gray);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.request-card-meta span { display: flex; align-items: center; gap: 4px; }

/* 타임라인 */
.timeline { padding: 16px 20px; border-top: 1px solid var(--border-light); }
.timeline-label { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.timeline-items { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px; top: 20px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-white);
  flex-shrink: 0;
  margin-top: 1px;
  z-index: 1;
  transition: all .2s;
}
.timeline-dot.active { background: var(--primary); border-color: var(--primary); }
.timeline-dot.done { background: var(--accent); border-color: var(--accent); }
.timeline-content {}
.timeline-status { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.timeline-time { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.timeline-note {
  margin-top: 6px;
  padding: 8px 12px;
  background: var(--bg-gray);
  border-radius: var(--r-sm);
  font-size: 12.5px;
  color: var(--text-body);
}

.reject-box {
  margin: 0 20px 16px;
  padding: 12px 16px;
  background: var(--danger-bg);
  border: 1px solid #fecaca;
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--danger);
}

/* ============================================================
   완료 화면
   ============================================================ */
.success-wrap {
  text-align: center;
  padding: 60px 20px;
}
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-title { font-family: var(--font-serif); font-size: 26px; color: var(--text-primary); font-weight: 700; margin-bottom: 10px; }
.success-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.receipt-box {
  display: inline-block;
  background: var(--primary-pale);
  border: 2px solid var(--primary-light);
  border-radius: var(--r-lg);
  padding: 24px 48px;
  margin-bottom: 32px;
}
.receipt-label { font-size: 11.5px; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.receipt-no { font-size: 26px; font-weight: 900; color: var(--primary); letter-spacing: 1px; }

/* ============================================================
   INFO BOX / ALERT
   ============================================================ */
.info-box {
  padding: 14px 18px;
  background: var(--accent-pale);
  border: 1px solid var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--accent-hover);
  margin-bottom: 16px;
  line-height: 1.6;
}
.alert {
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: var(--success-bg); border: 1px solid #bbf7d0; color: var(--success); }
.alert-error   { background: var(--danger-bg);  border: 1px solid #fecaca; color: var(--danger); }
.alert-warning { background: var(--warning-bg); border: 1px solid #fde68a; color: var(--warning); }
.alert-info    { background: var(--info-bg);    border: 1px solid #bae6fd; color: var(--info); }

/* ============================================================
   탭
   ============================================================ */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.tab-item {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tab-item:hover { color: var(--primary); }
.tab-item.active { color: var(--primary); font-weight: 700; border-bottom-color: var(--primary); }

/* ============================================================
   페이지네이션
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 32px 0;
}
.page-btn {
  min-width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .15s;
  font-family: var(--font-sans);
  padding: 0 10px;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 700; }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,.6);
  margin-top: auto;
}
.footer-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-top .container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
.footer-brand .logo-emblem {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  margin-bottom: 14px;
}
.footer-brand .logo-text .ko { color: rgba(255,255,255,.9); font-size: 16px; }
.footer-brand .logo-text .en { color: rgba(255,255,255,.4); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 12px; line-height: 1.7; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  padding: 3px 0;
  transition: color .15s;
}
.footer-link:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12.5px; }
.footer-info-links { display: flex; gap: 16px; }
.footer-info-links a { font-size: 12px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-info-links a:hover { color: rgba(255,255,255,.75); }

/* ============================================================
   관리자 레이아웃
   ============================================================ */
.admin-wrap { display: flex; min-height: 100vh; background: #f0f4f8; }

.admin-sidebar {
  width: 240px;
  background: var(--primary-hover);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.sidebar-head {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-logo { display: flex; align-items: center; gap: 10px; }
.sidebar-logo .logo-text .ko { font-size: 13px; }
.sidebar-logo .logo-text .en { font-size: 10px; }
.sidebar-menu-label {
  padding: 20px 18px 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .15s;
  position: relative;
}
.sidebar-link:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-left-color: var(--accent-light);
}
.sidebar-link.active {
  color: #fff;
  background: rgba(0,137,123,.3);
  border-left-color: var(--accent);
  font-weight: 700;
}
.sidebar-badge {
  margin-left: auto;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 99px;
}
.sidebar-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 12px 16px;
}
.sidebar-footer {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.sidebar-user {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.sidebar-user strong { display: block; color: rgba(255,255,255,.75); font-size: 13px; }

.admin-content {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  background: var(--bg-white);
  height: 56px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-xs);
}
.admin-page-title { font-size: 18px; font-weight: 700; color: var(--text-primary); }
.admin-breadcrumb {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-left: 8px;
}
.admin-main { padding: 28px; flex: 1; }

/* 통계 카드 */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: var(--bg-white);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  padding: 20px;
  box-shadow: var(--shadow-xs);
  border-top: 3px solid var(--border);
  transition: box-shadow .18s;
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card.primary { border-top-color: var(--primary); }
.stat-card.accent  { border-top-color: var(--accent); }
.stat-card.warning { border-top-color: var(--gold); }
.stat-card.success { border-top-color: var(--success); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 8px; }
.stat-value { font-size: 32px; font-weight: 900; color: var(--text-primary); line-height: 1; margin-bottom: 6px; }
.stat-card.primary .stat-value { color: var(--primary); }
.stat-card.accent  .stat-value { color: var(--accent); }
.stat-card.warning .stat-value { color: var(--gold); }
.stat-card.success .stat-value { color: var(--success); }
.stat-sub { font-size: 12px; color: var(--text-light); }

/* 데이터 테이블 */
.table-card {
  background: var(--bg-white);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.table-card-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-gray);
}
.table-card-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 11px 16px;
  text-align: left;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 2px solid var(--border-light);
  background: var(--bg-gray);
  white-space: nowrap;
}
.data-table td {
  padding: 13px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.data-table tbody tr:hover td { background: var(--primary-pale); }
.data-table tbody tr:last-child td { border-bottom: none; }
.td-mono { font-family: monospace; font-size: 12px; color: var(--text-muted); }
.td-bold { font-weight: 600; color: var(--text-primary); }
.td-empty { text-align: center; padding: 48px 20px; color: var(--text-muted); }

/* ============================================================
   모달
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .15s ease;
}
.modal {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-xl);
  animation: slideUp .2s ease;
  overflow: hidden;
}
.modal-head {
  padding: 20px 24px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title { font-size: 16px; font-weight: 700; color: #fff; }
.modal-close {
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: var(--r-sm);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  cursor: pointer;
  transition: background .15s;
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,.25); color: #fff; }
.modal-body { padding: 24px; }
.modal-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background: var(--bg-gray);
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }

/* ── 토스트 ── */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  animation: toastIn .25s ease;
  pointer-events: none;
}
.toast.success { background: var(--accent); }
.toast.error   { background: var(--danger); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 1024px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 240px 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  :root { --header-h: 58px; }
  .header-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }
  .hero-title { font-size: 24px; }
  .search-box { flex-direction: column; gap: 8px; }
  .search-btn { width: 100%; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-cover-wrap { position: static; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-top .container { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .materials-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-search { padding: 36px 0 32px; }
}
