.dance-blog-page {
  --blog-surface: rgba(255, 255, 255, 0.92);
  --blog-border: rgba(15, 23, 42, 0.08);
  --blog-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  --blog-sidebar-width: 300px;
  position: relative;
  isolation: isolate;
}

.dance-blog-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.9)),
    url("/images/happyDancer.png") center top / cover no-repeat;
  opacity: 0.26;
  filter: saturate(0.55) brightness(1.08);
  pointer-events: none;
}

.dance-blog-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(248, 250, 252, 0.7));
  pointer-events: none;
}

.dance-blog-page > .container {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.blog-shell {
  display: block;
}

.blog-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--blog-sidebar-width);
  padding: 0.85rem;
  overflow-y: auto;
}

.blog-sidebar-inner,
.dance-blog-hero-shell,
.blog-card,
.blog-article-main {
  background: var(--blog-surface);
  border: 1px solid var(--blog-border);
  border-radius: 24px;
  box-shadow: var(--blog-shadow);
}

.blog-sidebar-inner,
.dance-blog-hero-shell,
.blog-card,
.blog-article-main {
  padding: 1.25rem;
}

.blog-sidebar-inner {
  min-height: calc(100vh - 1.7rem);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.blog-sidebar .brand {
  font-size: 1.125rem;
  color: var(--landing-text);
}

.blog-sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.blog-language-toggle {
  margin-left: auto;
}

.blog-sidebar .logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.75);
  box-sizing: border-box;
  padding: 4px 2px 2px 2px;
}

.blog-sidebar .logo-icon {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none !important;
}

.blog-eyebrow,
.blog-badge,
.blog-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.blog-eyebrow {
  padding: 0.45rem 0.85rem;
  background: rgba(92, 61, 255, 0.1);
  color: var(--landing-primary);
  font-size: 0.85rem;
}

.blog-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.blog-stat-card {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--blog-border);
  border-radius: 20px;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-stat-value {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1;
  font-weight: 800;
}

.blog-stat-label,
.blog-meta {
  color: var(--landing-muted);
  font-size: 0.9rem;
}

.blog-badge,
.blog-chip {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.blog-badge {
  background: rgba(92, 61, 255, 0.08);
  color: var(--landing-primary);
}

.blog-chip {
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.72);
}

.blog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-list-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(15, 23, 42, 0.05);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}

.blog-list-card .text-muted {
  color: rgba(15, 23, 42, 0.76) !important;
}

.blog-sidebar-note {
  color: var(--landing-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.blog-card-media-link {
  display: block;
  text-decoration: none;
}

.blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.blog-card-title-link {
  color: var(--landing-text);
  text-decoration: none;
}

.blog-card-title-link:hover,
.blog-card-title-link:focus {
  color: var(--landing-primary);
}

.blog-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-sidebar-link {
  color: var(--landing-text);
  text-decoration: none;
  font-weight: 600;
}

.blog-sidebar-link:hover,
.blog-sidebar-link:focus {
  color: var(--landing-primary);
  text-decoration: underline;
}

.blog-social-quote {
  font-size: 1rem;
  color: var(--landing-text);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
}

.blog-back-link:hover,
.blog-back-link:focus {
  text-decoration: underline;
}

.blog-article-section {
  scroll-margin-top: 6rem;
}

.blog-main-column {
  min-width: 0;
  margin-left: calc(var(--blog-sidebar-width) + 1rem);
  padding: 1rem 1.75rem 2rem 0;
  max-width: 1140px;
}

.blog-post-content {
  line-height: 1.75;
}

.blog-inline-note,
.blog-cta-panel,
.blog-related-card,
.blog-header-aside,
.blog-sources-panel {
  border-radius: 20px;
  border: 1px solid var(--blog-border);
}

.blog-inline-note {
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(15, 23, 42, 0.035);
  box-shadow: none;
  max-width: 68ch;
}

.blog-inline-note strong,
.blog-inline-note span {
  color: rgba(15, 23, 42, 0.92);
}

.blog-post-content p {
  margin-bottom: 1.1rem;
  max-width: 68ch;
}

.blog-post-content h2 {
  margin: 2.35rem 0 0.85rem;
  max-width: 24ch;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.blog-post-content ul,
.blog-post-content ol {
  max-width: 68ch;
}

.blog-author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1rem 0 1.35rem;
}

.blog-author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(92, 61, 255, 0.9), rgba(37, 99, 235, 0.82));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.blog-author-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--landing-text);
}

