:root,
body.facilitione-journal-template,
.facilitione-journal {
  --ink:        #081534;
  --ink-90:     rgba(8,21,52,0.90);
  --ink-60:     rgba(8,21,52,0.60);
  --ink-30:     rgba(8,21,52,0.30);
  --ink-12:     rgba(8,21,52,0.12);
  --ink-06:     rgba(8,21,52,0.06);
  --cream:      #f5fafb;
  --cream-deep: #eff5f6;
  --white:      #ffffff;
  --blue:       #1d5fc4;
  --blue-10:    rgba(29,95,196,0.10);
  --blue-20:    rgba(29,95,196,0.20);
  --gold:       #b87d3a;
  --gold-10:    rgba(184,125,58,0.10);
  --f-body:     "Manrope", system-ui, sans-serif;
  --r-2xl: 32px; --r-xl: 24px; --r-lg: 16px; --r-md: 12px; --r-sm: 8px; --r-pill: 999px;
  --sh-sm: 0 2px 8px rgba(8,21,52,0.06);
  --sh-md: 0 8px 28px rgba(8,21,52,0.10);
  --sh-lg: 0 20px 56px rgba(8,21,52,0.14);
  --ease:  cubic-bezier(0.16,1,0.3,1);
  --wrap:  min(1160px, calc(100vw - 48px));
  --content-width: min(720px, calc(100vw - 48px));
}

body.facilitione-journal-template {
  background: #f7fbfc;
}

.facilitione-journal {
  color: var(--ink);
  font-family: var(--f-body);
}


/* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.facilitione-journal .wrap { width: var(--wrap); margin: 0 auto; }
.facilitione-journal .content-wrap { width: var(--content-width); margin: 0 auto; }

/* â”€â”€ SCROLL REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.facilitione-journal [data-r] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}
.facilitione-journal [data-r].on { opacity: 1; transform: none !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ARCHIVE PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero */
.archive-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(ellipse 55% 60% at 95% 0%, rgba(29,95,196,0.09), transparent 55%),
    radial-gradient(ellipse 40% 50% at 5% 40%, rgba(184,125,58,0.07), transparent 55%),
    linear-gradient(180deg, #f7fbfc 0%, #eef5f6 60%, #f7fbfc 100%);
  position: relative;
  overflow: hidden;
}
.archive-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(8,21,52,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.archive-hero__inner {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
  max-width: 720px;
}
.archive-hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue);
}
.archive-hero__kicker::before {
  content: "";
  display: block; width: 20px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.archive-hero__title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.05em; text-transform: uppercase; color: var(--ink);
}
.archive-hero__title em { font-style: italic; color: var(--blue); }
.archive-hero__sub {
  font-size: 1.05rem; line-height: 1.65; color: var(--ink-60); max-width: 52ch;
}

/* Filter Bar */
.filter-bar {
  padding: 28px 0 0;
  border-bottom: 1px solid var(--ink-12);
  margin-bottom: 56px;
}
.filter-bar__inner {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-bottom: 20px;
}
.filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-60); background: var(--white);
  border: 1px solid var(--ink-12); border-radius: var(--r-pill);
  padding: 8px 18px; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.filter-btn:hover { background: var(--blue-10); color: var(--blue); border-color: var(--blue-20); }
.filter-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 16px rgba(29,95,196,0.28); }
.filter-btn .count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.65rem; font-weight: 700;
  background: rgba(255,255,255,0.25);
}

/* Blog Grid */
.blog-section { padding-bottom: 96px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }

/* Post Card */
.post-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--ink-12); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s ease;
  cursor: pointer; text-decoration: none; color: inherit;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--ink-30); }

.facilitione-journal--archive .post-card__thumb { display: none !important; }

.post-card--featured { grid-column: span 2; flex-direction: row; }
.post-card--featured .post-card__thumb { width: 52%; flex-shrink: 0; aspect-ratio: unset; min-height: 320px; }
.post-card--featured .post-card__body { padding: 40px 36px; justify-content: center; }
.post-card--featured .post-card__title { font-size: clamp(1.3rem, 1.8vw, 1.7rem); }
.post-card--featured .post-card__excerpt { -webkit-line-clamp: 4; }

.post-card__thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--cream-deep); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-card:hover .post-card__thumb img { transform: scale(1.06); }
.post-card__thumb-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-10), var(--gold-10));
}
.post-card__thumb-placeholder svg { opacity: 0.3; width: 48px; height: 48px; }

.post-card__tag {
  position: static;
  display: inline-flex; align-items: center; align-self: flex-start;
  margin-bottom: 8px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); background: var(--blue); border-radius: var(--r-pill); padding: 5px 12px;
}
.post-card__tag--gold { background: var(--gold); }

