/* ==========================================================================
   LUMIÈRE VIBE - Modern Luxury Lifestyle & Magazine Design System
   Responsive / Adaptive (감응형·반응형 완벽 최적화) & Zero-CLS Layout
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Noto+Serif+KR:wght@400;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  /* Color Palette - Light Mode (Warm Peach, Soft Coral, Honey Amber & Cream) */
  --bg-main: #fcfbfa;
  --bg-surface: #ffffff;
  --bg-surface-glass: rgba(255, 255, 255, 0.94);
  --bg-card: #ffffff;
  --bg-card-hover: #fbf6f0;
  --bg-accent-soft: #fff5eb;
  
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --primary-peach: #ff7043;
  --primary-peach-hover: #f4511e;
  --primary-gold: #f59e0b;
  --primary-gold-hover: #d97706;
  --primary-rose: #ec4899;
  --primary-navy: #1e293b;
  --primary-emerald: #10b981;
  --primary-sky: #3b82f6;
  --primary-purple: #8b5cf6;
  
  --border-subtle: rgba(226, 232, 240, 0.9);
  --border-glass: rgba(255, 255, 255, 0.7);
  --border-gold: rgba(255, 112, 67, 0.35);
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.09);
  --shadow-glow: 0 0 25px rgba(255, 112, 67, 0.25);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  --font-heading: 'Outfit', 'Pretendard', sans-serif;
  --font-serif: 'Playfair Display', 'Noto Serif KR', serif;
  
  --container-max: 1320px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg-main: #0f172a;
  --bg-surface: #1e293b;
  --bg-surface-glass: rgba(30, 41, 59, 0.94);
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --bg-accent-soft: rgba(255, 112, 67, 0.12);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --primary-peach: #ff8a65;
  --primary-peach-hover: #ff7043;
  --primary-gold: #fbbf24;
  --primary-navy: #38bdf8;
  --border-subtle: rgba(51, 65, 85, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 112, 67, 0.4);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(255, 112, 67, 0.35);
}

/* Base Resets & Korean Word-Break Protection */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6, p, span, a, li, button, input, textarea {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.5vw, 2rem);
}

/* Scroll Progress Bar */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-rose), #38bdf8);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Navbar & Header (No Wrap, Responsive Gap, No Clipping)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.nav-container {
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  min-height: 76px;
  padding: 0.4rem 0;
  flex-wrap: nowrap;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.brand-logo:hover .brand-icon {
  transform: rotate(10deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-rose);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 2px;
}

/* Desktop Nav Menu */
.nav-menu-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 1.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link {
  text-decoration: none;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0.3rem;
  white-space: nowrap;
  word-break: keep-all;
  display: inline-block;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-icon {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  position: relative;
  flex-shrink: 0;
}

.btn-icon:hover {
  background: var(--bg-accent-soft);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.bookmark-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary-rose);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-admin-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f8fafc;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.btn-admin-pill:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: var(--primary-gold);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* ==========================================================================
   Mobile Navigation Drawer (Sleek Frosted Glass)
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
}

.mobile-drawer.open {
  display: block;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-left: 1px solid var(--border-subtle);
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-body {
  flex: 1;
}

.drawer-nav-list {
  list-style: none;
}

.drawer-nav-list li {
  margin-bottom: 0.5rem;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.drawer-link i {
  color: var(--primary-gold);
  width: 20px;
  text-align: center;
}

.drawer-link:hover, .drawer-link.active {
  background: var(--bg-accent-soft);
  color: var(--primary-gold);
  transform: translateX(4px);
}

.drawer-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* Search Dropdown / Bar */
.search-bar-container {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  display: none;
  animation: slideDown 0.25s ease;
}

.search-bar-container.open {
  display: block;
}

.search-input-wrapper {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-subtle);
  background: var(--bg-main);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
}

.search-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(197, 155, 39, 0.15);
}

.search-icon-inside {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: clamp(1.5rem, 3vw, 3rem) 0 2rem;
  overflow: hidden;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: clamp(380px, 45vh, 480px);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.85) 75%, rgba(15, 23, 42, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  max-width: 860px;
  color: #ffffff;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.badge-featured {
  background: linear-gradient(135deg, #ff7043, #ffa726);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 112, 67, 0.3);
}

.badge-category {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.hero-title:hover {
  color: var(--primary-gold);
}

.hero-summary {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
}

.hero-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  object-fit: cover;
}

/* Category Filter Pills */
.category-filter-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem;
}