.blog-author-role {
  margin: 0.1rem 0 0;
  color: var(--landing-muted);
  font-size: 0.92rem;
}

.blog-article-header {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.blog-header-aside {
  padding: 1.1rem 1.15rem;
  background: linear-gradient(180deg, rgba(92, 61, 255, 0.08), rgba(92, 61, 255, 0.03));
}

.blog-aside-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.2;
}

.blog-aside-list {
  margin: 0;
  padding-left: 1.1rem;
}

.blog-aside-list li {
  margin-bottom: 0.6rem;
  color: var(--landing-text);
}

.blog-feature-figure {
  margin: 0;
}

.blog-feature-image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid var(--blog-border);
}

.blog-quick-summary {
  margin: 1.35rem 0 0;
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.015));
  border: 1px solid var(--blog-border);
}

.blog-quick-summary h2 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

.blog-quick-summary ul {
  margin: 0;
  padding-left: 1.1rem;
}

.blog-quick-summary li {
  margin-bottom: 0.55rem;
}

.blog-cta-panel {
  margin-top: 1rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.85));
  max-width: 72ch;
}

.blog-sources-panel {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  max-width: 72ch;
}

.blog-sources-group + .blog-sources-group {
  margin-top: 1rem;
}

.blog-sources-list {
  margin: 0;
  padding-left: 1.1rem;
}

.blog-sources-list li {
  margin-bottom: 0.65rem;
  color: var(--landing-text);
}

.blog-sources-list a {
  color: var(--landing-primary);
  font-weight: 700;
  text-decoration: none;
}

.blog-sources-list a:hover,
.blog-sources-list a:focus {
  text-decoration: underline;
}

.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-takeaway-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.blog-takeaway-list li {
  margin-bottom: 0.7rem;
}

.blog-social-hook {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(92, 61, 255, 0.08), rgba(92, 61, 255, 0.03));
  border: 1px solid rgba(92, 61, 255, 0.12);
}

.blog-hook-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--landing-primary);
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-related-card {
  display: block;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 767.98px) {
  .blog-shell {
    display: block;
  }

  .blog-sidebar {
    position: static;
    width: auto;
    padding: 0 1rem 1rem;
    overflow: visible;
  }

  .blog-sidebar-inner,
  .dance-blog-hero-shell,
  .blog-card,
  .blog-article-main {
    border-radius: 20px;
    padding: 1rem;
  }

  .blog-sidebar-inner {
    min-height: auto;
    backdrop-filter: none;
  }

  .blog-sidebar .logo-pill {
    width: 40px;
    height: 40px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-sidebar-top {
    align-items: flex-start;
  }

  .blog-language-toggle {
    flex: 0 0 auto;
  }

  .blog-main-column {
    margin-left: 0;
    padding: 0 1rem 1rem;
    max-width: none;
  }

  .blog-list-card {
    padding: 1rem;
  }

  .blog-article-header,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .dance-blog-hero-shell.mb-4 {
    margin-bottom: 1rem !important;
  }

  .blog-article-header.mt-3 {
    margin-top: 0.75rem !important;
    gap: 0.85rem;
  }

  .blog-author-row {
    margin: 0.75rem 0 1rem;
  }

  .blog-article-header .display-5 {
    font-size: clamp(1.9rem, 7vw, 2.45rem);
    line-height: 1.14;
    margin-bottom: 0.85rem !important;
  }

  .blog-article-header .lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0 !important;
  }

  .blog-header-aside {
    padding: 0.9rem 1rem;
  }

  .blog-feature-figure.mb-4,
  .blog-quick-summary.mb-4,
  .blog-inline-note.mb-4 {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .blog-stat-grid {
    grid-template-columns: 1fr;
  }
}
