/* Blog article pages — modern reading layout (matches homepage brand) */

body.blog-page {
  padding-top: 80px;
}

.blog-article {
  padding: 2.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(255, 180, 180, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(183, 28, 28, 0.06), transparent 50%),
    #faf7f7;
}

.blog-article-shell {
  max-width: 860px;
  margin: 0 auto;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-family: var(--ro-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ro-red);
  text-decoration: none;
  transition: transform 0.3s var(--ro-ease), color 0.3s var(--ro-ease);
}

.blog-back:hover {
  color: var(--ro-red-bright);
  transform: translateX(-3px);
  text-decoration: none;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 18px 48px rgba(120, 20, 20, 0.12);
}

.blog-hero-img,
.blog-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1.25rem !important;
  transition: transform 0.6s var(--ro-ease);
}

.blog-hero:hover img {
  transform: scale(1.03);
}

.blog-article-body {
  padding: 2rem 1.85rem 2.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(183, 28, 28, 0.1);
  background: #fff;
  box-shadow: 0 14px 40px rgba(80, 20, 20, 0.07);
}

.blog-article-body > h2 {
  margin: 0 0 1.1rem;
  font-family: var(--ro-font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ro-ink, #1a1212);
}

.blog-article-body > h4 {
  margin: 1.75rem 0 0.65rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--ro-red);
  font-family: var(--ro-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ro-red);
}

.blog-article-body > p {
  margin: 0 0 1rem;
  color: #4a3f3f;
  font-family: var(--ro-font-body);
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-article-body > ul {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
  color: #4a3f3f;
  font-size: 1.02rem;
  line-height: 1.7;
}

.blog-article-body > ul li {
  margin-bottom: 0.4rem;
}

.blog-article-body > ul li::marker {
  color: var(--ro-red);
}

.blog-cta {
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 200, 200, 0.45), transparent 45%),
    linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border: 1px solid rgba(183, 28, 28, 0.12);
}

.blog-cta p {
  margin: 0;
  color: #3d3333;
  font-size: 1.02rem;
  line-height: 1.6;
}

.blog-cta a {
  display: inline-flex;
  align-items: center;
  margin-top: 0.15rem;
  font-family: var(--ro-font-display);
  font-weight: 700;
  color: var(--ro-red);
  text-decoration: none;
  transition: color 0.25s var(--ro-ease), transform 0.25s var(--ro-ease);
}

.blog-cta a:hover {
  color: var(--ro-red-bright);
  transform: translateX(3px);
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .blog-article {
    padding: 1.5rem 0 3rem;
  }

  .blog-article-body {
    padding: 1.35rem 1.1rem 1.5rem;
  }

  .blog-hero-img,
  .blog-hero img {
    max-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-hero img,
  .blog-back,
  .blog-cta a {
    transition: none !important;
    transform: none !important;
  }
}
