/*
Theme Name: PartnerStory.AI
Theme URI: https://partnerstory.ai
Author: Your Team
Description: The official PartnerStory.AI publishing platform theme.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: partnerstory-ai
Tags: blog, custom-logo, featured-images, full-width-template, custom-menu
*/

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

:root {
  --color-bg:        #FFFFFF;
  --color-surface:   #F7F4ED;
  --color-border:    #E6E6E6;
  --color-text:      #1A1A1A;
  --color-muted:     #6B6B6B;
  --color-accent:    #1A8917;
  --color-tag-bg:    #F2F2F2;
  --color-highlight: #FFF0CC;
  --color-dark-bg:   #191919;
  --color-dark-text: #FFFFFF;
  --font-serif:      'Georgia', 'Times New Roman', serif;
  --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width:       680px;
  --max-width-wide:  1192px;
  --header-h:        65px;
  --radius:          4px;
  --shadow-sm:       0 1px 4px rgba(0,0,0,.08);
  --shadow-md:       0 4px 16px rgba(0,0,0,.12);
  --transition:      .2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* =============================================
   LAYOUT
   ============================================= */
.container { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-serif);
  letter-spacing: -1px;
  color: var(--color-text);
}

.nav-center {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 20px;
  background: var(--color-surface);
  border: 1px solid transparent;
  transition: var(--transition);
}
.nav-search:hover { border-color: var(--color-border); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary { background: var(--color-text); color: var(--color-bg); }
.btn-primary:hover { background: #333; }
.btn-ghost { color: var(--color-muted); }
.btn-ghost:hover { color: var(--color-text); }
.btn-outline { border: 1px solid var(--color-text); color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: var(--color-bg); }
.btn-green { background: var(--color-accent); color: #fff; }
.btn-green:hover { background: #166d12; }

.btn-write {
  display: flex; align-items: center; gap-6px;
  font-size: 14px; color: var(--color-muted);
}
.btn-write:hover { color: var(--color-text); }

/* =============================================
   HERO / HOME TOP
   ============================================= */
.home-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 80px 0;
  text-align: center;
}
.home-hero h1 { font-size: clamp(40px, 8vw, 72px); font-family: var(--font-serif); font-weight: 700; letter-spacing: -2px; margin-bottom: 24px; }
.home-hero p { font-size: 18px; color: var(--color-muted); max-width: 480px; margin: 0 auto 32px; }
.home-hero .hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =============================================
   FEED LAYOUT (home, archive)
   ============================================= */
.feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 40px 24px;
}

.feed-main {
  min-width: 0;
}

@media (max-width: 900px) {
  .feed-layout { grid-template-columns: 1fr; }
  .feed-sidebar { display: none; }
}

/* =============================================
   TOPIC TABS
   ============================================= */
.topic-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 32px;
  align-items: stretch;
}
.topic-tabs::-webkit-scrollbar { display: none; }

.topic-tabs--primary {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}

.topic-tabs__feeds {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.topic-tabs--secondary {
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 10px;
  border-bottom: none;
  padding-bottom: 8px;
  margin-bottom: 24px;
  margin-top: -16px;
}

.topic-tab {
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.topic-tab:hover, .topic-tab.active {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.topic-tab--pill {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: 99px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-tag-bg);
  color: var(--color-text);
}
.topic-tab--pill:hover {
  border-color: var(--color-text);
  border-bottom-color: var(--color-text);
}
.topic-tab--pill.active {
  border-bottom-color: var(--color-text);
}

.topic-tabs__details {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  align-self: stretch;
  list-style: none;
}

.topic-tabs__details summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  user-select: none;
}

.topic-tabs__details summary::-webkit-details-marker {
  display: none;
}

.topic-tabs__details summary::after {
  content: "▾";
  display: inline-block;
  margin-left: 6px;
  font-size: 10px;
  opacity: 0.65;
  vertical-align: middle;
}

.topic-tabs__details[open] summary {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.topic-tabs__details summary:hover {
  color: var(--color-text);
}

.topic-tabs__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 220px;
  max-width: min(320px, 90vw);
  max-height: 320px;
  overflow-y: auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  z-index: 40;
  padding: 8px 0;
}

.topic-tabs__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topic-tabs__dropdown a:hover {
  background: var(--color-surface);
}

/* =============================================
   ARTICLE CARD
   ============================================= */
.article-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.article-card:last-child { border-bottom: none; }

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-border);
}

.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}
.author-name:hover { text-decoration: underline; }

.post-date { font-size: 13px; color: var(--color-muted); }

.article-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__title a:hover { text-decoration: underline; }

.article-card__excerpt {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.article-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  font-size: 12px;
  background: var(--color-tag-bg);
  color: var(--color-muted);
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 500;
}
.tag:hover { background: var(--color-border); color: var(--color-text); }