.category-pills {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.cat-pill:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.cat-pill.active {
  background: linear-gradient(135deg, #ff7043, #ff8a80);
  color: #ffffff;
  border-color: #ff7043;
  box-shadow: 0 4px 14px rgba(255, 112, 67, 0.35);
}

[data-theme="dark"] .cat-pill.active {
  background: linear-gradient(135deg, #ff7043, #ff8a80);
  color: #ffffff;
}

/* Main Layout Grid */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.section-title i {
  color: var(--primary-gold);
}

.post-count-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Post Cards Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.post-thumb-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
}

.post-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.post-card:hover .post-thumb {
  transform: scale(1.06);
}

.post-badge-pos {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.post-bookmark-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.post-bookmark-btn:hover, .post-bookmark-btn.active {
  background: var(--primary-rose);
  color: #ffffff;
  transform: scale(1.1);
}

.post-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-title:hover {
  color: var(--primary-gold);
}

.post-excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.post-meta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
}

.post-stats {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Sidebar Widgets */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.widget {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 0.65rem;
}

.widget-title i {
  color: var(--primary-gold);
}

/* Author Profile Widget */
.author-widget-card {
  text-align: center;
}

.author-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.author-badge-verified {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #3b82f6;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 2px solid var(--bg-card);
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.author-role-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-rose);
  margin-bottom: 0.85rem;
}

.author-short-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.author-cred-list {
  text-align: left;
  background: var(--bg-accent-soft);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--primary-gold);
  list-style-type: none;
}

.author-cred-list li {
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.author-cred-list li::before {
  content: '✓';
  color: var(--primary-gold);
  font-weight: bold;
}

.btn-author-contact {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--primary-gold), #b0891e);
  color: #0f172a;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-author-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Trending Posts Widget */
.trending-post-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.trending-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trending-post-item:hover {
  transform: translateX(4px);
}

.trending-rank {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-gold);
  min-width: 24px;
}

.trending-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.trending-info {
  flex: 1;
}

.trending-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-primary);
}

.trending-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* AdSense Container Styles (Compliant, Zero-CLS) */
.ad-container {
  position: relative;
  background: var(--bg-surface);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  margin: 2rem 0;
  padding: 1.25rem;
  text-align: center;
  overflow: hidden;
  min-height: 120px;
}

.ad-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.ad-placeholder-body {
  padding: 1rem;
  background: var(--bg-accent-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.ad-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(197, 155, 39, 0.2);
  color: var(--primary-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.ad-placeholder-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.ad-placeholder-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-gold);
  cursor: pointer;
}

/* ==========================================================================
   Post Detail Article Page
   ========================================================================== */
.post-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  margin-bottom: 4rem;
}

.article-main {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-sm);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary-gold);
}

.article-header {
  margin-bottom: 2rem;
}

.article-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 1rem 0 1.25rem;
  color: var(--text-primary);
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.font-size-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-fs {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-fs:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.article-hero-img-wrap {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Article Body Typography */
.article-content {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-primary);
}

.article-content.fs-small {
  font-size: 0.95rem;
}

.article-content.fs-large {
  font-size: 1.25rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content .lead-text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-secondary);
  border-left: 4px solid var(--primary-gold);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 800;
  margin: 2.75rem 0 1.25rem;
  color: var(--text-primary);
  scroll-margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-content h2::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 24px;
  background: var(--primary-gold);
  border-radius: 4px;
  flex-shrink: 0;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.4vw, 1.3rem);
  font-weight: 700;
  margin: 2rem 0 1rem;
  scroll-margin-top: 100px;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.6rem;
}

