/* ============================================
   SWAPNOPORI — BLOG CSS (Modern Magazine Style)
   ============================================ */

/* ── Blog Hero ── */
.blog-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,30,140,.15) 0%, transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.blog-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(233,30,140,.15); border: 1px solid rgba(233,30,140,.3);
  color: #ff6bb5; padding: 6px 18px; border-radius: 20px;
  font-size: .8rem; font-weight: 600; margin-bottom: 20px;
  letter-spacing: .5px;
}
.blog-hero h1 {
  font-size: 3rem; font-weight: 800; color: #fff;
  margin-bottom: 14px; letter-spacing: -1px;
}
.blog-hero h1 span {
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.blog-hero p { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 480px; margin: 0 auto 32px; }
.blog-hero-search {
  display: flex; max-width: 480px; margin: 0 auto;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px; overflow: hidden; backdrop-filter: blur(10px);
}
.blog-hero-search input {
  flex: 1; background: none; border: none; padding: 14px 20px;
  color: #fff; font-size: .92rem; font-family: 'Poppins', sans-serif; outline: none;
}
.blog-hero-search input::placeholder { color: rgba(255,255,255,.4); }
.blog-hero-search button {
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  border: none; padding: 12px 24px; color: #fff;
  font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer;
  border-radius: 0 50px 50px 0; font-size: .88rem;
}

/* ── Category Filter Pills ── */
.blog-filter-wrap {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0; position: sticky; top: 56px; z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.blog-filter-inner {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 0; overflow-x: auto;
  scrollbar-width: none;
}
.blog-filter-inner::-webkit-scrollbar { display: none; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 18px; border-radius: 25px; font-size: .82rem;
  font-weight: 600; white-space: nowrap; cursor: pointer;
  border: 2px solid var(--border); color: var(--text-light);
  background: #fff; transition: all .25s; text-decoration: none;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active {
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 15px rgba(233,30,140,.3);
}

/* ── Layout ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 56px 0;
  align-items: start;
}

/* ── Featured Post ── */
.blog-featured {
  position: relative; border-radius: 20px; overflow: hidden;
  margin-bottom: 48px; cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  text-decoration: none; display: block; color: inherit;
}
.blog-featured:hover .blog-featured-img { transform: scale(1.03); }
.blog-featured-img-wrap { height: 420px; overflow: hidden; }
.blog-featured-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.blog-featured-img-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.blog-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
  padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.blog-featured-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  color: #fff; padding: 5px 14px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; margin-bottom: 14px;
  width: fit-content; letter-spacing: .5px;
}
.blog-featured-overlay h2 {
  font-size: 1.9rem; font-weight: 800; color: #fff;
  line-height: 1.25; margin-bottom: 12px; max-width: 680px;
}
.blog-featured-overlay p {
  color: rgba(255,255,255,.75); font-size: .92rem;
  line-height: 1.6; max-width: 600px; margin-bottom: 18px;
}
.blog-featured-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: .8rem; color: rgba(255,255,255,.65); flex-wrap: wrap;
}
.blog-featured-meta .author-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.read-more-badge {
  margin-left: auto;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 7px 18px; border-radius: 20px;
  font-size: .8rem; font-weight: 600;
}

