:root {
  --blog-bg: #f5f5f7;
  --blog-card-bg: #ffffff;
  --blog-muted: #6b7280;
  --blog-border: #e5e7eb;
  --blog-primary: #1f5a8a;
  --blog-accent: #dcf3ff;
}

.blog-page {
  background: #f6f8fb;
}

.blog-main {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.blog-breadcrumb {
  margin: 0 auto 1.5rem;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  max-width: min(90vw, 1200px);
  width: 100%;
}

.blog-breadcrumb__list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  max-width: 100%;
  overflow: hidden;
}

.blog-breadcrumb__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
}

.blog-breadcrumb__item:last-child {
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

.blog-breadcrumb__item a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.blog-breadcrumb__item a:hover {
  color: #1f5a8a;
  background: rgba(31, 90, 138, 0.08);
}

.blog-breadcrumb__item::after {
  content: "›";
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 400;
  margin: 0 0.15rem 0 0.25rem;
  flex-shrink: 0;
}

.blog-breadcrumb__item--current {
  color: #0f172a;
  font-weight: 600;
}

.blog-breadcrumb__item--current::after,
.blog-breadcrumb__item:last-child::after {
  display: none;
}

.blog-breadcrumb__item--current span,
.blog-breadcrumb__item:last-child span {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
}

@media (max-width: 992px) {
  .blog-breadcrumb {
    max-width: 92vw;
  }

  .blog-breadcrumb__list {
    font-size: 0.8rem;
    padding: 0.38rem 0.6rem;
  }
}

@media (max-width: 768px) {
  .blog-breadcrumb {
    margin: 0 auto 1rem;
    max-width: 95vw;
    padding: 0 0.5rem;
  }

  .blog-breadcrumb__list {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
    gap: 0.15rem;
  }

  .blog-breadcrumb__item a {
    padding: 0.2rem 0.35rem;
  }

  .blog-breadcrumb__item::after {
    font-size: 0.85rem;
    margin: 0 0.05rem 0 0.1rem;
  }

  .blog-breadcrumb__item--current span,
  .blog-breadcrumb__item:last-child span {
    padding: 0.2rem 0.35rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    gap: 1.25rem;
  }

  .blog-card-meta {
    gap: 0.6rem;
  }

  .blog-meta-author {
    gap: 0.4rem;
  }

  .blog-meta-separator {
    margin: 0 -0.1rem;
  }

  .blog-meta-date {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 1.25rem;
  }

  .blog-grid--single {
    max-width: 540px;
  }
}

.blog-hero {
  background: linear-gradient(180deg, #f6f8ff 0%, #eef2fb 100%);
  padding: 6rem 0 3.5rem;
  text-align: center;
  position: relative;
  z-index: 0;
}

.blog-hero h1 {
  font-weight: 750;
  color: #0f172a;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.blog-hero p {
  font-size: 1rem;
  color: #55627a;
  max-width: 720px;
  margin: 0 auto;
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 2.5rem;
  margin-top: 1.25rem;
}

.blog-tag-pill {
  border: 1px solid #d6dae5;
  color: var(--blog-muted);
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  background: #fff;
}

.blog-tag-pill:hover {
  border-color: rgba(31, 90, 138, 0.7);
  color: var(--blog-primary);
}

.blog-tag-pill.active {
  background: var(--blog-primary);
  border-color: var(--blog-primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(31, 90, 138, 0.35);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 440px));
  gap: 1.75rem;
  margin-bottom: 3rem;
  justify-content: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid--single {
  grid-template-columns: 1fr;
  max-width: 620px;
}

.blog-grid--single .blog-article-card {
  max-width: 100%;
}

.blog-article-card {
  display: flex;
  flex-direction: column;
  background: var(--blog-card-bg);
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
  cursor: pointer;
}

.blog-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
}
.blog-article-card:hover .blog-card-title {
  color: var(--blog-primary);
}

.blog-card-cover {
  position: relative;
  height: 190px;
  background: #0f172a;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
}

.blog-card-tags {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-tag-badge {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.12);
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.blog-card-summary {
  color: #475569;
  flex: 1;
  line-height: 1.5;
  font-size: 0.95rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: auto;
  padding-top: 0.5rem;
  min-width: 0;
}

.blog-meta-author {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0f172a;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  min-height: 32px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

.blog-meta-avatar,
.blog-meta-initials {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  background: #e2e8f0;
  flex-shrink: 0;
}

.blog-meta-avatar {
  object-fit: cover;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
}

.blog-meta-author-name {
  font-size: 0.875rem;
  color: #0f172a;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}

.blog-meta-separator {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 400;
  flex-shrink: 0;
}

.blog-meta-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--blog-border);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.blog-empty-state p {
  color: #475569;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.blog-empty-state button {
  border: none;
  background: var(--blog-primary);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.blog-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.blog-load-more-button {
  border: none;
  background: #ffffff;
  color: #1f2937;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: all 0.2s ease;
}

.blog-load-more-button:hover:not(:disabled) {
  background: var(--blog-primary);
  color: #ffffff;
  border-color: var(--blog-primary);
  box-shadow: 0 18px 45px rgba(31, 90, 138, 0.35);
}

.blog-load-more-button:disabled {
  opacity: 0.5;
  cursor: default;
  box-shadow: none;
}

.blog-post-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, #f2f4fb 0%, #e8ecf7 100%);
  color: #0f172a;
}

.blog-post-hero .blog-card-tags {
  display: none;
}

.blog-post-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.blog-post-hero #blogPostMeta {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7b8095;
  margin-bottom: 0.75rem;
}

.blog-post-hero p {
  font-size: 1rem;
  color: #4a4f63;
}

.blog-cover-wrapper {
  max-width: 960px;
  margin: -1.5rem auto 3rem;
  padding: 0;
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
  position: relative;
  z-index: 1;
  min-height: 400px;
  aspect-ratio: 16 / 9;
}

.blog-cover-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 32px;
}

@media (max-width: 768px) {
  .blog-cover-wrapper {
    margin: 0.5rem auto 2rem;
    background: transparent;
    box-shadow: none;
    border-radius: 20px;
  }

  .blog-cover-wrapper img {
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
  }
}

.blog-cover-skeleton {
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.blog-cover-loaded {
  background: transparent;
  animation: none;
}

.blog-cover-loaded img {
  animation: coverFadeIn 0.6s ease-out forwards;
}

@keyframes coverFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.blog-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4.5rem;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  margin-top: -2rem;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #1f2937;
  margin-bottom: 1.25rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 12px;
}

.blog-content a {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.blog-content h2,
.blog-content h3 {
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.blog-content h2 {
  font-size: 2rem;
}

.blog-content h3 {
  font-size: 1.5rem;
}

.blog-content ul,
.blog-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #1f2937;
  line-height: 1.75;
}

.blog-content blockquote {
  border-left: 4px solid var(--blog-primary);
  padding-left: 1.25rem;
  font-style: italic;
  color: #334155;
  background: #f8fafc;
  border-radius: 8px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.blog-callout {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #f1f5f9;
  border-radius: 16px;
  border: 1px solid var(--blog-border);
  align-items: flex-start;
}

.blog-code-block {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1.5rem;
  border-radius: 16px;
  overflow-x: auto;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.95rem;
}

.blog-divider {
  width: 60%;
  margin: 3rem auto;
  border-top: 2px solid #e2e8f0;
  text-align: center;
  position: relative;
}

.blog-divider::before {
  content: "∿∿∿";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #cbd5f5;
  padding: 0 0.75rem;
}

.blog-more-articles {
  background: #f8fafc;
  padding: 3.5rem 0 1rem;
  margin-top: 3rem;
}

.blog-error-state {
  max-width: 720px;
  margin: 4rem auto;
  padding: 3rem;
  text-align: center;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--blog-border);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.blog-error-state h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-error-state p {
  color: #475569;
  margin-bottom: 2rem;
}

.blog-error-state a {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: var(--blog-primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.blog-text-bold {
  font-weight: 700;
}

.blog-text-italic {
  font-style: italic;
}

.blog-text-strike {
  text-decoration: line-through;
}

.blog-text-underline {
  text-decoration: underline;
}

.blog-text-code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  background: rgba(15, 23, 42, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .blog-filter-bar {
    border-radius: 24px;
  }

  .blog-card-body {
    padding: 1rem 1.25rem 1.5rem;
  }

  .blog-card-meta {
    gap: 0.5rem;
    padding-top: 0.25rem;
  }

  .blog-meta-author {
    gap: 0.35rem;
    min-height: 28px;
  }

  .blog-meta-avatar,
  .blog-meta-initials {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }

  .blog-meta-author-name {
    font-size: 0.8rem;
  }

  .blog-meta-separator {
    font-size: 0.7rem;
    margin: 0 -0.15rem;
  }

  .blog-meta-date {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .blog-post-hero {
    padding: 4rem 0 2rem;
  }

  .blog-cover-wrapper {
    margin-top: -1rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    min-height: 250px;
  }

  .blog-main {
    padding-top: 5rem;
  }
}
.blog-empty-state.d-none {
  display: none !important;
}

/* Loading State Improvements */
.blog-loading-skeleton {
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.blog-fade-in {
  animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-loading-state {
  opacity: 0.6;
  pointer-events: none;
}

.blog-content-loaded {
  animation: contentFadeIn 0.5s ease-in-out forwards;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Skeleton loader styles */
.skeleton-text {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  height: 1em;
  margin-bottom: 0.5rem;
}

.skeleton-title {
  height: 2.5rem;
  width: 70%;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

.skeleton-meta {
  height: 1rem;
  width: 40%;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.blog-spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 300px;
}

.blog-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e2e8f0;
  border-top-color: var(--blog-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.blog-spinner-text {
  margin-top: 1.5rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Skeleton Card Loader */
.blog-skeleton-card {
  display: flex;
  flex-direction: column;
  background: var(--blog-card-bg);
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  min-height: 100%;
}

.blog-skeleton-cover {
  position: relative;
  height: 190px;
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 24px 24px 0 0;
}

.blog-skeleton-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-skeleton-title {
  height: 1.3rem;
  width: 85%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.blog-skeleton-line {
  height: 0.95rem;
  background: linear-gradient(90deg, #f5f5f5 25%, #e5e5e5 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.blog-skeleton-line:last-of-type {
  width: 60%;
}

.blog-skeleton-meta {
  height: 0.8rem;
  width: 40%;
  background: linear-gradient(90deg, #f5f5f5 25%, #e5e5e5 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-top: auto;
}

/* Tag filter skeleton */
.blog-skeleton-tag {
  height: 2rem;
  width: 80px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 999px;
}

/* Card fade-in animation */
.blog-card-enter {
  animation: cardFadeIn 0.5s ease-out forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation for multiple cards */
.blog-article-card:nth-child(1) {
  animation-delay: 0.05s;
}

.blog-article-card:nth-child(2) {
  animation-delay: 0.1s;
}

.blog-article-card:nth-child(3) {
  animation-delay: 0.15s;
}

.blog-article-card:nth-child(4) {
  animation-delay: 0.2s;
}

.blog-article-card:nth-child(5) {
  animation-delay: 0.25s;
}

.blog-article-card:nth-child(6) {
  animation-delay: 0.3s;
}

@media (max-width: 768px) {
  .blog-skeleton-body {
    padding: 1rem 1.25rem 1.5rem;
  }

  .blog-cover-wrapper {
    min-height: auto;
    padding: 0 1rem;
  }
}

/* Blog Content Skeleton Loader */
.blog-content-skeleton {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4.5rem;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  margin-top: -2rem;
}

.blog-skeleton-heading {
  height: 2rem;
  width: 60%;
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

.blog-skeleton-heading:first-child {
  margin-top: 0;
}

.blog-skeleton-paragraph {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.blog-skeleton-text-line {
  height: 1rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.blog-skeleton-text-line:nth-child(1) {
  width: 100%;
}

.blog-skeleton-text-line:nth-child(2) {
  width: 95%;
}

.blog-skeleton-text-line:nth-child(3) {
  width: 98%;
}

.blog-skeleton-text-line:nth-child(4) {
  width: 85%;
}

.blog-skeleton-image {
  height: 300px;
  width: 100%;
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
  margin: 2rem 0;
}

.blog-skeleton-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.blog-skeleton-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-skeleton-bullet {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: linear-gradient(90deg, #d8d8d8 25%, #c8c8c8 50%, #d8d8d8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 50%;
}

.blog-skeleton-list-text {
  height: 1rem;
  flex: 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.blog-skeleton-list-item:nth-child(1) .blog-skeleton-list-text {
  width: 80%;
}

.blog-skeleton-list-item:nth-child(2) .blog-skeleton-list-text {
  width: 75%;
}

.blog-skeleton-list-item:nth-child(3) .blog-skeleton-list-text {
  width: 85%;
}

.blog-skeleton-callout {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.blog-skeleton-callout-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.blog-skeleton-callout-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-skeleton-callout-content .blog-skeleton-text-line {
  background: linear-gradient(90deg, #e8e8e8 25%, #d8d8d8 50%, #e8e8e8 75%);
}

@media (max-width: 768px) {
  .blog-content-skeleton {
    padding: 2rem 1.5rem 3.5rem;
  }

  .blog-skeleton-image {
    height: 200px;
  }
}

/* Stretched link for clickable cards */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
}
