/* ===========================
   Cropick — main.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800;900&family=Nunito:wght@700;800;900&display=swap');

:root {
  /* ── 로고 컬러 기반 팔레트 ── */
  --primary:       #3A9E2F;   /* 로고 초록 */
  --primary-light: #5BBD50;
  --primary-dark:  #2D7D24;
  --brown:         #3D2B1F;   /* 로고 브라운 */
  --brown-light:   #5C4033;

  --green:         #3A9E2F;
  --green-dark:    #2D7D24;
  --yellow:        #F5C518;

  --text-dark:     #1A1A1A;
  --text-mid:      #444;
  --text-light:    #888;
  --border:        #E8E8E8;
  --bg:            #FFFFFF;
  --bg-soft:       #F6FAF5;   /* 연초록빛 배경 */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --shadow-card:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 28px rgba(0,0,0,0.14);

  /* ── 네비게이션바 ── */
  --nav-h: 100px;

  /* ── 슬라이더 조절 변수 ──────────────────────────
     --slider-height     : 슬라이드 높이
     --slider-side-peek  : 좌우 이전/다음 슬라이드 노출 폭
     --slider-gap        : 슬라이드 사이 간격
     --slider-radius     : 슬라이드 모서리 둥글기
     --slider-top-gap    : 네비게이션바와 슬라이더 사이 간격
     --slider-arrow-inset: 화살표 버튼의 좌우 안쪽 위치
  ─────────────────────────────────────────────── */
  --slider-height:      400px;
  --slider-side-peek:   160px;
  --slider-gap:         16px;
  --slider-radius:      36px;
  --slider-top-gap:     20px;
  --slider-arrow-inset: 10px;

  /* ── 푸터 조절 변수 ── */
  --footer-cs-padding:   48px;
  --footer-main-padding: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 48px;
  flex-shrink: 0;
}
.navbar__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.navbar__logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--brown);
}
.navbar__logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.navbar__nav a {
  font-size: 20px;
  font-weight: 500;
  color: #777;
  padding: 7px 16px;
  border-radius: 8px;
  letter-spacing: -0.2px;
  transition: color .2s, background .2s;
  position: relative;
}
.navbar__nav a:hover {
  color: var(--text-dark);
  background: var(--bg-soft);
}
.navbar__nav a.active {
  color: var(--primary);
  font-weight: 700;
}
.navbar__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navbar__actions .link-sm {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: -0.1px;
  transition: color .2s, background .2s;
}
.navbar__actions .link-sm:hover {
  color: var(--text-dark);
  background: var(--bg-soft);
}

.btn-advertise {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.1px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-left: 6px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-advertise:hover { background: var(--primary-dark); transform: translateY(-1px); }

.navbar__icon-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: background .2s, color .2s;
  border: 1.5px solid var(--border);
}
.navbar__icon-btn:hover {
  background: var(--bg-soft);
  color: var(--text-dark);
  border-color: #ccc;
}

/* ===========================
   HERO SLIDER
   =========================== */

.hero {
  position: relative;
  width: 100%;
  padding: var(--slider-top-gap) 0 20px;
  background: var(--bg);
  overflow: hidden;
}

.hero__viewport {
  overflow: hidden;
  padding: 0 var(--slider-side-peek);
}

.hero__track {
  display: flex;
  gap: var(--slider-gap);
  transition: transform .68s cubic-bezier(.4,0,.2,1);
}
.hero__track.no-transition {
  transition: none;
}

