/* =========================================================
   Campusia — Newspaper-style campus portal
   Inspired by modern news layouts (The Daily Star style)
   ========================================================= */
:root {
  --navy: #0f2744;
  --navy-mid: #1a3a5c;
  --navy-light: #2c5282;
  --accent: #c41e3a;
  --accent-hover: #9e1830;
  --gold: #c9a227;
  --text: #1a1a1a;
  --text-muted: #5a6570;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-dark: #0b1c30;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(15, 39, 68, 0.08);
  --font-serif: 'Merriweather', Georgia, serif;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;
  --max: 1200px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: .5rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.85); margin-left: 1rem; }
.topbar a:hover { color: #fff; }
.topbar-sep { opacity: .4; margin: 0 .5rem; }
.topbar-tagline { opacity: .75; }
.topbar-admin { opacity: .6; font-size: .75rem; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: .85rem 0;
  min-height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--navy);
  flex-shrink: 0;
}
.logo:hover { color: var(--navy); }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 4px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 900; letter-spacing: -.02em; }
.logo-text small { font-size: .7rem; color: var(--text-muted); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

.header-search {
  margin-left: auto;
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-soft);
  max-width: 340px;
  width: 100%;
}
.header-search input {
  border: 0; background: transparent; padding: .55rem 1rem; flex: 1; min-width: 0; outline: none;
}
.header-search button {
  border: 0; background: var(--navy); color: #fff; padding: 0 1rem; cursor: pointer;
}
.header-search button:hover { background: var(--navy-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy); transition: .2s;
}

