/* blog.css — Post detail + blog listing styles for www.dannny0117.com */

/* ============================================================
   POST HERO
   ============================================================ */
.post-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.post-hero-video-wrap {
  position: absolute;
  inset: -5%;
  z-index: 0;
  pointer-events: none;
}
.post-hero-video-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
}
.post-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0f1a 100%);
  z-index: 0;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.65) 40%,
    rgba(0,0,0,.35) 70%,
    rgba(0,0,0,.15) 100%
  );
}
.post-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 3rem;
  padding-top: 7rem;
}
.post-hero-content {
  max-width: 820px;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.post-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}
.post-breadcrumb-link:hover { color: var(--accent, #FF6B00); }
.post-cat-badge {
  display: inline-block;
  background: var(--accent, #FF6B00);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
}
.post-hero-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -.03em;
}
.post-hero-excerpt {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 660px;
  margin-bottom: 1.25rem;
}
.post-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.post-meta-item i { color: var(--accent, #FF6B00); font-size: .8rem; }
.post-hero-share {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-left: auto;
}
.post-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  transition: all .2s;
  cursor: pointer;
}
.post-share-btn:hover { background: var(--accent, #FF6B00); color: #fff; border-color: transparent; }

/* Hero controls */
.post-hero-controls {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.post-hero-ctrl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  transition: all .2s;
  cursor: pointer;
}
.post-hero-ctrl-btn:hover { background: var(--accent, #FF6B00); color: #fff; }

/* ============================================================
   POST BODY SECTION — 8/4 grid
   ============================================================ */
.post-body-section {
  padding: 4rem 0 5rem;
}
.post-layout-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .post-layout-row { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; }
}

/* ── Article body ──────────────────────────────────────────── */
.post-article {
  padding: 2.5rem;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--text, #e8e8e8);
}

/* WYSIWYG output styles */
.wysiwyg-output h1,
.wysiwyg-output h2 { font-size: clamp(1.3rem,2.5vw,1.9rem); margin: 2rem 0 1rem; color: #fff; }
.wysiwyg-output h3 { font-size: 1.2rem; margin: 1.5rem 0 .75rem; color: rgba(255,255,255,.9); }
.wysiwyg-output p  { margin-bottom: 1.2rem; max-width: none; }
.wysiwyg-output ul,
.wysiwyg-output ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.wysiwyg-output li { margin-bottom: .5rem; }
.wysiwyg-output a  { color: var(--accent, #FF6B00); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.wysiwyg-output a:hover { opacity: .8; }
.wysiwyg-output strong { color: #fff; font-weight: 700; }
.wysiwyg-output code  { background: rgba(255,107,0,.12); border: 1px solid rgba(255,107,0,.25); color: #FF8C00; padding: .1em .45em; border-radius: 4px; font-size: .88em; font-family: 'Consolas','Courier New',monospace; }
.wysiwyg-output pre  { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 1.25rem; overflow-x: auto; margin-bottom: 1.5rem; }
.wysiwyg-output pre code { background: none; border: none; padding: 0; font-size: .9em; }
.wysiwyg-output blockquote { border-left: 3px solid var(--accent, #FF6B00); margin: 1.5rem 0; padding: 1rem 1.5rem; background: rgba(255,107,0,.06); border-radius: 0 10px 10px 0; color: rgba(255,255,255,.8); font-style: italic; }
.wysiwyg-output hr { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 2rem 0; }
.wysiwyg-output table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .9rem; }
.wysiwyg-output th { background: rgba(255,107,0,.15); color: #fff; font-weight: 700; padding: .75rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,107,0,.3); }
.wysiwyg-output td { padding: .65rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.wysiwyg-output tr:last-child td { border-bottom: none; }
.wysiwyg-output img { border-radius: 10px; margin: 1rem auto; max-width: 100%; }

/* ── Video embed in content — constrained to box ─────────────── */
.wysiwyg-output .video-container,
.wysiwyg-output .post-video-wrap { margin: 1.5rem 0; }
.wysiwyg-output .video-container .video-container,
.wysiwyg-output .post-video-wrap .video-container { margin: 0; }
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.video-container iframe,
.video-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-top: .6rem;
  font-style: italic;
}

/* ── Inline post-body elements ─────────────────────────────── */
.wysiwyg-output .post-intro-card {
  background: rgba(255,107,0,.06);
  border: 1px solid rgba(255,107,0,.18);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.wysiwyg-output .post-alert {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin: 1.25rem 0;
  font-size: .92rem;
  line-height: 1.6;
}
.wysiwyg-output .post-alert i { flex-shrink: 0; margin-top: .1rem; font-size: 1rem; }
.wysiwyg-output .post-alert-info { background: rgba(0,194,255,.08); border: 1px solid rgba(0,194,255,.2); color: rgba(255,255,255,.85); }
.wysiwyg-output .post-alert-info i { color: #00C2FF; }
.wysiwyg-output .post-alert-warning { background: rgba(255,200,0,.08); border: 1px solid rgba(255,200,0,.2); color: rgba(255,255,255,.85); }
.wysiwyg-output .post-alert-warning i { color: #FFC800; }
.wysiwyg-output .post-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.wysiwyg-output .post-link-grid-3 { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.wysiwyg-output .post-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: all .2s;
  font-size: .88rem;
}
.wysiwyg-output .post-link-card:hover { background: rgba(255,107,0,.12); border-color: rgba(255,107,0,.3); color: #fff; transform: translateY(-2px); }
.wysiwyg-output .post-link-card i { font-size: 1.6rem; color: var(--accent, #FF6B00); }
.wysiwyg-output .post-link-card small { font-size: .75rem; color: rgba(255,255,255,.45); }
.wysiwyg-output .post-cta-box {
  background: linear-gradient(135deg, rgba(255,107,0,.12), rgba(0,194,255,.06));
  border: 1px solid rgba(255,107,0,.2);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.wysiwyg-output .post-cta-box p { max-width: none; margin-bottom: 1.25rem; color: rgba(255,255,255,.8); }
.wysiwyg-output .dns-table { overflow-x: auto; margin: 1.25rem 0; }
.wysiwyg-output .post-creator-code { background: rgba(255,107,0,.1); border: 2px solid rgba(255,107,0,.35); border-radius: 12px; padding: 1.5rem; text-align: center; margin: 1.5rem 0; }
.wysiwyg-output .creator-code-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.wysiwyg-output .creator-code-value { font-size: 2rem; font-weight: 900; color: var(--accent, #FF6B00); letter-spacing: .05em; }
.wysiwyg-output .creator-code-note { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: .75rem; max-width: none; }
.wysiwyg-output .btn { display:inline-flex;align-items:center;gap:.5rem;padding:.65rem 1.4rem;border-radius:100px;font-weight:600;font-size:.875rem;text-decoration:none;cursor:pointer;border:none;transition:all .2s;margin:.25rem; }
.wysiwyg-output .btn-primary { background:linear-gradient(135deg,#FF6B00,#FF8C00);color:#fff; }
.wysiwyg-output .btn-glass { background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);color:#f0f0f0; }
.wysiwyg-output .btn:hover { transform:translateY(-2px); }

/* ── Tags wrap ─────────────────────────────────────────────── */
.post-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}
.post-tags-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-right: .5rem;
}
.post-tag {
  display: inline-block;
  background: rgba(255,107,0,.1);
  border: 1px solid rgba(255,107,0,.2);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: .3rem .8rem;
  border-radius: 100px;
  transition: all .2s;
  text-decoration: none;
}
.post-tag:hover { background: var(--accent, #FF6B00); color: #fff; border-color: transparent; }

/* ── Author card ───────────────────────────────────────────── */
.post-author-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) { .post-author-card { flex-direction: column; text-align: center; } }
.post-author-avatar {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,107,0,.4);
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.post-author-bio { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.5; margin-bottom: .75rem; max-width: none; }
.post-author-links { display: flex; gap: .75rem; }
.post-author-links a { font-size: 1.1rem; color: rgba(255,255,255,.5); transition: color .2s; }
.post-author-links a:hover { color: var(--accent, #FF6B00); }

/* ── Prev/Next nav ─────────────────────────────────────────── */
.post-prevnext {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.post-prevnext-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 0;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}
.post-prevnext-next { justify-content: flex-end; }
.post-prevnext-item:hover { color: var(--accent, #FF6B00); }
.post-prevnext-arrow {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,107,0,.12);
  border: 1px solid rgba(255,107,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background .2s;
}
.post-prevnext-item:hover .post-prevnext-arrow { background: var(--accent, #FF6B00); border-color: transparent; color: #fff; }
.post-prevnext-item small { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: .25rem; }
.post-prevnext-item strong { display: block; font-size: .9rem; font-weight: 600; line-height: 1.3; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.post-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}
.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  letter-spacing: -.01em;
}
.sidebar-search-wrap {
  display: flex;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.sidebar-search-input {
  flex: 1;
  background: none;
  border: none;
  padding: .65rem 1rem;
  color: #f0f0f0;
  font-size: .9rem;
  outline: none;
}
.sidebar-search-input::placeholder { color: rgba(255,255,255,.3); }
.sidebar-search-btn {
  padding: .65rem 1rem;
  background: var(--accent, #FF6B00);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  transition: opacity .2s;
}
.sidebar-search-btn:hover { opacity: .85; }

.sidebar-cat-list { display: flex; flex-direction: column; gap: .15rem; }
.sidebar-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem .75rem;
  border-radius: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: all .2s;
  text-decoration: none;
}
.sidebar-cat-link:hover,
.sidebar-cat-link.active { background: rgba(255,107,0,.1); color: #fff; }
.sidebar-cat-link.active { font-weight: 600; color: var(--accent, #FF6B00); }
.sidebar-cat-count {
  background: rgba(255,255,255,.07);
  border-radius: 100px;
  padding: .1em .55em;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

.sidebar-recent-list { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-recent-item { display: flex; gap: .9rem; align-items: flex-start; color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s; }
.sidebar-recent-item:hover { color: var(--accent, #FF6B00); }
.sidebar-recent-thumb { flex-shrink: 0; width: 72px; height: 54px; border-radius: 8px; overflow: hidden; background: rgba(255,255,255,.05); }
.sidebar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-thumb-icon { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 1.2rem; }
.sidebar-recent-date { display: block; font-size: .74rem; color: rgba(255,255,255,.35); margin-bottom: .2rem; }
.sidebar-recent-title { font-size: .85rem; font-weight: 600; line-height: 1.35; margin: 0; }

.sidebar-tags-wrap { display: flex; flex-wrap: wrap; gap: .5rem; }
.sidebar-tag {
  display: inline-block;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  padding: .3rem .75rem;
  border-radius: 100px;
  transition: all .2s;
  text-decoration: none;
}
.sidebar-tag:hover { background: rgba(255,107,0,.12); border-color: rgba(255,107,0,.3); color: #fff; }

.sidebar-widget-discord {
  background: linear-gradient(135deg, rgba(88,101,242,.18), rgba(88,101,242,.06));
  border: 1px solid rgba(88,101,242,.3) !important;
  text-align: center;
}
.sidebar-discord-icon { font-size: 2.5rem; color: #7289da; margin-bottom: .75rem; display: block; }
.sidebar-discord-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.sidebar-discord-desc { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; line-height: 1.5; max-width: none; }
.sidebar-discord-btn { width: 100%; justify-content: center; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   RELATED POSTS
   ============================================================ */
.related-posts-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,.07); }
.related-posts-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.related-posts-title { font-size: 1.6rem; font-weight: 800; color: #fff; }
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .related-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .related-posts-grid { grid-template-columns: 1fr; } }

.related-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.related-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.related-card-link { display: block; text-decoration: none; }
.related-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.04);
}
.related-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.related-card:hover .related-card-thumb img { transform: scale(1.05); }
.related-card-thumb-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: rgba(255,255,255,.2); font-size: 2rem; }
.related-card-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--accent, #FF6B00);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 100px;
}
.related-card-body { padding: 1.25rem; flex: 1; }
.related-card-date { display: block; font-size: .74rem; color: rgba(255,255,255,.35); margin-bottom: .4rem; }
.related-card-title { font-size: 1rem; font-weight: 700; line-height: 1.35; color: #fff; margin-bottom: .5rem; }
.related-card-title a { color: inherit; text-decoration: none; }
.related-card-title a:hover { color: var(--accent, #FF6B00); }
.related-card-exc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.5; max-width: none; }

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.blog-listing-page { padding: 4rem 0; min-height: 70vh; }
.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .85rem 1.25rem;
  border-radius: 14px;
  margin-bottom: 2.5rem;
}
.filter-tab {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  padding: .45rem 1.1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover,
.filter-tab.active { background: var(--accent, #FF6B00); border-color: transparent; color: #fff; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.blog-empty { grid-column: 1/-1; text-align: center; padding: 4rem; color: rgba(255,255,255,.3); }
.blog-empty i { font-size: 3rem; margin-bottom: 1rem; display: block; }

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.blog-card[style*="none"] { display: none; }
.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-cat-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--accent, #FF6B00);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 100px;
  visibility: hidden !important;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-date { display: block; font-size: .78rem; color: rgba(255,255,255,.35); margin-bottom: .5rem; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; line-height: 1.3; color: #fff; margin-bottom: .65rem; }
.blog-card-exc { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.5; margin-bottom: 1.25rem; flex: 1; max-width: none; }