.callout-box {
  background: var(--bg-accent-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.callout-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.data-table th, .data-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.data-table th {
  background: var(--bg-card-hover);
  font-weight: 700;
  color: var(--text-primary);
}

.faq-accordion details {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-accordion details[open] {
  border-color: var(--primary-gold);
}

.faq-accordion summary {
  font-weight: 700;
  color: var(--text-primary);
  outline: none;
}

.faq-accordion details p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.summary-box {
  background: linear-gradient(135deg, rgba(197, 155, 39, 0.12), rgba(224, 122, 95, 0.12));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin: 2.5rem 0;
}

.summary-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
}

/* Article Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2.5rem 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.article-tag {
  background: var(--bg-card-hover);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.article-tag:hover {
  background: var(--primary-gold);
  color: #0f172a;
}

/* Sticky Table of Contents (TOC) */
.toc-widget {
  position: sticky;
  top: 96px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.toc-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.toc-list {
  list-style: none;
}

.toc-item {
  margin-bottom: 0.6rem;
}

.toc-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.4;
  display: block;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border-left: 2px solid transparent;
}

.toc-link:hover, .toc-link.active {
  color: var(--primary-gold);
  border-left-color: var(--primary-gold);
  background: var(--bg-accent-soft);
  padding-left: 0.75rem;
  font-weight: 600;
}

/* Share & Reactions Bar */
.post-reaction-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-like {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.5rem;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-like:hover, .btn-like.liked {
  background: #fee2e2;
  border-color: #f87171;
  color: #ef4444;
  transform: scale(1.05);
}

.share-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-share {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-share:hover {
  background: var(--primary-gold);
  color: #0f172a;
  transform: translateY(-2px);
}

/* Comments Section */
.comments-section {
  margin-top: 3rem;
}

.comment-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.comment-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  margin-bottom: 1rem;
}

.btn-submit-comment {
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f8fafc;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-submit-comment:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: var(--primary-gold);
}

.comment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: 700;
  font-size: 0.95rem;
}

.comment-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Static & Policy Pages */
.policy-page-container {
  max-width: 880px;
  margin: clamp(1.5rem, 3vw, 3rem) auto 5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
}

.policy-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.policy-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.policy-summary-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.policy-section p {
  color: var(--text-secondary);
  line-height: 1.75;
  white-space: pre-line;
}

/* About Page Styles */
.about-hero {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-avatar-large {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-gold);
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.about-grid-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.cred-card {
  background: var(--bg-card-hover);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.cred-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cred-card-list {
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.cred-card-list li {
  margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info-card {
  background: var(--bg-accent-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-gold);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  margin: 4rem 0;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.newsletter-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-btn {
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, var(--primary-gold), #b0891e);
  color: #0f172a;
  border-radius: var(--radius-full);
  font-weight: 800;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition-fast);
}

.newsletter-btn:hover {
  transform: scale(1.04);
}

/* Site Footer */
.site-footer {
  background: #090d16;
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Admin / CMS Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #0f172a;
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--primary-gold);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  animation: slideInRight 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints (감응형·반응형)
   ========================================================================== */

/* Large Screens to Laptop (1280px ~ 1024px) */
@media (max-width: 1200px) {
  .nav-menu-wrapper {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .admin-btn-text {
    display: none;
  }
  .btn-admin-pill {
    padding: 0.45rem 0.65rem;
  }
  .main-layout, .post-detail-layout {
    grid-template-columns: 1fr 300px;
    gap: 1.75rem;
  }
}

/* Tablet & iPad (1024px ~ 768px) */
@media (max-width: 1024px) {
  .main-layout, .post-detail-layout {
    grid-template-columns: 1fr;
  }
  .sidebar, .toc-widget {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .about-grid-credentials {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices (Below 768px) */
@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .comment-input-row, .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-btn {
    width: 100%;
  }
  .post-reaction-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Mobile Bottom Navigation Dock (App-Like Touch Bar)
   ========================================================================== */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-subtle);
  z-index: 2200;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 0 0.5rem;
}

.dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  gap: 3px;
  flex: 1;
  padding: 4px 0;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.dock-item i {
  font-size: 1.15rem;
  transition: transform var(--transition-fast);
}

.dock-item.active, .dock-item:hover {
  color: var(--primary-gold);
}

.dock-item.active i {
  transform: translateY(-2px);
  color: var(--primary-gold);
}

.dock-badge {
  position: absolute;
  top: 2px;
  right: 22%;
  background: var(--primary-rose);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .mobile-bottom-dock {
    display: block;
  }
  body {
    padding-bottom: 72px;
  }
  .toast-container {
    bottom: 80px;
  }
}

