/* ==============================================
   BASE CAMP – Clean Alpine
   CSS-Prefix: bc-
   Fonts: Josefin Sans (headings), Hind (body)
   ============================================== */

/* ---- @font-face ---- */
@font-face {
  font-family: 'Josefin Sans';
  src: url('../fonts/josefin-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefin Sans';
  src: url('../fonts/josefin-sans-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hind';
  src: url('../fonts/hind-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hind';
  src: url('../fonts/hind-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hind';
  src: url('../fonts/hind-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset / Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bc-primary:    #1E3A5F;
  --bc-secondary:  #4A7C59;
  --bc-accent:     #D4820B;
  --bc-bg:         #F8FAFB;
  --bc-text:       #1F2937;
  --bc-text-light: #6B7280;
  --bc-white:      #FFFFFF;
  --bc-border:     #E5E7EB;
  --bc-diff-begin: #4A7C59;
  --bc-diff-adv:   #D4820B;
  --bc-diff-exp:   #B91C1C;
  --bc-max:        1080px;
  --bc-font-head:  'Josefin Sans', sans-serif;
  --bc-font-body:  'Hind', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--bc-font-body);
  font-weight: 400;
  color: var(--bc-text);
  background-color: var(--bc-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ---- Layout ---- */
.bc-container {
  max-width: var(--bc-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header / Nav ---- */
.bc-header {
  background: rgba(248, 250, 251, 0.92);
  border-bottom: 1px solid var(--bc-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bc-header-inner {
  max-width: var(--bc-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.bc-logo {
  font-family: var(--bc-font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bc-primary);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bc-logo span { color: var(--bc-accent); }

.bc-logo-img { display: flex; align-items: center; }
.bc-logo-img img { height: 40px; width: auto; }
.bc-logo-link { display: flex; align-items: center; text-decoration: none; }
.bc-logo-svg { height: 40px; width: auto; }
.bc-logo-footer { height: 36px; filter: brightness(0) invert(1); margin-bottom: 16px; }

.bc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.bc-nav a {
  font-family: var(--bc-font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--bc-text-light);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.bc-nav a:hover, .bc-nav .current-menu-item a { color: var(--bc-primary); }

.bc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.bc-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bc-primary);
  border-radius: 2px;
}

/* ---- Hero ---- */
.bc-hero { padding: 80px 0 64px; }

.bc-hero-inner {
  max-width: var(--bc-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bc-hero-label {
  font-family: var(--bc-font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bc-accent);
  margin-bottom: 20px;
}

.bc-hero h1 {
  font-family: var(--bc-font-head);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--bc-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin-bottom: 24px;
}

.bc-hero-sub {
  font-size: 1.125rem;
  color: var(--bc-text-light);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.bc-btn {
  display: inline-block;
  font-family: var(--bc-font-head);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 2px;
}
.bc-btn-primary {
  background: var(--bc-primary);
  color: var(--bc-white);
  transition: background 0.2s;
}
.bc-btn-primary:hover { background: #162d4a; }
.bc-btn-ghost {
  border: 1.5px solid var(--bc-primary);
  color: var(--bc-primary);
  margin-left: 16px;
  transition: background 0.2s, color 0.2s;
}
.bc-btn-ghost:hover { background: var(--bc-primary); color: var(--bc-white); }

.bc-hero-image {
  margin-top: 56px;
  width: 100%;
  height: 480px;
  background: linear-gradient(160deg, #1E3A5F 0%, #2d5080 35%, #3a6b7a 60%, #4A7C59 85%, #5a9470 100%);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.bc-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,95,0.75) 0%, rgba(30,58,95,0.2) 45%, transparent 70%);
}
.bc-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1080 480' preserveAspectRatio='xMidYMax meet'%3E%3Cpolygon points='0,480 200,200 350,340 500,120 650,300 780,80 920,250 1080,150 1080,480' fill='rgba(255,255,255,0.04)'/%3E%3Cpolygon points='0,480 150,280 320,400 480,180 620,360 760,140 900,310 1080,200 1080,480' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom center;
}

.bc-hero-caption { position: relative; z-index: 1; }
.bc-hero-caption p {
  font-family: var(--bc-font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.bc-hero-caption h2 {
  font-family: var(--bc-font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--bc-white);
  line-height: 1.15;
}

/* ---- Section ---- */
.bc-section { padding: 72px 0; }
.bc-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bc-border);
}
.bc-section-head h2 {
  font-family: var(--bc-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bc-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bc-section-head a {
  font-family: var(--bc-font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--bc-accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.bc-section-head a:hover { text-decoration: underline; }

/* ---- Divider ---- */
.bc-divider {
  border: none;
  border-top: 1px solid var(--bc-border);
  margin: 0;
}

/* ---- Cards Grid ---- */
.bc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bc-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30,58,95,0.10);
}

.bc-card-thumb {
  width: 100%;
  height: 200px;
  display: block;
  position: relative;
}
.bc-card-thumb-a { background: linear-gradient(135deg, #1E3A5F 0%, #2d5080 50%, #3d6f8a 100%); }
.bc-card-thumb-b { background: linear-gradient(135deg, #2d5a3a 0%, #4A7C59 50%, #6a9e78 100%); }
.bc-card-thumb-c { background: linear-gradient(135deg, #8b5a1a 0%, #D4820B 60%, #e8a840 100%); }

.bc-card-body { padding: 24px; }

.bc-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.bc-tag {
  font-family: var(--bc-font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-accent);
}

.bc-date {
  font-size: 0.8125rem;
  color: var(--bc-text-light);
}

.bc-card-title {
  font-family: var(--bc-font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bc-primary);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.bc-card-grid .bc-card-title { font-size: 1rem; margin-bottom: 8px; }

.bc-card-excerpt {
  font-size: 0.9rem;
  color: var(--bc-text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}
.bc-card-grid .bc-card-excerpt { font-size: 0.875rem; margin-bottom: 14px; }

.bc-read-more {
  font-family: var(--bc-font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--bc-primary);
  text-decoration: none;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.bc-read-more::after { content: '\2192'; transition: transform 0.2s; }
.bc-read-more:hover::after { transform: translateX(3px); }

/* ---- Difficulty Pills ---- */
.bc-pill {
  display: inline-block;
  font-family: var(--bc-font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  color: var(--bc-white);
}
.bc-pill-beginner  { background: var(--bc-diff-begin); }
.bc-pill-gevorderd { background: var(--bc-diff-adv); }
.bc-pill-expert    { background: var(--bc-diff-exp); }

/* ---- Category Grid ---- */
.bc-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bc-border);
  border: 1px solid var(--bc-border);
  border-radius: 3px;
  overflow: hidden;
}
.bc-cat-item {
  background: var(--bc-white);
  padding: 32px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.bc-cat-item:hover { background: var(--bc-bg); }

.bc-cat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-cat-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--bc-primary);
  fill: none;
  stroke-width: 1.5;
}
.bc-cat-label {
  font-family: var(--bc-font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--bc-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bc-cat-count {
  font-size: 0.8125rem;
  color: var(--bc-text-light);
}

/* ---- Route List (Homepage) ---- */
.bc-route-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--bc-border);
  border: 1px solid var(--bc-border);
  border-radius: 3px;
  overflow: hidden;
}
.bc-route-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 0;
  background: var(--bc-white);
  text-decoration: none;
  transition: background 0.2s;
  align-items: stretch;
}
.bc-route-item:hover { background: var(--bc-bg); }

.bc-route-thumb { height: 80px; }
.bc-route-thumb-a { background: linear-gradient(135deg, #1E3A5F, #3d6f8a); }
.bc-route-thumb-b { background: linear-gradient(135deg, #2d5a3a, #6a9e78); }
.bc-route-thumb-c { background: linear-gradient(135deg, #8b5a1a, #D4820B); }
.bc-route-thumb-d { background: linear-gradient(135deg, #5a2020, #B91C1C); }

.bc-route-info {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.bc-route-name {
  font-family: var(--bc-font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bc-primary);
  letter-spacing: 0.02em;
}
.bc-route-meta {
  font-size: 0.8125rem;
  color: var(--bc-text-light);
  display: flex;
  gap: 16px;
}
.bc-route-level {
  padding: 16px 24px;
  display: flex;
  align-items: center;
}

/* ---- About Section ---- */
.bc-about {
  padding: 72px 0;
  background: var(--bc-white);
}
.bc-about-inner {
  max-width: var(--bc-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.bc-about-portrait {
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
}
.bc-about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bc-about-label {
  font-family: var(--bc-font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bc-accent);
  margin-bottom: 16px;
}
.bc-about-title {
  font-family: var(--bc-font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--bc-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}
.bc-about-text {
  font-size: 1rem;
  color: var(--bc-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.bc-about-text strong { color: var(--bc-text); font-weight: 600; }

.bc-about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--bc-border);
}
.bc-stat-num {
  font-family: var(--bc-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bc-primary);
  display: block;
  line-height: 1;
}
.bc-stat-label {
  font-size: 0.875rem;
  color: var(--bc-text-light);
  margin-top: 6px;
  display: block;
}

/* ---- Breadcrumb ---- */
.bc-breadcrumb-wrap { padding: 20px 0 0; }
.bc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}
.bc-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bc-breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--bc-border);
  font-size: 0.875rem;
}
.bc-breadcrumb a {
  font-size: 0.8125rem;
  color: var(--bc-text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.bc-breadcrumb a:hover { color: var(--bc-primary); }
.bc-breadcrumb span {
  font-size: 0.8125rem;
  color: var(--bc-text);
}

/* ---- Article Header ---- */
.bc-article-header { padding: 40px 0 48px; }
.bc-article-tag {
  font-family: var(--bc-font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bc-accent);
  margin-bottom: 16px;
  display: block;
}
.bc-article-title {
  font-family: var(--bc-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--bc-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin-bottom: 20px;
}
.bc-article-intro {
  font-size: 1.125rem;
  color: var(--bc-text-light);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.bc-article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--bc-border);
}
.bc-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E3A5F, #4A7C59);
  flex-shrink: 0;
}
.bc-byline-text { display: flex; flex-direction: column; gap: 2px; }
.bc-byline-name { font-weight: 600; font-size: 0.9375rem; color: var(--bc-text); }
.bc-byline-meta { font-size: 0.8125rem; color: var(--bc-text-light); }

/* ---- Article Image ---- */
.bc-article-image {
  width: 100%;
  height: 420px;
  background: linear-gradient(160deg, #1E3A5F 0%, #2d5080 40%, #4A7C59 100%);
  border-radius: 3px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Article Body ---- */
.bc-article-body h2 {
  font-family: var(--bc-font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--bc-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--bc-border);
}
.bc-article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.bc-article-body h3 {
  font-family: var(--bc-font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-text);
  margin: 24px 0 12px;
  letter-spacing: 0.02em;
}
.bc-article-body p {
  font-size: 1.0rem;
  color: var(--bc-text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.bc-article-body ul, .bc-article-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.bc-article-body li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bc-text);
  margin-bottom: 8px;
}
.bc-article-body a {
  color: var(--bc-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bc-article-body a:hover { color: var(--bc-accent); }
.bc-article-body blockquote {
  border-left: 3px solid var(--bc-accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bc-white);
  font-style: italic;
  color: var(--bc-text-light);
}

/* ---- Rating Hero ---- */
.bc-rating-hero {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 3px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.bc-rating-product-name {
  font-family: var(--bc-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bc-primary);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.bc-stars { display: flex; gap: 4px; margin-bottom: 10px; }
.bc-star { width: 20px; height: 20px; color: var(--bc-accent); }
.bc-star-empty { color: var(--bc-border); }
.bc-star-svg { width: 100%; height: 100%; fill: currentColor; }
.bc-rating-label { font-size: 0.875rem; color: var(--bc-text-light); }

.bc-rating-score-block { text-align: center; }
.bc-score-num {
  font-family: var(--bc-font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bc-primary);
  line-height: 1;
  display: block;
}
.bc-score-max { font-size: 1rem; color: var(--bc-text-light); display: block; margin-top: 4px; }
.bc-score-verdict {
  font-family: var(--bc-font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-secondary);
  margin-top: 8px;
  display: block;
}

/* ---- Pro / Contra ---- */
.bc-pro-contra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.bc-pro, .bc-contra { padding: 24px; border-radius: 3px; }
.bc-pro { background: rgba(74,124,89,0.08); border: 1px solid rgba(74,124,89,0.25); }
.bc-contra { background: rgba(185,28,28,0.06); border: 1px solid rgba(185,28,28,0.20); }
.bc-pro-title, .bc-contra-title {
  font-family: var(--bc-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bc-pro-title { color: var(--bc-secondary); }
.bc-contra-title { color: var(--bc-diff-exp); }
.bc-pro ul, .bc-contra ul { list-style: none; padding: 0; margin: 0; }
.bc-pro li, .bc-contra li {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.bc-pro li::before { content: '+'; font-weight: 700; color: var(--bc-secondary); flex-shrink: 0; }
.bc-contra li::before { content: '\2013'; font-weight: 700; color: var(--bc-diff-exp); flex-shrink: 0; }

/* ---- Compare Table ---- */
.bc-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.9375rem;
}
.bc-compare-table thead th {
  font-family: var(--bc-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-primary);
  text-align: left;
  padding: 12px 16px;
  background: var(--bc-bg);
  border-bottom: 2px solid var(--bc-primary);
}
.bc-compare-table tbody tr { border-bottom: 1px solid var(--bc-border); }
.bc-compare-table tbody tr:last-child { border-bottom: none; }
.bc-compare-table tbody td { padding: 14px 16px; color: var(--bc-text); vertical-align: middle; }
.bc-compare-table tbody td:first-child { font-weight: 600; color: var(--bc-text-light); font-size: 0.875rem; }

/* ---- Archive Header ---- */
.bc-archive-header { padding: 40px 0 48px; }
.bc-archive-label {
  font-family: var(--bc-font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bc-accent);
  margin-bottom: 12px;
  display: block;
}
.bc-archive-title {
  font-family: var(--bc-font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--bc-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.bc-archive-desc {
  font-size: 1.0625rem;
  color: var(--bc-text-light);
  max-width: 600px;
  line-height: 1.65;
}

/* ---- Archive Card Grid ---- */
.bc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.bc-thumb-1 { background: linear-gradient(135deg, #1E3A5F 0%, #2d5080 50%, #3d6f8a 100%); }
.bc-thumb-2 { background: linear-gradient(135deg, #2d5a3a 0%, #4A7C59 50%, #6a9e78 100%); }
.bc-thumb-3 { background: linear-gradient(135deg, #8b5a1a 0%, #D4820B 60%, #e8a840 100%); }
.bc-thumb-4 { background: linear-gradient(135deg, #5a2020 0%, #B91C1C 60%, #d44040 100%); }
.bc-thumb-5 { background: linear-gradient(135deg, #1c3a60 0%, #2a5480 40%, #4A7C59 100%); }
.bc-thumb-6 { background: linear-gradient(135deg, #3a4a1c 0%, #607040 60%, #8a9a60 100%); }
.bc-thumb-7 { background: linear-gradient(135deg, #1E3A5F 0%, #4A7C59 100%); }
.bc-thumb-8 { background: linear-gradient(135deg, #6b3a1c 0%, #D4820B 100%); }
.bc-thumb-9 { background: linear-gradient(135deg, #2a1a1a 0%, #B91C1C 100%); }

.bc-card-grid .bc-card-thumb { height: 180px; }

.bc-card-pill-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.bc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--bc-border);
}
.bc-route-stats-inline { display: flex; gap: 14px; }
.bc-route-stat {
  font-size: 0.8125rem;
  color: var(--bc-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- Pagination ---- */
.bc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 32px 0 64px;
}
.bc-page-btn {
  font-family: var(--bc-font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bc-border);
  border-radius: 2px;
  background: var(--bc-white);
  color: var(--bc-text-light);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.bc-page-btn:hover { border-color: var(--bc-primary); color: var(--bc-primary); }
.bc-page-btn.bc-page-active {
  background: var(--bc-primary);
  border-color: var(--bc-primary);
  color: var(--bc-white);
}

/* ---- Search Form ---- */
.bc-search-form {
  display: flex;
  gap: 8px;
}
.bc-search-input {
  flex: 1;
  font-family: var(--bc-font-body);
  font-size: 0.9375rem;
  padding: 10px 16px;
  border: 1.5px solid var(--bc-border);
  border-radius: 2px;
  background: var(--bc-white);
  color: var(--bc-text);
  outline: none;
  transition: border-color 0.2s;
}
.bc-search-input:focus { border-color: var(--bc-primary); }

/* ---- TOC ---- */
.bc-toc ol a:hover { color: var(--bc-primary); }

/* ---- Footer ---- */
.bc-footer {
  background: var(--bc-primary);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 40px;
}
.bc-footer-inner {
  max-width: var(--bc-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.bc-footer-brand .bc-logo { color: var(--bc-white); display: inline-block; margin-bottom: 16px; }
.bc-footer-brand p { font-size: 0.875rem; line-height: 1.6; }

.bc-footer-col h4 {
  font-family: var(--bc-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-white);
  margin-bottom: 16px;
}
.bc-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bc-footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.bc-footer-col a:hover { color: var(--bc-white); }

.bc-footer-bottom {
  max-width: var(--bc-max);
  margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bc-footer-bottom p { font-size: 0.8125rem; }
.bc-footer-bottom nav { display: flex; gap: 24px; }
.bc-footer-bottom nav a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.bc-footer-bottom nav a:hover { color: rgba(255,255,255,0.9); }

/* ---- WP Specific ---- */
.wp-block-image { margin: 24px 0; }
.wp-block-image img { border-radius: 3px; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .bc-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bc-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .bc-about-portrait { max-width: 280px; aspect-ratio: 1; } .bc-about-portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .bc-rating-hero { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .bc-rating-score-block { text-align: left; }
  .bc-pro-contra { grid-template-columns: 1fr; }
  .bc-card-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .bc-header-inner { height: 56px; }
  .bc-nav { display: none; }
  .bc-nav.bc-nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--bc-white);
    border-bottom: 1px solid var(--bc-border);
    padding: 16px 24px;
    gap: 16px;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .bc-nav-toggle { display: flex; }

  .bc-hero { padding: 48px 0 40px; }
  .bc-hero-image { height: 280px; padding: 20px 24px; }
  .bc-grid-3 { grid-template-columns: 1fr; }
  .bc-cat-grid { grid-template-columns: 1fr 1fr; }
  .bc-route-item { grid-template-columns: 80px 1fr auto; }
  .bc-btn-ghost { display: none; }
  .bc-about-stats { gap: 24px; }

  .bc-article-image { height: 220px; }
  .bc-compare-table { font-size: 0.8125rem; }
  .bc-compare-table thead th, .bc-compare-table tbody td { padding: 10px 10px; }

  .bc-card-grid { grid-template-columns: 1fr; }
  .bc-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .bc-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .bc-section { padding: 48px 0; }
  .bc-article-header { padding: 24px 0 32px; }
}
