/* ═══════════════════════════════════════════════
   KRKguide — Global Stylesheet v2
   Lato · ecru/sand · wysokie kontrasty AA
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

:root {
  --bg:        #f8f6f1;
  --surface:   #f0ede6;
  --white:     #ffffff;
  --border:    #ddd9d0;

  --text:      #1a1a1a;
  --text-sec:  #444444;
  --text-muted:#666666;
  --text-light:#888888;

  --accent:    #8b4c2a;
  --accent-lt: #f5e8e0;
  --accent-dk: #6b3a1f;

  --gray-100:  #f0ede6;
  --gray-200:  #e4e0d8;
  --gray-300:  #c8c4bc;
  --gray-400:  #999590;
  --gray-500:  #666260;
  --gray-700:  #3a3835;
  --gray-900:  #1a1a1a;

  --font: 'Lato', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 10px 36px rgba(0,0,0,.11);
  --max-w:     1100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 18px;
}

/* ── NAGŁÓWEK ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,246,241,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; height: 58px;
}
.site-header .logo {
  font-size: 1.2rem; font-weight: 900;
  letter-spacing: -0.01em; color: var(--text); text-decoration: none;
}
.site-header .logo span { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  font-size: .875rem; font-weight: 700; color: var(--text-muted);
  text-decoration: none; padding: 6px 11px;
  border-radius: var(--radius-sm); transition: color .15s, background .15s; white-space: nowrap;
}
.site-nav a:hover  { color: var(--text); background: var(--surface); }
.site-nav a.active { color: var(--accent); }

.nav-lang {
  font-size: .8rem; font-weight: 700; padding: 5px 11px;
  border-radius: 999px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text-muted); transition: all .15s;
}
.nav-lang:hover { border-color: var(--accent); color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .25s;
}
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 10px 18px 16px; gap: 2px;
}
.mobile-nav a {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; font-weight: 700; padding: 10px 12px;
  border-radius: var(--radius-sm); color: var(--text-sec); text-decoration: none;
}
.mobile-nav a:hover { background: var(--surface); color: var(--text); }
.mobile-nav.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; height: 70vh; min-height: 440px;
  background: #111; overflow: hidden; display: flex; align-items: flex-end;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.1s ease;
}
.hero-img.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.04) 0%, rgba(0,0,0,.2) 45%, rgba(0,0,0,.68) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 28px 18px 32px; width: 100%;
  max-width: var(--max-w); margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px); color: rgba(255,255,255,.95);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 999px; margin-bottom: 11px;
}
.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.1rem); font-weight: 900;
  color: #fff; line-height: 1.05; margin: 0 0 8px;
  letter-spacing: -0.02em; max-width: 660px;
}
.hero-caption {
  font-size: .85rem; font-weight: 300; color: rgba(255,255,255,.75);
  margin: 0 0 6px; font-style: italic;
}
.hero-sub {
  color: rgba(255,255,255,.82); font-size: .98rem;
  font-weight: 300; margin: 0 0 20px; max-width: 520px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-dots {
  position: absolute; bottom: 16px; right: 20px;
  display: flex; gap: 7px; z-index: 3;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.32); padding: 0; transition: background .2s, transform .2s;
}
.hero-dots button.active { background: #fff; transform: scale(1.35); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius-sm); border: none;
  font-family: var(--font); font-size: .9rem; font-weight: 700;
  text-decoration: none; transition: all .16s; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.38); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-outline { background: var(--white); border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 7px 14px; font-size: .82rem; }

/* ── SEKCJE ── */
.section { padding: 48px 0; }
.section-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px;
}
.section-title {
  font-size: clamp(1.3rem, 3vw, 1.85rem); font-weight: 900;
  margin: 0; letter-spacing: -0.01em; line-height: 1.15; color: var(--text);
}
.section-sub { margin: 7px 0 0; color: var(--text-muted); font-size: .95rem; }
.section-header { margin-bottom: 24px; }

/* ── AKORDEONY (Zrozumieć Kraków) ── */
.know-layout { display: grid; grid-template-columns: 1fr; gap: 20px; }
.know-grid { display: flex; flex-direction: column; gap: 7px; }