.post-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.post-card__meta { display: flex; align-items: center; gap: 12px; }
.post-card__date { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-30); text-transform: uppercase; }
.post-card__read-time { font-size: 0.72rem; font-weight: 500; color: var(--ink-30); }
.post-card__read-time::before { content: "Â·"; margin-right: 8px; }
.post-card__title { font-size: 1.08rem; font-weight: 700; line-height: 1.30; letter-spacing: -0.025em; color: var(--ink); flex: 1; transition: color 0.2s ease; }
.post-card:hover .post-card__title { color: var(--blue); }
.post-card__excerpt {
  font-size: 0.875rem; line-height: 1.65; color: var(--ink-60);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--ink-06); }
.post-card__author { display: flex; align-items: center; gap: 10px; }
.post-card__avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-10), var(--gold-10)); overflow: hidden; flex-shrink: 0; border: 2px solid var(--ink-12); }
.post-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-card__author-name { font-size: 0.78rem; font-weight: 600; color: var(--ink-60); }
.post-card__arrow { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--ink-06); color: var(--ink-60); transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.post-card:hover .post-card__arrow { background: var(--blue); color: var(--white); transform: translateX(3px); }

/* Infinite scroll */
#load-sentinel { height: 80px; display: flex; align-items: center; justify-content: center; margin-top: 20px; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--ink-12); border-top-color: var(--blue); border-radius: 50%; animation: spin 0.75s linear infinite; opacity: 0; transition: opacity 0.3s ease; }
.spinner.visible { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }
.end-message { text-align: center; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-30); padding: 24px 0; display: none; }
.end-message.show { display: block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SINGLE POST PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Reading bar */
body.facilitione-journal-template #reading-bar { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--blue), var(--gold)); z-index: 999; transition: width 0.1s linear; }

/* Post Hero */
.post-hero { padding: 88px 0 0; background: radial-gradient(ellipse 50% 60% at 90% 0%, rgba(29,95,196,0.08), transparent 55%), linear-gradient(180deg, #f7fbfc 0%, #eef5f6 60%, #f5fafb 100%); position: relative; overflow: hidden; }
.post-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(8,21,52,0.04) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%); }
.post-hero__inner { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 56px; }
.post-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-30); }
.post-hero__breadcrumb a { transition: color 0.2s ease; }
.post-hero__breadcrumb a:hover { color: var(--blue); }
.post-hero__breadcrumb .sep { color: var(--ink-12); }
.post-hero__cats { display: flex; gap: 8px; flex-wrap: wrap; }
.post-hero__cat { display: inline-flex; align-items: center; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); background: var(--blue-10); border: 1px solid var(--blue-20); border-radius: var(--r-pill); padding: 5px 14px; transition: background 0.2s, color 0.2s; }
.post-hero__cat:hover { background: var(--blue); color: var(--white); }
.post-hero__title { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.045em; text-transform: uppercase; color: var(--ink); max-width: 18ch; }
.post-hero__title em { font-style: italic; color: var(--blue); }
.post-hero__excerpt { font-size: 1.1rem; line-height: 1.65; color: var(--ink-60); max-width: 58ch; }
.post-hero__meta { display: flex; align-items: center; gap: 20px; padding-top: 8px; border-top: 1px solid var(--ink-12); width: 100%; }
.post-hero__author { display: flex; align-items: center; gap: 12px; }
.post-hero__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-10), var(--gold-10)); overflow: hidden; border: 2px solid var(--ink-12); flex-shrink: 0; }
.post-hero__avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-hero__author-info { display: flex; flex-direction: column; gap: 2px; }
.post-hero__author-name { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.post-hero__author-role { font-size: 0.72rem; color: var(--ink-30); }
.post-hero__date-rt { display: flex; align-items: center; gap: 16px; margin-left: auto; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-30); text-transform: uppercase; }
.post-hero__date-rt span + span::before { content: "Â·"; margin-right: 10px; }
.post-hero__cover { width: 100%; aspect-ratio: 16/7; overflow: hidden; border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: 8px; }
.post-hero__cover img { width: 100%; height: 100%; object-fit: cover; }

/* Post Layout */
.post-layout { padding: 72px 0 96px; }
.post-layout__inner { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 64px; align-items: start; }

