/* 깃별 Design System — generated by export_site.py */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard', system-ui, -apple-system, sans-serif;
  background-color: #050505;
  color: #d4d4d8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* === Noise Overlay === */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* === Ambient Blobs === */
.ambient-blob-1,
.ambient-blob-2 {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.ambient-blob-1 {
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: rgba(14,165,233,0.10);
  filter: blur(120px);
}
.ambient-blob-2 {
  top: 100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(168,85,247,0.10);
  filter: blur(100px);
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1),
              filter 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .marquee-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* === Glass Panel === */
.glass {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}

/* === Floating Navigation === */
.floating-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
  border-radius: 9999px;
  transition: padding 0.3s ease;
  white-space: nowrap;
}
.floating-nav.scrolled {
  padding: 6px 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.nav-brand svg {
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 0.875rem;
  color: #a1a1aa;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  margin-left: 8px;
  padding: 6px 18px;
  background: #fff;
  color: #000 !important;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s;
}
.nav-cta:hover { transform: scale(1.02); }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .floating-nav { gap: 12px; padding: 8px 16px; }
}

/* === Hero === */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #a1a1aa;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  word-break: keep-all;
}
.hero h1 .gradient-text {
  background: linear-gradient(90deg, #d4d4d8, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  max-width: 560px;
  font-size: 1.125rem;
  color: #a1a1aa;
  margin-bottom: 36px;
  word-break: keep-all;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  background: #fff;
  color: #000;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s;
}
.btn-primary:hover { transform: scale(1.02); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  color: #d4d4d8;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 5.5rem; }
  .hero p { font-size: 1.25rem; }
}

/* === Metrics Strip === */
.metrics-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 48px 24px;
}
.metrics-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.metric-label {
  font-size: 0.875rem;
  color: #71717a;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === Board Preview (landing) === */
.board-section {
  padding: 80px 24px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #38bdf8;
  margin-bottom: 8px;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  word-break: keep-all;
}
.double-bezel {
  padding: 1.5px;
  border-radius: 2rem;
  background: rgba(255,255,255,0.05);
}
.double-bezel-inner {
  background: #0A0A0A;
  border-radius: calc(2rem - 1.5px);
  padding: 24px;
}
.repo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 12px;
  transition: background 0.2s;
  flex-wrap: wrap;
}
.repo-row:hover { background: rgba(255,255,255,0.02); }
.repo-row a {
  display: contents;
  color: inherit;
}
.repo-name {
  font-weight: 600;
  color: #fff;
  min-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.repo-desc {
  flex: 1;
  font-size: 0.8125rem;
  color: #71717a;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  min-width: 120px;
}
.repo-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.lang-chip {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.6875rem;
  background: rgba(255,255,255,0.06);
  color: #a1a1aa;
}
.topic-chip {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.6875rem;
  background: rgba(56,189,248,0.1);
  color: #38bdf8;
}
.repo-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.8125rem;
  color: #eab308;
  white-space: nowrap;
}
.new-badge {
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 600;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  white-space: nowrap;
}
.board-footer {
  text-align: center;
  margin-top: 32px;
}
.board-footer a {
  color: #38bdf8;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.board-footer a:hover { opacity: 0.7; }

@media (max-width: 640px) {
  .repo-row { flex-direction: column; align-items: flex-start; }
  .repo-name { min-width: auto; }
  .repo-desc { min-width: auto; }
}

/* === Board Page Specific === */
.board-page {
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.board-header {
  margin-bottom: 32px;
}
.board-header .section-label {
  margin-bottom: 4px;
}
.board-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.board-header .board-subtitle {
  font-size: 0.875rem;
  color: #71717a;
}

/* Board Controls */
.board-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 1rem;
  margin-bottom: 24px;
}
.board-search {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #d4d4d8;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.board-search:focus {
  border-color: rgba(255,255,255,0.3);
}
.board-search::placeholder {
  color: #52525b;
}
.lang-chips, .board-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.lang-chip-btn, .toggle-chip {
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.06);
  color: #a1a1aa;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  user-select: none;
  white-space: nowrap;
}
.lang-chip-btn:hover, .toggle-chip:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.lang-chip-btn.active, .toggle-chip.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.lang-chip-btn .chip-count {
  margin-left: 3px;
  font-size: 0.6875rem;
  color: #71717a;
}
.sort-segment {
  display: flex;
  gap: 0;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.sort-btn {
  padding: 6px 14px;
  font-size: 0.75rem;
  background: transparent;
  color: #71717a;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}
.sort-btn:hover { color: #d4d4d8; }
.sort-btn.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.result-count {
  font-size: 0.8125rem;
  color: #71717a;
  margin-bottom: 16px;
}

/* Board list rows */
.board-list .repo-row a {
  display: contents;
}
.pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 600;
  background: rgba(234,179,8,0.15);
  color: #eab308;
  white-space: nowrap;
}
.translate-badge {
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 600;
  background: rgba(56,189,248,0.15);
  color: #38bdf8;
  white-space: nowrap;
}

/* Load more */
.load-more-wrap {
  text-align: center;
  margin-top: 32px;
}
.load-more-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d4d4d8;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}
.load-more-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.load-more-btn.hidden { display: none; }

/* === Detail Page Specific === */
.detail-page {
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.breadcrumb {
  margin-bottom: 24px;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: #38bdf8;
  transition: opacity 0.2s;
}
.breadcrumb a:hover { opacity: 0.7; }
.detail-header {
  margin-bottom: 32px;
}
.detail-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  word-break: break-all;
}
.detail-header .detail-desc {
  font-size: 1rem;
  color: #71717a;
  margin-bottom: 16px;
  line-height: 1.5;
}
.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.detail-meta-row .topic-chip {
  font-size: 0.75rem;
}
.btn-github {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  color: #d4d4d8;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-github:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Meta Strip (6 cells) */
.detail-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  border-radius: 1rem;
  margin-bottom: 40px;
}
.meta-cell {
  text-align: center;
}
.meta-cell-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.meta-cell-label {
  font-size: 0.6875rem;
  color: #71717a;
  margin-top: 2px;
}

@media (min-width: 640px) {
  .detail-meta-strip { grid-template-columns: repeat(6, 1fr); }
}

/* Analysis Section */
.analysis-section {
  margin-bottom: 40px;
}
.analysis-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.analysis-unready {
  padding: 40px;
  text-align: center;
  border-radius: 1rem;
  color: #71717a;
  font-size: 0.9375rem;
}
.difficulty-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.difficulty-low { background: rgba(34,197,94,0.15); color: #22c55e; }
.difficulty-medium { background: rgba(234,179,8,0.15); color: #eab308; }
.difficulty-high { background: rgba(239,68,68,0.15); color: #ef4444; }

.curator-note {
  padding: 16px 20px;
  border-radius: 1rem;
  margin-bottom: 20px;
  border-left: 3px solid #38bdf8;
}
.curator-note-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 6px;
}
.curator-note-text {
  font-size: 0.9375rem;
  color: #d4d4d8;
  line-height: 1.6;
}

.analysis-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.analysis-card {
  padding: 20px;
  border-radius: 1rem;
}
.analysis-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.analysis-card ul {
  list-style: none;
  padding: 0;
}
.analysis-card li {
  font-size: 0.875rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.analysis-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.card-strengths { border-left: 3px solid #22c55e; }
.card-strengths h4 { color: #22c55e; }
.card-strengths li::before { background: #22c55e; }
.card-weaknesses { border-left: 3px solid #ef4444; }
.card-weaknesses h4 { color: #ef4444; }
.card-weaknesses li::before { background: #ef4444; }
.card-cautions { border-left: 3px solid #eab308; }
.card-cautions h4 { color: #eab308; }
.card-cautions li::before { background: #eab308; }
.card-actions { border-left: 3px solid #38bdf8; }
.card-actions h4 { color: #38bdf8; }
.card-actions li::before { background: #38bdf8; }

/* README Translation Section */
.translation-section {
  margin-bottom: 40px;
}
.translation-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.translation-notice {
  font-size: 0.75rem;
  color: #71717a;
  margin-bottom: 24px;
}
.translation-body {
  font-size: 0.9375rem;
  color: #d4d4d8;
  line-height: 1.75;
}
.translation-body h2,
.translation-body h3,
.translation-body h4,
.translation-body h5,
.translation-body h6 {
  color: #fff;
  margin: 24px 0 12px;
  font-weight: 600;
}
.translation-body h2 { font-size: 1.25rem; }
.translation-body h3 { font-size: 1.125rem; }
.translation-body p { margin-bottom: 16px; }
.translation-body ul, .translation-body ol {
  margin: 0 0 16px 20px;
}
.translation-body li { margin-bottom: 4px; }
.translation-body pre {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  margin-bottom: 16px;
}
.translation-body code {
  font-family: 'Pretendard', monospace;
  font-size: 0.8125rem;
  background: rgba(255,255,255,0.04);
  padding: 1px 4px;
  border-radius: 3px;
}
.translation-body pre code {
  background: none;
  padding: 0;
}
.translation-body blockquote {
  border-left: 3px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  margin: 0 0 16px;
  color: #a1a1aa;
}
.translation-body blockquote p { margin-bottom: 0; }
.translation-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.875rem;
}
.translation-body th, .translation-body td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px;
  text-align: left;
}
.translation-body th {
  background: rgba(255,255,255,0.03);
  color: #a1a1aa;
  font-weight: 600;
}
.translation-body hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 24px 0;
}

/* Notice box */
.origin-notice {
  padding: 20px;
  border-radius: 1rem;
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.6;
}
.origin-notice a { color: #38bdf8; }
.origin-notice a:hover { opacity: 0.7; }

/* === Features Grid === */
.features-section {
  padding: 80px 24px;
}
.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-card {
  padding: 32px;
  border-radius: 1.5rem;
}
.feature-card.wide {
  grid-column: 1 / -1;
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9375rem;
  color: #a1a1aa;
  line-height: 1.7;
}
.flow-indicator {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #71717a;
}
.flow-indicator span {
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.04);
  color: #d4d4d8;
}
.flow-indicator .arrow {
  color: #38bdf8;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(12, 1fr); }
  .feature-card:nth-child(1) { grid-column: span 8; }
  .feature-card:nth-child(2) { grid-column: span 4; }
  .feature-card:nth-child(3) { grid-column: span 4; }
  .feature-card:nth-child(4) { grid-column: span 8; }
}

/* === Marquee === */
.marquee-section {
  padding: 80px 24px;
  overflow: hidden;
  position: relative;
}
.marquee-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-card {
  width: 260px;
  flex-shrink: 0;
  padding: 20px;
  border-radius: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.marquee-card-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.marquee-card-text {
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.marquee-card-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  color: #eab308;
}
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, #050505 0%, transparent 100%);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, #050505 0%, transparent 100%);
}

@media (max-width: 640px) {
  .marquee-card { width: 200px; }
}

/* === CTA Section === */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(14,165,233,0.05), rgba(168,85,247,0.05));
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  word-break: keep-all;
}
.cta-section p {
  font-size: 1rem;
  color: #71717a;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 2.5rem; }
}

/* === Footer === */
.site-footer {
  padding: 48px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #a1a1aa;
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.8125rem;
  color: #71717a;
}
.footer-links a:hover { color: #d4d4d8; }
.footer-license {
  font-size: 0.75rem;
  color: #52525b;
  line-height: 1.6;
  max-width: 700px;
}
.footer-copy {
  font-size: 0.75rem;
  color: #52525b;
}

/* === Responsive === */
@media (max-width: 640px) {
  .footer-row { flex-direction: column; align-items: flex-start; }
  .board-controls { flex-direction: column; align-items: stretch; }
  .board-search { min-width: auto; }
  .sort-segment { justify-content: center; }
  .detail-meta-strip { grid-template-columns: repeat(2, 1fr); }
}

/* === Utility === */
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