/* ── Blog Grid Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 1px solid var(--border); transition: all .3s;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.13); }
.blog-card-img { position: relative; overflow: hidden; height: 210px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f8f7ff, #ede9fe);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.blog-cat-badge {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  color: #fff; padding: 4px 12px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; z-index: 1;
  text-decoration: none; letter-spacing: .3px;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 {
  font-size: .98rem; font-weight: 700; margin-bottom: 10px;
  color: var(--dark); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-body p {
  color: var(--text-light); font-size: .86rem; line-height: 1.65;
  flex: 1; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.blog-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: .76rem; color: var(--text-light); align-items: center; }
.blog-meta-dot { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }
.blog-read-link {
  font-size: .78rem; font-weight: 700; color: var(--primary);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.blog-read-link::after { content: '→'; transition: transform .2s; }
.blog-card:hover .blog-read-link::after { transform: translateX(4px); }

/* ── Section heading ── */
.blog-section-heading {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.blog-section-heading h2 {
  font-size: 1.3rem; font-weight: 800; color: var(--dark);
  display: flex; align-items: center; gap: 10px;
}
.blog-section-heading h2::before {
  content: ''; width: 4px; height: 22px;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  border-radius: 2px; display: block;
}
.blog-section-heading a { font-size: .82rem; color: var(--primary); font-weight: 600; }

/* ── Pagination ── */
.blog-pagination {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}
.blog-pagination a {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 600; border: 2px solid var(--border);
  color: var(--text); transition: all .2s; text-decoration: none;
}
.blog-pagination a.active {
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 15px rgba(233,30,140,.3);
}
.blog-pagination a:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

/* ── Sidebar ── */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid var(--border);
}
.sidebar-widget-title {
  font-size: .88rem; font-weight: 800; color: var(--dark);
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-widget-title::before {
  content: ''; width: 3px; height: 16px;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  border-radius: 2px;
}
/* Category list */
.cat-list { list-style: none; }
.cat-list li { margin-bottom: 4px; }
.cat-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 10px; color: var(--text);
  font-size: .88rem; transition: all .2s; text-decoration: none;
}
.cat-list a:hover, .cat-list a.active {
  background: linear-gradient(135deg, rgba(233,30,140,.08), rgba(124,58,237,.08));
  color: var(--primary);
}
.cat-list a span {
  background: var(--bg); color: var(--text-light);
  padding: 2px 9px; border-radius: 10px; font-size: .72rem; font-weight: 700;
}
/* Recent posts */
.recent-post {
  display: flex; gap: 14px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
}
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-thumb {
  width: 68px; height: 56px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
}
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-placeholder {
  width: 68px; height: 56px; border-radius: 10px;
  background: linear-gradient(135deg, #f8f7ff, #ede9fe);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.recent-post-info p { font-size: .82rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; color: var(--dark); }
.recent-post-info small { font-size: .74rem; color: var(--text-light); }
.recent-post:hover .recent-post-info p { color: var(--primary); }
/* Tags */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  padding: 5px 14px; border-radius: 20px; font-size: .78rem; font-weight: 600;
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  text-decoration: none; transition: all .2s;
}
.tag-pill:hover, .tag-pill.active {
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  border-color: transparent; color: #fff;
}
/* Newsletter widget */
.newsletter-widget { background: linear-gradient(135deg, #e91e8c, #7c3aed); border-radius: 16px; padding: 28px; color: #fff; }
.newsletter-widget h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.newsletter-widget p { font-size: .82rem; opacity: .85; margin-bottom: 16px; }
.newsletter-widget input {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: none;
  font-size: .88rem; font-family: 'Poppins', sans-serif; margin-bottom: 10px;
  background: rgba(255,255,255,.15); color: #fff; outline: none;
}
.newsletter-widget input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-widget button {
  width: 100%; padding: 11px; border-radius: 10px; border: none;
  background: rgba(255,255,255,.2); color: #fff; font-weight: 700;
  font-family: 'Poppins', sans-serif; cursor: pointer; font-size: .88rem;
  backdrop-filter: blur(10px); transition: background .2s;
}
.newsletter-widget button:hover { background: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════
   SINGLE POST PAGE
   ══════════════════════════════════════════ */

/* ── Post Hero ── */
.post-hero {
  position: relative; min-height: 520px;
  display: flex; align-items: flex-end;
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
  overflow: hidden;
}
.post-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.post-hero:hover .post-hero-bg { transform: scale(1.03); }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.2) 100%);
}
.post-hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 60px 0 48px;
}
.post-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.55);
  margin-bottom: 20px; flex-wrap: wrap;
}
.post-breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; text-decoration: none; }
.post-breadcrumb a:hover { color: #ff6bb5; }
.post-breadcrumb span { opacity: .5; }
.post-cat-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  color: #fff; padding: 5px 16px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; margin-bottom: 16px;
  text-decoration: none; letter-spacing: .5px;
}
.post-hero-content h1 {
  font-size: 2.6rem; font-weight: 800; color: #fff;
  line-height: 1.2; max-width: 820px; margin-bottom: 20px;
  letter-spacing: -.5px;
}
.post-hero-meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.65);
}
.post-hero-meta .author-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px; border-radius: 20px;
}
.author-chip-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  display: flex; align-items: center; justify-content: center; font-size: .75rem;
}
.post-hero-meta .meta-item { display: flex; align-items: center; gap: 6px; }
.post-hero-meta .meta-divider { width: 4px; height: 4px; background: rgba(255,255,255,.3); border-radius: 50%; }

/* ── Post Layout ── */
.post-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 56px; padding: 56px 0 80px; align-items: start;
}
.post-main { min-width: 0; }
.post-sidebar { position: sticky; top: 90px; }

/* ── Progress bar ── */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, #e91e8c, #7c3aed);
  z-index: 9999; transition: width .1s linear;
}