.article-card__stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-muted);
}

.stat-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-muted);
  transition: var(--transition);
}
.stat-btn:hover { color: var(--color-text); }
.stat-btn svg { width: 18px; height: 18px; }

.article-card__thumbnail {
  width: 140px;
  height: 96px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.article-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .article-card { grid-template-columns: 1fr; }
  .article-card__thumbnail { width: 100%; height: 180px; order: -1; }
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar-widget { margin-bottom: 40px; }
.sidebar-widget__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Recommended Topics */
.topic-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-pill {
  font-size: 14px;
  background: var(--color-tag-bg);
  color: var(--color-text);
  padding: 6px 16px;
  border-radius: 99px;
  font-weight: 500;
  transition: var(--transition);
}
.topic-pill:hover { background: var(--color-border); }

/* Who to follow */
.follow-list { display: flex; flex-direction: column; gap: 16px; }
.follow-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.follow-item__info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.follow-item__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--color-border); }
.follow-item__name { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.follow-item__bio { font-size: 12px; color: var(--color-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-follow { font-size: 13px; padding: 5px 14px; border-radius: 99px; border: 1px solid var(--color-text); font-weight: 500; transition: var(--transition); }
.btn-follow:hover { background: var(--color-text); color: var(--color-bg); }

/* =============================================
   SINGLE POST
   ============================================= */
.single-post { padding-top: 40px; padding-bottom: 80px; }

.single-post__header { margin-bottom: 32px; }

.single-post__title {
  font-size: clamp(28px, 5vw, 42px);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.single-post__subtitle {
  font-size: 20px;
  color: var(--color-muted);
  font-family: var(--font-serif);
  line-height: 1.5;
  margin-bottom: 24px;
}

.single-post__byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.byline-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--color-border); }
.byline-info { flex: 1; min-width: 0; }
.byline-author { font-size: 15px; font-weight: 600; }
.byline-author a:hover { text-decoration: underline; }
.byline-meta { font-size: 13px; color: var(--color-muted); }

.byline-actions { display: flex; align-items: center; gap: 16px; }

/* Post Featured Image */
.single-post__featured-image {
  margin: 32px 0;
  border-radius: 8px;
  overflow: hidden;
}
.single-post__featured-image img { width: 100%; max-height: 480px; object-fit: cover; }

/* Post Content Typography */
.post-content {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.8;
  color: #292929;
}

.post-content p { margin-bottom: 24px; }
.post-content h2 { font-size: 28px; font-family: var(--font-sans); margin: 40px 0 16px; }
.post-content h3 { font-size: 22px; font-family: var(--font-sans); margin: 32px 0 12px; }
.post-content ul, .post-content ol { padding-left: 28px; margin-bottom: 24px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 8px; }
.post-content a { text-decoration: underline; color: inherit; }
.post-content blockquote {
  border-left: 3px solid var(--color-text);
  padding: 4px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--color-muted);
}
.post-content img { border-radius: 4px; margin: 32px auto; }
.post-content figcaption { font-family: var(--font-sans); font-size: 13px; color: var(--color-muted); text-align: center; margin-top: 8px; }
.post-content pre {
  background: #1E1E1E;
  color: #D4D4D4;
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 14px;
  overflow-x: auto;
  margin-bottom: 24px;
  font-family: 'Fira Code', monospace;
}
.post-content code {
  background: var(--color-tag-bg);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 85%;
  font-family: 'Fira Code', monospace;
}
.post-content pre code { background: none; padding: 0; }

/* Clap / Reactions Bar */
.post-reactions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 40px 0;
}
.clap-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--color-muted);
  transition: var(--transition);
  padding: 8px;
  border-radius: 50%;
}
.clap-btn:hover { color: var(--color-text); background: var(--color-surface); }
.clap-btn svg { width: 28px; height: 28px; }
.clap-btn.clapped { color: var(--color-text); }
.clap-count { font-size: 14px; }

.post-share { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.share-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); color: var(--color-muted); transition: var(--transition); }
.share-btn:hover { border-color: var(--color-text); color: var(--color-text); }

/* Author Card */
.author-card {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 32px;
  margin: 48px 0;
  display: flex;
  gap: 24px;
}
.author-card__avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; background: var(--color-border); }
.author-card__name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.author-card__bio { font-size: 15px; color: var(--color-muted); line-height: 1.5; margin-bottom: 12px; }

/* Comments */
.comments-section { margin-top: 64px; }
.comments-title { font-size: 22px; font-weight: 700; margin-bottom: 24px; }