.accordion-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.accordion-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; font-weight: 700; font-size: .93rem;
  color: var(--text); transition: background .15s; user-select: none;
}
.accordion-item summary:hover { background: var(--gray-100); }
.accordion-item summary::-webkit-details-marker { display: none; }
.acc-icon {
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gray-500);
}
.acc-icon .material-icons { font-size: 18px; }
.acc-chevron {
  margin-left: auto; color: var(--gray-400); flex-shrink: 0;
  transition: transform .25s; font-size: 1.1rem; line-height: 1;
}
details[open] .acc-chevron { transform: rotate(90deg); }
.accordion-body {
  padding: 0 16px 16px 62px;
  color: var(--text-sec); font-size: .92rem; line-height: 1.72;
}
.accordion-body p { margin: 0 0 10px; }
.accordion-body p:last-child { margin: 0; }
.accordion-body strong { color: var(--text); font-weight: 700; }

/* ── ŚCIEŻKI ── */
.trails-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.trail-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 185px; display: flex; flex-direction: column;
  justify-content: flex-end; text-decoration: none;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.trail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trail-card.featured { grid-column: span 2; min-height: 240px; }
.trail-card-bg {
  position: absolute; inset: 0; object-fit: cover;
  width: 100%; height: 100%; transition: transform .4s ease;
}
.trail-card:hover .trail-card-bg { transform: scale(1.04); }
.trail-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.08) 65%);
}
.trail-card-body { position: relative; z-index: 2; padding: 13px 15px; }
.trail-card-tag {
  display: inline-block; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.88);
  font-size: .67rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 999px; margin-bottom: 5px;
}
.trail-card-title {
  font-size: .97rem; font-weight: 900; color: #fff; margin: 0 0 3px; line-height: 1.2;
}
.trail-card.featured .trail-card-title { font-size: 1.2rem; }
.trail-card-desc { color: rgba(255,255,255,.76); font-size: .81rem; font-weight: 300; margin: 0; }

/* ── PLANY ── */
.timeplans-row {
  display: flex; gap: 12px; overflow-x: auto;
  padding-bottom: 6px; scrollbar-width: none;
}
.timeplans-row::-webkit-scrollbar { display: none; }
.timeplan-card {
  flex: 0 0 245px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-sm);
}
.timeplan-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700;
  margin-bottom: 10px; background: var(--gray-100); color: var(--gray-700);
}
.timeplan-badge .material-icons { font-size: 14px; }
.timeplan-title { font-size: .93rem; font-weight: 900; margin: 0 0 10px; color: var(--text); }
.timeplan-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.timeplan-steps li {
  font-size: .84rem; color: var(--text-sec);
  padding-left: 15px; position: relative; line-height: 1.4;
}
.timeplan-steps li::before { content: '→'; position: absolute; left: 0; color: var(--gray-400); font-size: .78rem; }

/* ── LINKI ── */
.links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.link-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm);
}
.link-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.link-card-ico {
  width: 32px; height: 32px; border-radius: 7px;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gray-500);
}
.link-card-ico .material-icons { font-size: 18px; }
.link-card-title { font-weight: 900; font-size: .9rem; margin: 0; color: var(--text); }
.link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.link-list li a {
  display: flex; align-items: center; gap: 8px; padding: 7px 8px;
  border-radius: 6px; text-decoration: none; font-size: .86rem;
  font-weight: 400; color: var(--text-sec); transition: background .14s, color .14s;
}
.link-list li a:hover { background: var(--gray-100); color: var(--text); }
.link-list li a .material-icons { font-size: 16px; color: var(--gray-400); flex-shrink: 0; }
.link-list li a .ext { margin-left: auto; font-size: .7rem; color: var(--gray-300); }

.sidebar-card {
  position: sticky; top: 70px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm);
}