/* Post Content Typography */
.post-content { font-size: 1.05rem; line-height: 1.78; color: var(--ink-90); }
.post-content > * + * { margin-top: 1.6em; }
.post-content h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 800; letter-spacing: -0.04em; text-transform: uppercase; color: var(--ink); line-height: 1.10; margin-top: 2.4em; margin-bottom: -0.4em; }
.post-content h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-top: 2em; margin-bottom: -0.6em; }
.post-content h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--blue); margin-top: 1.8em; }
.post-content p { color: var(--ink-90); }
.post-content strong { font-weight: 700; color: var(--ink); }
.post-content a { color: var(--blue); border-bottom: 1px solid var(--blue-20); transition: border-color 0.2s ease; }
.post-content a:hover { border-color: var(--blue); }
.post-content ul, .post-content ol { padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.post-content li { padding-left: 24px; position: relative; color: var(--ink-90); }
.post-content ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.post-content ol { counter-reset: ol-counter; }
.post-content ol li { counter-increment: ol-counter; }
.post-content ol li::before { content: counter(ol-counter) "."; position: absolute; left: 0; font-size: 0.78rem; font-weight: 700; color: var(--blue); }
.post-content blockquote { border-left: 3px solid var(--blue); padding: 20px 28px; background: var(--blue-10); border-radius: 0 var(--r-lg) var(--r-lg) 0; font-size: 1.15rem; font-weight: 600; line-height: 1.55; font-style: italic; color: var(--ink); }
.post-content blockquote cite { display: block; margin-top: 12px; font-size: 0.78rem; font-weight: 700; font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.post-content figure { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); }
.post-content figure img { width: 100%; }
.post-content figcaption { padding: 12px 20px; background: var(--ink-06); font-size: 0.78rem; color: var(--ink-30); font-style: italic; }
.post-content .callout { display: flex; gap: 16px; padding: 24px 28px; background: var(--cream-deep); border: 1px solid var(--ink-12); border-radius: var(--r-xl); }
.post-content .callout__icon { flex-shrink: 0; width: 40px; height: 40px; display: grid; place-items: center; background: var(--blue-10); border-radius: var(--r-md); color: var(--blue); }
.post-content .callout__title { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.post-content hr { border: none; height: 1px; background: var(--ink-12); margin: 2.4em 0; }
.post-content code { font-size: 0.875em; background: var(--ink-06); border: 1px solid var(--ink-12); border-radius: var(--r-sm); padding: 2px 7px; }
.post-content pre { background: var(--ink); color: var(--cream); border-radius: var(--r-xl); padding: 28px 32px; overflow-x: auto; }
.post-content pre code { background: none; border: none; padding: 0; color: inherit; }

/* Tags + Share */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--ink-12); }
.post-tag { display: inline-flex; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-60); background: var(--ink-06); border: 1px solid var(--ink-12); border-radius: var(--r-pill); padding: 6px 14px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.post-tag:hover { background: var(--blue-10); color: var(--blue); border-color: var(--blue-20); }
.share-bar { display: flex; align-items: center; gap: 10px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--ink-12); }
.share-bar__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-30); margin-right: 4px; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-60); background: var(--white); border: 1px solid var(--ink-12); border-radius: var(--r-pill); padding: 8px 16px; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; }
.share-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 14px rgba(29,95,196,0.25); }

/* Sidebar */
.post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 28px; }
.sidebar-card { background: var(--white); border: 1px solid var(--ink-12); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--sh-sm); }
.sidebar-card__title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-30); margin-bottom: 16px; }
.toc-list { display: flex; flex-direction: column; gap: 2px; }
.toc-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; font-weight: 500; color: var(--ink-60); padding: 7px 10px; border-radius: var(--r-md); cursor: pointer; transition: background 0.2s, color 0.2s; border: none; background: none; text-align: left; font-family: var(--f-body); width: 100%; line-height: 1.4; }
.toc-item::before { content: ""; flex-shrink: 0; width: 3px; height: 3px; border-radius: 50%; background: currentColor; margin-top: 7px; }
.toc-item:hover { background: var(--blue-10); color: var(--blue); }
.toc-item.active { background: var(--blue-10); color: var(--blue); font-weight: 700; }
.author-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.author-card__avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2px solid var(--ink-12); background: linear-gradient(135deg, var(--blue-10), var(--gold-10)); flex-shrink: 0; }
.author-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-card__name { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.author-card__role { font-size: 0.75rem; color: var(--ink-30); margin-top: 2px; }
.author-card__bio { font-size: 0.82rem; line-height: 1.65; color: var(--ink-60); }

/* Related */
.related-section { padding: 64px 0 96px; background: var(--cream-deep); border-top: 1px solid var(--ink-12); }
.related-section__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; }
.related-section__title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; letter-spacing: -0.04em; text-transform: uppercase; color: var(--ink); }
.related-section__link { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: gap 0.2s ease; }
.related-section__link:hover { gap: 10px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .post-card--featured { grid-column: span 2; flex-direction: column; }
  .post-card--featured .post-card__thumb { width: 100%; aspect-ratio: 16/9; min-height: unset; }
  .post-layout__inner { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  :root { --wrap: calc(100vw - 32px); --content-width: calc(100vw - 32px); }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .post-card--featured { grid-column: span 1; }
  .archive-hero { padding: 64px 0 48px; }
  .post-hero { padding-top: 64px; }
  .post-hero__cover { aspect-ratio: 4/3; }
  .post-hero__meta { flex-wrap: wrap; }
  .post-hero__date-rt { margin-left: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .share-bar { flex-wrap: wrap; }
  .filter-bar__inner { gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  [data-r] { opacity: 1; transform: none; }
  .spinner { animation: none; }
  #reading-bar { transition: none; }
}


