/* ============================================================================
   FITDIRECTORY BLOG — Modern, animated, SEO-friendly
   ============================================================================ */

/* ─── REVEAL ANIMATION ─── */
.fd-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fd-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BLOG HERO (Archive) ─── */
.fd-blog-hero {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}
.fd-blog-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(225,29,72,0.08), transparent),
    radial-gradient(ellipse 500px 300px at 80% 30%, rgba(99,102,241,0.06), transparent);
  animation: fdBlogBgPulse 8s ease-in-out infinite alternate;
}
@keyframes fdBlogBgPulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}
.fd-blog-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.fd-blog-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(225,29,72,0.12);
  border: 1px solid rgba(225,29,72,0.2);
  border-radius: 100px;
  color: #f43f5e;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.fd-blog-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e11d48;
  animation: fdPulse 2s infinite;
}
.fd-blog-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.fd-blog-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ─── CATEGORIES BAR ─── */
.fd-blog-cats {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 64px;
  z-index: 90;
  transition: box-shadow 0.3s;
}
.fd-blog-cats__inner {
  display: flex;
  gap: 6px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fd-blog-cats__inner::-webkit-scrollbar { display: none; }
.fd-blog-cats__link {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  white-space: nowrap;
  transition: all 0.25s ease;
  text-decoration: none;
}
.fd-blog-cats__link:hover {
  color: var(--gray-900);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}
.fd-blog-cats__link--active {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}

/* ─── FEATURED POST ─── */
.fd-blog-featured {
  padding: 48px 0 24px;
}
.fd-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.4s, transform 0.4s;
}
.fd-blog-featured__card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.fd-blog-featured__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/8;
}
.fd-blog-featured__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fd-blog-featured__card:hover .fd-blog-featured__img-wrap img {
  transform: scale(1.04);
}
.fd-blog-featured__img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}
.fd-blog-featured__content {
  padding: 28px 32px 32px;
}
.fd-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.fd-blog-featured__cat {
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--cat-accent, var(--red));
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.fd-blog-featured__title {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.fd-blog-featured__title a {
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.2s;
}
.fd-blog-featured__title a:hover { color: var(--red); }
.fd-blog-featured__excerpt {
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0 0 20px;
}

@media (min-width: 768px) {
  .fd-blog-featured__card {
    grid-template-columns: 1.2fr 1fr;
  }
  .fd-blog-featured__img-wrap { aspect-ratio: auto; min-height: 340px; }
}

/* ─── BLOG GRID ─── */
.fd-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .fd-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .fd-blog-grid { grid-template-columns: repeat(3, 1fr); }
  .fd-blog-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.fd-blog-grid-section {
  padding-bottom: 64px;
}

/* ─── BLOG CARD ─── */
.fd-blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.fd-blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.fd-blog-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.fd-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fd-blog-card:hover .fd-blog-card__img-wrap img {
  transform: scale(1.06);
}
.fd-blog-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.fd-blog-card:hover .fd-blog-card__img-overlay { opacity: 1; }
.fd-blog-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--cat-accent, var(--red));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.fd-blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fd-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.fd-blog-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-300);
}
.fd-blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.fd-blog-card__title a {
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.2s;
}
.fd-blog-card__title a:hover { color: var(--red); }
.fd-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 auto;
  padding-bottom: 12px;
}
.fd-blog-card__read-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}
.fd-blog-card__read-more:hover { gap: 8px; }
.fd-blog-card__arrow {
  transition: transform 0.3s;
}
.fd-blog-card:hover .fd-blog-card__arrow {
  transform: translateX(3px);
}