/* ── FOOTER ── */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.45); padding: 44px 0 24px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
.footer-logo { font-size: 1.2rem; font-weight: 900; color: #fff; text-decoration: none; }
.footer-logo span { color: #c4845a; }
.footer-desc { margin: 8px 0 0; font-weight: 300; line-height: 1.6; font-size: .88rem; }
.footer-col h5 {
  color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-col ul a { color: rgba(255,255,255,.42); text-decoration: none; font-size: .87rem; transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.32); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.72); }

/* ── COOKIE ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--gray-900); color: rgba(255,255,255,.8);
  padding: 14px 18px; display: none; align-items: center;
  gap: 16px; flex-wrap: wrap; border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
#cookie-banner.show { display: flex; }
#cookie-banner p { margin: 0; font-size: .87rem; flex: 1 1 280px; line-height: 1.5; }
#cookie-banner a { color: #c4845a; }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-accept {
  background: var(--accent); color: #fff; border: none;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .87rem; font-family: var(--font);
}
.cookie-accept:hover { background: var(--accent-dk); }
.cookie-reject {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2); padding: 9px 18px;
  border-radius: var(--radius-sm); font-size: .87rem; font-family: var(--font);
}
.cookie-reject:hover { border-color: rgba(255,255,255,.45); color: #fff; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── RESPONSIVE ── */
@media (min-width: 600px) {
  .trails-grid { grid-template-columns: repeat(3, 1fr); }
  .trail-card.featured { grid-column: span 2; }
  .links-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
  .trails-grid { grid-template-columns: repeat(4, 1fr); }
  .trail-card.featured { grid-column: span 2; }
  .links-grid { grid-template-columns: repeat(3, 1fr); }
  .know-layout { grid-template-columns: 1fr 295px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
@media (max-width: 899px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { height: 78vh; min-height: 400px; }
}
@media (max-width: 480px) {
  .trails-grid { grid-template-columns: 1fr 1fr; }
  .trail-card.featured { grid-column: span 2; min-height: 200px; }
  .links-grid { grid-template-columns: 1fr; }
  .timeplan-card { flex: 0 0 228px; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ══════════════════════════════════════
   PODSTRONY — styl artykułu
══════════════════════════════════════ */

/* Hero podstrony */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .88;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.65) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 28px 18px 32px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  margin-bottom: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .15s;
}
.page-hero-back:hover { color: #fff; }
.page-hero-back .material-icons { font-size: 16px; }
.page-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.92);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.page-hero-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.page-hero-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .83rem;
  color: rgba(255,255,255,.72);
  font-weight: 400;
}
.page-hero-meta .material-icons { font-size: 15px; }

/* Layout artykułu */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0 64px;
}
@media (min-width: 900px) {
  .article-layout { grid-template-columns: 1fr 300px; gap: 48px; }
}

/* Treść artykułu */
.article-body { min-width: 0; }

.article-lead {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text-sec);
  line-height: 1.75;
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article-body h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }

.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}

.article-body p {
  font-size: .97rem;
  color: var(--text-sec);
  line-height: 1.78;
  margin: 0 0 16px;
}

.article-body strong { color: var(--text); font-weight: 700; }

.article-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-lt);
  transition: border-color .15s;
}
.article-body a:hover { border-color: var(--accent); }

/* Zdjęcie w artykule */
.article-img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  margin: 28px 0;
  box-shadow: var(--shadow);
}
.article-img-caption {
  font-size: .8rem;
  color: var(--text-light);
  margin: -20px 0 28px;
  font-style: italic;
  padding-left: 4px;
}

/* Zdjęcia 2 w rzędzie */
.article-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.article-img-pair img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* Highlight box */
.article-highlight {
  background: var(--accent-lt);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 24px 0;
  font-size: .93rem;
  color: var(--text-sec);
  line-height: 1.65;
}
.article-highlight strong { color: var(--accent); }

/* Info box szara */
.article-infobox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 28px 0;
}
.article-infobox h4 {
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.article-infobox ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-infobox li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.5;
}
.article-infobox li .material-icons {
  font-size: 17px;
  color: var(--gray-400);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Lista miejsc */
.place-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.place-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-decoration: none;
  transition: box-shadow .18s, transform .18s;
  box-shadow: var(--shadow-sm);
}
.place-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.place-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: .8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.place-info h4 {
  font-size: .93rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
}
.place-info p {
  font-size: .83rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.place-maps {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--gray-300);
  font-size: .7rem;
  align-self: center;
}

/* Sidebar podstrony */
.article-sidebar { display: flex; flex-direction: column; gap: 16px; }

.sidebar-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.sidebar-section h4 {
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin: 0 0 12px;
}
@media (min-width: 900px) {
  .article-sidebar { position: sticky; top: 76px; align-self: start; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .material-icons { font-size: 14px; color: var(--gray-300); }