.hero__slide {
  flex: 0 0 100%;
  height: var(--slider-height);
  border-radius: var(--slider-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

/* 슬라이드 배경 — 로고 초록·브라운 기반 */
.hero__slide--1 {
  background: var(--primary);
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__slide--2 { background: linear-gradient(135deg, #5BBD50 0%, #3A9E2F 100%); }
.hero__slide--3 { background: linear-gradient(135deg, #3D2B1F 0%, #6B4A38 100%); }

/* ── 이미지 슬라이드 ── */
.hero__slide--img {
  background-color: #f0f0f0;
}
.hero__slide--img .slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

/* 슬라이드 내부 */
.hero__slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32px 0 28px;
  justify-content: center;
}

/* 노트 카드 */
.hero__slide-notepad {
  background: #fff;
  border-radius: 16px;
  padding: 36px 56px 44px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.13);
  width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero__spiral {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 44px;
}
.hero__spiral span {
  width: 20px;
  height: 22px;
  background: #C8C8C8;
  border-radius: 4px 4px 8px 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,.18);
}
.hero__tag-main-wrap {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 660px;
  z-index: 3;
}
.hero__tag-small {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  align-self: center;
}
.hero__tag-pill {
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 800;
  padding: 12px 32px;
  border-radius: 50px;
  width: 100%;
  text-align: left;
}
.hero__tag-main {
  background: var(--primary-dark);
  color: var(--yellow);
  font-size: 52px;
  font-weight: 900;
  padding: 16px 48px;
  border-radius: 50px;
  width: 100%;
  text-align: center;
  letter-spacing: -1px;
  box-shadow: 0 5px 0 rgba(0,0,0,.18);
}
.hero__tag-bottom-pill {
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  align-self: flex-end;
  margin-top: 46px;
}
.hero__star {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.hero__star--tl { top: 18px; right: 44px; }
.hero__star--bl { bottom: 36px; left: 64px; width: 44px; height: 44px; }

/* 화살표 */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(0,0,0,.16);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  transition: box-shadow .2s, transform .15s;
}
.hero__arrow:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-50%) scale(1.08);
}
.hero__arrow--prev { left: calc(var(--slider-side-peek) + 40px); }
.hero__arrow--next { right: calc(var(--slider-side-peek) + 40px); }

/* 점 인디케이터 */
.hero__dots {
  position: absolute;
  bottom: 30px;
  left: 85%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: background .2s, width .25s;
  border: none;
}
.hero__dot.active {
  background: #fff;
  width: 26px;
  border-radius: 4px;
}

/* ===========================
   CATEGORY ICONS
   =========================== */

.categories {
  padding: 44px 40px 36px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform .2s;
}
.category-item:hover { transform: translateY(-3px); }
.category-item__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #EEF7ED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: background .2s;
}
.category-item:hover .category-item__icon { background: #D4EDCF; }
.category-item__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
}

/* ===========================
   SECTION COMMON
   =========================== */

.section {
  padding: 56px 40px 48px;
}
.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
}
.section__title span { color: var(--primary); }
.section__more {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 2px;
  transition: color .2s;
}
.section__more:hover { color: var(--primary); }

/* 섹션 사이 구분선 제거 */
.section + .section {
  border-top: none;
}

/* ===========================
   CAMPAIGN CARDS
   =========================== */

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.campaign-grid--2row { grid-template-rows: repeat(2, auto); }

@media (max-width: 1200px) { .campaign-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .campaign-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .campaign-grid { grid-template-columns: repeat(2, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }

.card__thumb {
  width: 100%;
  aspect-ratio: 1 / 0.75;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #eee;
}
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.card:hover .card__thumb img { transform: scale(1.04); }

.card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 50px;
}
.badge--b     { background: var(--primary); color: #fff; }
.badge--relay { background: var(--brown); color: #fff; }
.badge--insta {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CradialGradient id='ig' cx='30%25' cy='107%25' r='150%25'%3E%3Cstop offset='0%25' stop-color='%23fdf497'/%3E%3Cstop offset='5%25' stop-color='%23fdf497'/%3E%3Cstop offset='45%25' stop-color='%23fd5949'/%3E%3Cstop offset='60%25' stop-color='%23d6249f'/%3E%3Cstop offset='90%25' stop-color='%23285AEB'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect x='2' y='2' width='20' height='20' rx='6' fill='url(%23ig)'/%3E%3Ccircle cx='12' cy='12' r='4.5' fill='none' stroke='white' stroke-width='1.8'/%3E%3Ccircle cx='17.2' cy='6.8' r='1.2' fill='white'/%3E%3C/svg%3E") center/cover no-repeat;
  color: transparent;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 5px;
  flex-shrink: 0;
}
.badge--clip  { background: #3F51B5; color: #fff; }

.card__location {
  font-size: 11px;
  color: var(--text-light);
}
.card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.tag-dday {
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 3px 8px;
  border-radius: 4px;
}
.tag-dday--today { background: #EBF7E9; border-color: var(--primary-light); color: var(--primary-dark); }
.card__count {
  font-size: 11px;
  color: var(--text-light);
}

/* ===========================
   FOOTER DARK SECTION (CS)
   =========================== */

.footer-cs {
  background: var(--brown);
  padding: 78px 40px;        /* ↑ 섹션 높이 증가 */
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

/* 왼쪽 — 테두리 없는 심플 아이콘 */
.footer-cs__mascot {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-cs__mascot img { width: 100%; object-fit: contain; }
.footer-cs__mascot-placeholder {
  width: 100px;
  height: 100px;
  background: transparent;
  border-radius: 0;
  border: none;             
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
}
.footer-cs__mascot-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: -0.2px;
  text-align: center;
}

/* 카드 오른쪽 정렬 + 폭 확대 */
.footer-cs__cards { display: flex; gap: 16px; flex: 1; justify-content: flex-end; }
.footer-cs__card {
  flex: 0 1 380px;           
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.footer-cs__card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.footer-cs__card-text .label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.footer-cs__card-text .desc {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
}
.footer-cs__card-icon { font-size: 36px; flex-shrink: 0; }

/* ===========================
   FOOTER MAIN
   =========================== */

.footer-main {
  padding: var(--footer-main-padding) 40px;
  border-top: 1px solid var(--border);
}
.footer-main__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-main__logo img { height: 28px; width: auto; object-fit: contain; }
.footer-main__logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--brown);
}
.footer-main__info {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}
.footer-main__links { display: flex; gap: 16px; margin-top: 16px; }
.footer-main__links a {
  font-size: 13px;
  color: var(--text-light);
  transition: color .2s;
}
.footer-main__links a:hover { color: var(--text-dark); }
.footer-main__copy {
  font-size: 15px;
  color: #bbb;
  margin-top: 8px;
}

/* ===========================
   BACK TO TOP
   =========================== */

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-mid);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s, box-shadow .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* ===========================
   SCROLL-IN ANIMATION
   =========================== */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── 인스타그램 아이콘 (CSS로 로고 구현) ── */
.insta-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.insta-icon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  position: absolute;
}
.insta-icon::after {
  content: "";
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  right: 2px;
}


/* ════════════════════════════════
   MOBILE — index.css
════════════════════════════════ */
@media (max-width: 768px) {

  :root { --nav-h: 60px; }
  .navbar { height: var(--nav-h); padding: 0 16px; }
  .navbar__logo { margin-right: 0; }
  .navbar__logo img { height: 30px; }
  .navbar__nav { display: none; }
  .navbar__actions .link-sm { display: none; }
  .navbar__icon-btn { width: 32px; height: 32px; }

  /* 슬라이더 */
  .hero { margin: 8px 0 0; }
  :root {
    --slider-height: 200px;
    --slider-side-peek: 20px;
    --slider-gap: 8px;
    --slider-radius: 16px;
    --slider-top-gap: 8px;
  }

  /* 카테고리 */
  .categories { gap: 16px; padding: 20px 16px; }
  .category-item__icon { width: 52px; height: 52px; font-size: 24px; }
  .category-item__label { font-size: 12px; }

  /* 섹션 */
  .section { padding: 0 16px 32px; }
  .section__title { font-size: 16px; }
  .campaign-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
  .campaign-grid--2row { grid-template-columns: repeat(2, 1fr) !important; }

  /* 푸터 */
  .footer-cs { flex-direction: column; padding: 32px 16px; gap: 20px; }
  .footer-cs__mascot { flex-direction: row; width: auto; }
  .footer-cs__cards { flex-direction: column; }
  .footer-cs__card { flex: unset; }
  .footer-main { padding: 28px 16px; }
  .footer-main__info { font-size: 12px; }
}

/* ════════════════════════════════
   HAMBURGER + DRAWER
════════════════════════════════ */

/* 햄버거 버튼 — PC에서는 숨김 */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.navbar__hamburger:hover { background: var(--bg-soft, #F6FAF5); }
.navbar__hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #555;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* 드로어 오버레이 */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1100;
}
.drawer-overlay.open { display: block; }

/* 드로어 패널 */
.drawer {
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 100%;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}
.drawer.open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E8E8E8;
  flex-shrink: 0;
}
.drawer__header img { height: 28px; width: auto; object-fit: contain; }
.drawer__close {
  width: 32px; height: 32px;
  background: none; border: none;
  font-size: 18px; color: #888;
  cursor: pointer;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.drawer__close:hover { background: #f5f5f5; }

.drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
  overflow-y: auto;
}
.drawer__nav a {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  padding: 14px 24px;
  text-decoration: none;
  transition: background .15s, color .15s;
  border-left: 3px solid transparent;
}
.drawer__nav a:hover { background: #F6FAF5; color: #1A1A1A; }
.drawer__nav a.active {
  color: var(--primary, #3A9E2F);
  font-weight: 700;
  border-left-color: var(--primary, #3A9E2F);
  background: rgba(58,158,47,.05);
}

.drawer__actions {
  padding: 16px 24px 32px;
  border-top: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer__actions a {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  padding: 8px 0;
  transition: color .2s;
}
.drawer__actions a:hover { color: #1A1A1A; }
.drawer__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #3A9E2F);
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 0 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background .2s;
}
.drawer__login:hover { background: var(--primary-dark, #2D7D24); }

/* 모바일에서만 햄버거 표시 */
@media (max-width: 768px) {
  .navbar__hamburger { display: flex; }
}


/* ── 스켈레톤 로딩 ── */
.card--skeleton .card__thumb {
  background: #f0f0f0;
  animation: shimmer 1.2s infinite;
}
.skel {
  background: #f0f0f0;
  border-radius: 4px;
  animation: shimmer 1.2s infinite;
  display: block;
  height: 14px;
  margin-bottom: 8px;
}
.skel--sm    { width: 60px; height: 20px; }
.skel--title { width: 80%; height: 16px; }
.skel--desc  { width: 100%; height: 12px; }
@keyframes shimmer {
  0%   { background: #f0f0f0; }
  50%  { background: #e4e4e4; }
  100% { background: #f0f0f0; }
}

/* ── 빈 섹션 메시지 ── */
.empty-msg {
  color: #aaa;
  font-size: 14px;
  padding: 40px 0;
  text-align: center;
  grid-column: 1 / -1;
}