/* ─── BLOG PAGINATION ─── */
.fd-blog-pagination {
  margin-top: 48px;
  text-align: center;
}
.fd-blog-pagination .page-numbers {
  list-style: none;
  display: inline-flex;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.fd-blog-pagination .page-numbers li { display: inline-flex; }
.fd-blog-pagination .page-numbers a,
.fd-blog-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: all 0.25s;
}
.fd-blog-pagination .page-numbers a:hover {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
  transform: translateY(-2px);
}
.fd-blog-pagination .page-numbers .current {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ─── BLOG CTA ─── */
.fd-blog-cta {
  padding: 32px 0 64px;
}
.fd-blog-cta__card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fd-blog-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 300px at 20% 50%, rgba(225,29,72,0.1), transparent),
    radial-gradient(circle 200px at 80% 30%, rgba(99,102,241,0.08), transparent);
  pointer-events: none;
}
.fd-blog-cta__card h2 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
}
.fd-blog-cta__card p {
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 24px;
  position: relative;
}
.fd-blog-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── EMPTY STATE ─── */
.fd-blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-500);
}
.fd-blog-empty a { color: var(--red); }

/* ============================================================================
   SINGLE POST
   ============================================================================ */

/* ─── POST HERO ─── */
.fd-post-hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.fd-post-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}
.fd-post-hero:hover .fd-post-hero__bg {
  transform: scale(1.03);
}
.fd-post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.6) 40%, rgba(15,23,42,0.3) 100%);
}
.fd-post-hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.fd-post-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.fd-post-hero__cat {
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--cat-accent, var(--red));
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: filter 0.2s;
}
.fd-post-hero__cat:hover { filter: brightness(1.15); }
.fd-post-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.fd-post-hero__excerpt {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ─── READING PROGRESS ─── */
.fd-reading-progress {
  position: fixed;
  top: 64px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #e11d48, #f43f5e, #fb7185);
  z-index: 999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(225,29,72,0.4);
}

/* ─── POST LAYOUT ─── */
.fd-post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .fd-post-layout {
    grid-template-columns: 1fr 300px;
  }
}

/* ─── POST CONTENT (PROSE) ─── */
.fd-post-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
}
.fd-post-content h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 2.5em 0 0.75em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
  letter-spacing: -0.02em;
  scroll-margin-top: 100px;
}
.fd-post-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 2em 0 0.5em;
  scroll-margin-top: 100px;
}
.fd-post-content p { margin: 0 0 1.25em; }
.fd-post-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.fd-post-content a:hover { color: #b91c1c; }
.fd-post-content ul, .fd-post-content ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}
.fd-post-content li { margin-bottom: 0.5em; }
.fd-post-content blockquote {
  border-left: 4px solid var(--red);
  background: var(--gray-50);
  padding: 20px 24px;
  margin: 1.5em 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--gray-600);
}
.fd-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5em 0;
}
.fd-post-content strong { color: var(--gray-900); }