.comment {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.comment__avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: var(--color-border); }
.comment__author { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.comment__date { font-size: 12px; color: var(--color-muted); }
.comment__body { font-size: 15px; line-height: 1.6; color: var(--color-text); margin-top: 8px; }

.comment-form { margin-top: 32px; }
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px;
  font: 15px/1.6 var(--font-sans);
  resize: vertical;
  min-height: 100px;
  transition: var(--transition);
}
.comment-form textarea:focus { outline: none; border-color: var(--color-text); }
.comment-form .form-actions { display: flex; justify-content: flex-end; margin-top: 12px; }

/* Reading Progress Bar */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-text);
  z-index: 200;
  transition: width .1s;
}

/* =============================================
   USER PROFILE PAGE
   ============================================= */
.profile-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}
.profile-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; background: var(--color-border); margin-bottom: 16px; }
.profile-name { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.profile-bio { font-size: 16px; color: var(--color-muted); max-width: 480px; margin-bottom: 16px; }
.profile-stats { display: flex; gap: 24px; font-size: 14px; color: var(--color-muted); margin-bottom: 20px; }
.profile-stats span strong { color: var(--color-text); }

/* =============================================
   WRITE / EDITOR
   ============================================= */
.editor-header {
  height: var(--header-h);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--color-bg);
  z-index: 100;
}
.editor-logo { font-size: 22px; font-weight: 800; font-family: var(--font-serif); }
.editor-actions { display: flex; align-items: center; gap: 12px; }
.editor-status { font-size: 13px; color: var(--color-muted); }

/* =============================================
   MEMBERSHIP / PAYWALL
   ============================================= */
.paywall-blur-wrapper { position: relative; }
.paywall-blur-wrapper .blurred { filter: blur(4px); user-select: none; pointer-events: none; }
.paywall-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to bottom, transparent, var(--color-bg) 60%);
  padding: 80px 24px 40px;
  text-align: center;
}
.paywall-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.paywall-box h3 { font-size: 24px; margin-bottom: 8px; }
.paywall-box p { font-size: 15px; color: var(--color-muted); margin-bottom: 24px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  font-size: 13px;
  color: var(--color-muted);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--color-text); }

/* =============================================
   SEARCH PAGE
   ============================================= */
.search-page { padding: 40px 0; }
.search-page h1 { font-size: 28px; margin-bottom: 32px; }
.search-result { padding: 24px 0; border-bottom: 1px solid var(--color-border); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .nav-center { display: none; }
  .home-hero { padding: 48px 0; }
  .author-card { flex-direction: column; }
  .single-post__byline { flex-wrap: wrap; }
  .byline-actions { width: 100%; justify-content: flex-start; }
}

/* =============================================
   DARK MODE
   ============================================= */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #191919;
    --color-surface: #242424;
    --color-border: #2E2E2E;
    --color-text: #EBEBEB;
    --color-muted: #9A9A9A;
    --color-tag-bg: #2E2E2E;
  }
  .post-content { color: #EBEBEB; }
}

/* =============================================
   UTILITY
   ============================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-muted { color: var(--color-muted); }
.read-time { font-size: 13px; color: var(--color-muted); }
.member-star { color: #FFC017; font-size: 13px; }

/* =============================================
   PARTNERSTORY.AI BRANDING
   ============================================= */
.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-text);
}
.logo-dot {
  color: var(--color-accent);
}

/* =============================================
   DARK / LIGHT MODE TOGGLE
   ============================================= */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

/* Sun shows in dark mode, Moon shows in light mode */
.icon-sun { display: none; }
.icon-moon { display: block; }

body.dark-mode .icon-sun  { display: block; }
body.dark-mode .icon-moon { display: none; }

/* ── Manual dark mode (class-based, overrides media query) ── */
body.dark-mode {
  --color-bg:       #191919;
  --color-surface:  #242424;
  --color-border:   #2E2E2E;
  --color-text:     #EBEBEB;
  --color-muted:    #9A9A9A;
  --color-tag-bg:   #2E2E2E;
}
body.dark-mode .post-content { color: #EBEBEB; }
body.dark-mode .site-header  { background: #191919; }

/* Light mode forces back even if prefers-color-scheme: dark */
body.light-mode {
  --color-bg:       #FFFFFF;
  --color-surface:  #F7F4ED;
  --color-border:   #E6E6E6;
  --color-text:     #1A1A1A;
  --color-muted:    #6B6B6B;
  --color-tag-bg:   #F2F2F2;
}
body.light-mode .post-content { color: #292929; }

/* =============================================
   USER MENU ITEM
   ============================================= */
.user-menu-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-text);
  transition: background var(--transition);
  white-space: nowrap;
}
.user-menu-item:hover {
  background: var(--color-surface);
}

/* =============================================
   REGISTRATION PAGE TWEAKS
   ============================================= */
.login #register-link-wrap,
.login #nav { text-align: center; }

/* =============================================
   SMOOTH THEME TRANSITION
   ============================================= */
body, .site-header, .article-card, .sidebar-widget,
.paywall-box, .author-card, .single-post__byline {
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