/* ── Post excerpt ── */
.post-excerpt {
  font-size: 1.12rem; color: var(--text-light); line-height: 1.85;
  border-left: 4px solid transparent;
  border-image: linear-gradient(135deg, #e91e8c, #7c3aed) 1;
  padding: 16px 24px; margin-bottom: 36px;
  background: linear-gradient(135deg, rgba(233,30,140,.04), rgba(124,58,237,.04));
  border-radius: 0 12px 12px 0; font-style: italic;
}

/* ── Post content typography ── */
.post-content {
  font-family: 'Merriweather', Georgia, serif;
  font-size: .97rem; line-height: 1.95; color: #2d2d3a;
}
.post-content h2 {
  font-family: 'Poppins', sans-serif; font-size: 1.55rem; font-weight: 800;
  margin: 44px 0 18px; color: #0f0f1a;
  padding-bottom: 10px; border-bottom: 2px solid #f0f0f0;
}
.post-content h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700;
  margin: 32px 0 14px; color: #1a1a2e;
}
.post-content p { margin-bottom: 22px; }
.post-content ul, .post-content ol { margin: 0 0 22px 28px; }
.post-content li { margin-bottom: 10px; }
.post-content blockquote {
  border-left: none; position: relative;
  padding: 24px 28px 24px 60px; margin: 32px 0;
  background: linear-gradient(135deg, rgba(233,30,140,.05), rgba(124,58,237,.05));
  border-radius: 16px; font-style: italic; color: #555;
}
.post-content blockquote::before {
  content: '"'; position: absolute; left: 20px; top: 10px;
  font-size: 4rem; color: #e91e8c; line-height: 1; font-family: Georgia, serif;
  opacity: .4;
}
.post-content img { max-width: 100%; border-radius: 14px; margin: 28px 0; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.post-content a { color: #e91e8c; text-decoration: underline; text-underline-offset: 3px; }
.post-content code { background: #f4f4f8; padding: 2px 8px; border-radius: 6px; font-size: .86em; color: #e91e8c; }
.post-content pre { background: #1e1e2e; color: #cdd6f4; padding: 24px; border-radius: 14px; overflow-x: auto; margin: 28px 0; font-size: .88rem; line-height: 1.7; }
.post-content table { width: 100%; border-collapse: collapse; margin: 28px 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.post-content th { background: linear-gradient(135deg, #e91e8c, #7c3aed); color: #fff; padding: 12px 16px; font-family: 'Poppins', sans-serif; font-size: .88rem; }
.post-content td { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; font-size: .9rem; }
.post-content tr:last-child td { border-bottom: none; }
.post-content tr:nth-child(even) td { background: #fafafa; }

/* ── Tags & Share ── */
.post-tags {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: 40px 0 28px; padding-top: 28px; border-top: 1px solid #f0f0f0;
}
.post-tags strong { font-size: .82rem; color: var(--text-light); font-family: 'Poppins', sans-serif; }
.post-tags a {
  background: var(--bg); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 20px; font-size: .78rem;
  color: var(--text); transition: all .2s; text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.post-tags a:hover { background: linear-gradient(135deg, #e91e8c, #7c3aed); color: #fff; border-color: transparent; }

.post-share {
  background: linear-gradient(135deg, rgba(233,30,140,.05), rgba(124,58,237,.05));
  border: 1px solid rgba(233,30,140,.15);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.post-share strong { font-size: .85rem; color: var(--text-light); font-family: 'Poppins', sans-serif; margin-right: 4px; }
.share-btn {
  padding: 8px 20px; border-radius: 20px; font-size: .8rem;
  font-weight: 700; cursor: pointer; border: none;
  font-family: 'Poppins', sans-serif; transition: all .25s;
  display: inline-flex; align-items: center; gap: 6px;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.share-fb { background: #1877f2; color: #fff; }
.share-tw { background: #000; color: #fff; }
.share-wa { background: #25d366; color: #fff; }
.share-copy { background: #fff; color: var(--text); border: 1px solid var(--border) !important; border: none; }

/* ── Author box ── */
.post-author-box {
  background: linear-gradient(135deg, rgba(233,30,140,.05), rgba(124,58,237,.05));
  border: 1px solid rgba(233,30,140,.15);
  border-radius: 20px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 48px;
}
.post-author-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 8px 24px rgba(233,30,140,.3);
}
.post-author-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.post-author-info small { font-size: .78rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 8px; }
.post-author-info p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ── Related posts ── */
.related-section { background: var(--bg); padding: 60px 0; }
.related-section .section-title { font-size: 1.6rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 768px) {
  .blog-hero h1 { font-size: 2rem; }
  .post-hero-content h1 { font-size: 1.8rem; }
  .post-hero { min-height: 400px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured-overlay h2 { font-size: 1.4rem; }
  .blog-featured-img-wrap { height: 280px; }
}
@media (max-width: 480px) {
  .blog-hero h1 { font-size: 1.6rem; }
  .post-hero-content h1 { font-size: 1.5rem; }
}

/* ── TOC links ── */
.toc-link {
  display: block; color: var(--text); text-decoration: none;
  padding: 4px 0; font-size: .84rem; transition: color .2s; line-height: 1.5;
  border-left: 2px solid transparent; padding-left: 8px;
}
.toc-link:hover { color: var(--primary); border-left-color: var(--primary); }
.toc-h2 { font-weight: 600; }
.toc-h3 { padding-left: 20px; font-size: .8rem; color: var(--text-light); }

/* ── FA icon fixes ── */
.blog-hero-badge .fa,
.filter-pill .fa,
.sidebar-widget-title .fa,
.blog-featured-label .fa,
.post-cat-badge .fa,
.post-hero-meta .fa,
.post-tags .fa,
.post-share .fa,
.share-btn .fa,
.newsletter-widget .fa { margin-right: 5px; }

.blog-card-placeholder .fa { font-size: 2.5rem; color: #c4b5fd; }
.blog-featured-img-placeholder .fa { font-size: 5rem; color: rgba(255,255,255,.3); }
.recent-post-placeholder .fa { font-size: 1.4rem; color: #c4b5fd; }
.post-author-avatar .fa { font-size: 2rem; color: #fff; }
.author-chip-avatar .fa { font-size: .85rem; color: #fff; }