/* ─── TABLE OF CONTENTS ─── */
.fd-toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 0 2em;
  position: relative;
  overflow: hidden;
}
.fd-toc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--red), #f43f5e);
  border-radius: 4px 0 0 4px;
}
.fd-toc__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.fd-toc__header strong {
  font-size: 0.9375rem;
  color: var(--gray-800);
}
.fd-toc__toggle {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 0.75rem;
  padding: 4px;
  transition: color 0.2s;
}
.fd-toc__toggle:hover { color: var(--gray-700); }
.fd-toc__list {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  max-height: 600px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.fd-toc__list--hidden { max-height: 0; }
.fd-toc__list li {
  counter-increment: toc;
  margin-bottom: 4px;
}
.fd-toc__list li a {
  display: block;
  padding: 6px 8px 6px 0;
  color: var(--gray-600);
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}
.fd-toc__list li a::before {
  content: counter(toc) ". ";
  color: var(--red);
  font-weight: 700;
}
.fd-toc__list li a:hover {
  color: var(--gray-900);
  background: rgba(225,29,72,0.04);
  padding-left: 8px;
}
.fd-toc__sub a { padding-left: 20px !important; font-size: 0.8125rem !important; }
.fd-toc__sub a::before { content: "— " !important; }

/* ─── FAQ SECTION ─── */
.fd-faq {
  margin: 3em 0 2em;
}
.fd-faq h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--gray-900);
}
.fd-faq__list { display: flex; flex-direction: column; gap: 8px; }
.fd-faq__item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.fd-faq__item[open] {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(225,29,72,0.06);
}
.fd-faq__question {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.fd-faq__question::-webkit-details-marker { display: none; }
.fd-faq__question::before {
  content: '+';
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.fd-faq__item[open] .fd-faq__question::before {
  transform: rotate(45deg);
}
.fd-faq__answer {
  padding: 0 20px 16px;
  color: var(--gray-600);
  line-height: 1.7;
  animation: fdFaqOpen 0.3s ease;
}
@keyframes fdFaqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── POST TAGS ─── */
.fd-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 2em 0;
  padding-top: 2em;
  border-top: 1px solid var(--gray-100);
}
.fd-post-tags__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
}
.fd-post-tags__tag {
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.fd-post-tags__tag:hover {
  background: var(--red);
  color: #fff;
}

/* ─── SHARE ─── */
.fd-post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5em 0;
}
.fd-post-share__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
}
.fd-post-share__btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.fd-post-share__btn:hover { transform: translateY(-2px); }
.fd-post-share__btn--fb { background: #1877f2; }
.fd-post-share__btn--tw { background: #0f1419; }
.fd-post-share__btn--li { background: #0a66c2; }
.fd-post-share__btn--copy {
  background: var(--gray-200);
  color: var(--gray-600);
}
.fd-post-share__btn--copy.copied { background: #16a34a; color: #fff; }

/* ─── AUTHOR BOX ─── */
.fd-post-author {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: var(--gray-50);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  margin: 2em 0;
}
.fd-post-author__avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.fd-post-author__info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.fd-post-author__info p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ─── SIDEBAR ─── */
.fd-post-sidebar-sticky {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fd-post-sidebar-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 20px;
}
.fd-post-sidebar-box h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 14px;
}
.fd-post-sidebar-box--cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-color: transparent;
  text-align: center;
}
.fd-post-sidebar-box--cta strong {
  color: var(--white);
  font-size: 1rem;
}
.fd-post-sidebar-box--cta p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  margin: 6px 0 14px;
}
.fd-post-sidebar-mini {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-50);
  transition: all 0.2s;
}
.fd-post-sidebar-mini:last-child { border-bottom: none; }
.fd-post-sidebar-mini:hover { padding-left: 4px; }
.fd-post-sidebar-mini img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.fd-post-sidebar-mini span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── RELATED POSTS ─── */
.fd-related-section {
  background: var(--gray-50);
  padding: 48px 0 64px;
}

/* ─── BREADCRUMBS ─── */
/* Blog-specific breadcrumbs (white text for dark headers) */
.fd-blog-single .fd-breadcrumbs,
.fd-blog-archive .fd-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.fd-blog-single .fd-breadcrumbs a,
.fd-blog-archive .fd-breadcrumbs a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.fd-blog-single .fd-breadcrumbs a:hover,
.fd-blog-archive .fd-breadcrumbs a:hover { color: rgba(255,255,255,0.8); }
.fd-blog-single .fd-breadcrumbs__sep,
.fd-blog-archive .fd-breadcrumbs__sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.625rem;
}
.fd-blog-single .fd-breadcrumbs__current,
.fd-blog-archive .fd-breadcrumbs__current {
  color: rgba(255,255,255,0.6);
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* (light breadcrumbs for blog already scoped above) */

/* ─── REVEAL JS OBSERVER ─── */
/* This is handled via IntersectionObserver in blog JS */

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .fd-blog-hero { padding: 80px 0 40px; }
  .fd-post-hero { padding: 100px 0 40px; min-height: 360px; }
  .fd-post-hero__title { font-size: 1.5rem; }
  .fd-blog-featured__content { padding: 20px; }
  .fd-post-layout { gap: 32px; }
  .fd-post-content { font-size: 1rem; }
  .fd-blog-cta__card { padding: 32px 20px; }
  .fd-post-author { flex-direction: column; text-align: center; }
}