/* ---------- Main nav ---------- */
.main-nav {
  background: var(--navy);
  border-bottom: 3px solid var(--accent);
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.nav-list a {
  display: block;
  color: rgba(255,255,255,.9);
  padding: .7rem .9rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.nav-list a:hover,
.nav-list a.active {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-bottom-color: var(--gold);
}

/* ---------- Breaking ---------- */
.breaking-bar {
  background: #fff5f5;
  border-bottom: 1px solid #fecaca;
  padding: .55rem 0;
}
.breaking-inner { display: flex; align-items: center; gap: 1rem; overflow: hidden; }
.breaking-label {
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .55rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.breaking-ticker {
  display: flex;
  gap: 2rem;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.breaking-ticker a { font-size: .9rem; font-weight: 600; color: var(--text); }
.breaking-ticker a:hover { color: var(--accent); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Main ---------- */
.main-content { padding: 1.5rem 0 3rem; min-height: 50vh; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .15s;
  text-decoration: none;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-mid); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); color: #fff; }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: .4rem .85rem; font-size: .8rem; }

/* ---------- Cards & news ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: .55rem;
  border-bottom: 3px solid var(--navy);
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
}
.section-head a { font-size: .85rem; font-weight: 600; color: var(--accent); }

.lead-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .lead-grid { grid-template-columns: 1fr; }
}

.story-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.story-card.featured .story-media {
  aspect-ratio: 16/10;
}
.story-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.story-card:hover .story-media img { transform: scale(1.04); }
.story-media .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.35);
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
}
.story-body { padding: 1rem 0 0; }
.story-card.boxed {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.story-card.boxed .story-body { padding: 1rem; }

.cat-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
  margin-bottom: .35rem;
}
.story-title {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: .4rem;
}
.story-card.featured .story-title { font-size: 1.65rem; font-weight: 900; }
.story-card:hover .story-title { color: var(--accent); }
.story-excerpt { color: var(--text-muted); font-size: .92rem; margin-bottom: .5rem; }
.story-meta { font-size: .78rem; color: var(--text-muted); display: flex; flex-wrap: wrap; gap: .4rem .75rem; }

.secondary-stories { display: flex; flex-direction: column; gap: 1rem; }
.story-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: .85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.story-row:last-child { border-bottom: 0; padding-bottom: 0; }
.story-row .story-media { aspect-ratio: 4/3; border-radius: 4px; }
.story-row .story-title { font-size: 1rem; }

/* Category sections */
.home-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 960px) {
  .home-layout { grid-template-columns: 1fr; }
}

.section-block { margin-bottom: 2.25rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card-grid .story-card { border: 1px solid var(--border); }
.card-grid .story-body { padding: .9rem 1rem 1.1rem; }

/* Category stripe */
.cat-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 700px) {
  .cat-section-grid { grid-template-columns: 1fr; }
}
.mini-list li {
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
}
.mini-list li:last-child { border-bottom: 0; }
.mini-list a { font-weight: 600; font-size: .95rem; line-height: 1.35; display: block; }
.mini-list small { color: var(--text-muted); font-size: .75rem; }

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
}
.sidebar-widget.highlight {
  background: linear-gradient(160deg, #0f2744, #1a3a5c);
  color: #fff;
  border: 0;
}
.sidebar-widget.highlight .widget-title { color: #fff; border-color: rgba(255,255,255,.2); }
.sidebar-widget.highlight a { color: #fff; }
.sidebar-widget.highlight small { color: rgba(255,255,255,.65); }
.sidebar-widget.highlight .widget-more { color: var(--gold); }

.widget-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: .85rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--navy);
}
.popular-list li {
  display: flex;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
}
.popular-list li:last-child { border-bottom: 0; }
.popular-list .rank {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  min-width: 1.4rem;
}
.popular-list a { font-weight: 600; font-size: .9rem; line-height: 1.3; display: block; }
.popular-list small { color: var(--text-muted); font-size: .72rem; }

.side-list li { padding: .55rem 0; border-bottom: 1px solid var(--border); }
.side-list li:last-child { border-bottom: 0; }
.side-list a { display: block; }
.side-list strong { display: block; font-size: .9rem; line-height: 1.3; }
.side-list small { color: var(--text-muted); font-size: .75rem; }
.widget-more { display: inline-block; margin-top: .75rem; font-size: .85rem; font-weight: 600; color: var(--accent); }

.ad-slot .ad-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .5rem; }
.ad-box {
  background: #fff;
  border: 1px dashed var(--border);
  padding: 1.25rem;
  text-align: center;
  border-radius: var(--radius);
}
.ad-box p { font-size: .85rem; color: var(--text-muted); margin: .4rem 0 .85rem; }

/* ---------- Article page ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
}
.article-header { margin-bottom: 1.5rem; }
.article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
  margin: .5rem 0 1rem;
}
.article-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}
.article-hero {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--navy);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.3);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
}
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 1.75rem 0 .75rem;
  color: var(--navy);
}
.article-content p { margin-bottom: 1.1rem; }
.article-content ul, .article-content ol {
  margin: 0 0 1.1rem 1.4rem;
  list-style: disc;
}
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: .35rem; }
.article-content a { color: var(--accent); text-decoration: underline; }

.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.share-bar span { font-size: .85rem; font-weight: 600; color: var(--text-muted); margin-right: .25rem; }

/* Comments */
.comments-section { margin-top: 2.5rem; }
.comments-section h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--navy);
}
.comment { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.comment-author { font-weight: 700; }
.comment-date { font-size: .78rem; color: var(--text-muted); margin-left: .5rem; }
.comment-body { margin-top: .4rem; color: #333; }
.comment-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.25rem;
}
.form-row { margin-bottom: 1rem; }
.form-row label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: .35rem; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, .15);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Listing pages ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 2rem 0;
  margin: -1.5rem 0 2rem;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  margin-bottom: .35rem;
}
.page-hero p { opacity: .85; max-width: 560px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.filters a, .filters span {
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
}
.filters a:hover, .filters a.active, .filters span.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Resource cards (jobs, scholarships, materials) */
.resource-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  transition: box-shadow .15s, border-color .15s;
}
.resource-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow);
}
.resource-card.featured {
  border-left: 4px solid var(--gold);
}
.resource-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}
.resource-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .2rem .55rem;
  border-radius: 3px;
  background: #e2e8f0;
  color: var(--navy);
}
.badge.green { background: #d1fae5; color: #065f46; }
.badge.blue { background: #dbeafe; color: #1e40af; }
.badge.amber { background: #fef3c7; color: #92400e; }
.badge.purple { background: #ede9fe; color: #5b21b6; }
.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin: .5rem 0;
}
.resource-desc { font-size: .95rem; color: #334155; margin-bottom: .75rem; }
.resource-actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }

/* ---------- Alerts ---------- */
.alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: .92rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* ---------- Pagination ---------- */
.pagination { margin-top: 2rem; }
.pagination ul { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; }
.pagination a, .pagination span {
  display: inline-flex;
  min-width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 .5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
}
.pagination a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .dots { border: 0; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem 0;
}
.newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.newsletter-text h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: .35rem;
}
.newsletter-text p { opacity: .8; font-size: .95rem; }
.newsletter-form {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  max-width: 420px;
  width: 100%;
}
.newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: .7rem 1rem;
  border: 0;
  border-radius: var(--radius);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p { font-size: .9rem; margin: 1rem 0; line-height: 1.55; max-width: 280px; }
.logo-footer .logo-mark { width: 36px; height: 36px; font-size: 1.2rem; }
.logo-footer .logo-text strong { color: #fff; font-size: 1.3rem; }
.footer-col h3 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  display: block;
  padding: .3rem 0;
}
.footer-col a:hover { color: #fff; }
.social-links { display: flex; gap: .5rem; }
.social-links a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}
.social-links a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  font-size: .85rem;
  text-align: center;
}

/* ---------- Static pages ---------- */
.prose {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 1.75rem 0 .75rem;
  color: var(--navy);
}
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; margin: 0 0 1rem 1.4rem; }

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-search { display: none; }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 200;
    background: var(--navy);
    padding: 4rem 1.5rem 2rem;
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-list a { padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.1); border-bottom-color: rgba(255,255,255,.1) !important; margin: 0; }
  body.nav-open { overflow: hidden; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .story-row { grid-template-columns: 90px 1fr; }
  .topbar-tagline { display: none; }
}

/* Mobile search below header on small screens */
@media (max-width: 900px) {
  .mobile-search {
    display: block;
    padding: 0 0 1rem;
  }
  .mobile-search .header-search {
    display: flex;
    max-width: none;
    margin: 0;
  }
}
.mobile-search { display: none; }

/* Breadcrumb */
.breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 .35rem; opacity: .5; }
