.blog-listing-hero,
.blog-article-hero {
  padding: 130px 0 80px;
  background:
    radial-gradient(circle at 18% 20%, rgba(252, 163, 17, 0.25), transparent 28%),
    linear-gradient(135deg, var(--black), var(--navy));
  color: var(--white);
}

.blog-listing-hero h1,
.blog-article-hero h1 {
  max-width: 960px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 8vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.blog-listing-hero p:not(.eyebrow),
.blog-article-hero .blog-excerpt {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.blog-date {
  margin: 22px 0 0;
  color: var(--orange);
  font-weight: 800;
}

.blog-listing-section,
.blog-content-section {
  background: var(--white);
}

.blog-card-grid {
  display: grid;
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid rgba(20, 33, 61, 0.08);
  box-shadow: 0 14px 36px rgba(20, 33, 61, 0.06);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  padding: 26px;
}

.blog-card-content span {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.9rem;
}

.blog-card-content h2 {
  margin: 12px 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.blog-card-content h2 a {
  color: var(--navy);
}

.blog-card-content p {
  color: var(--muted);
  line-height: 1.7;
}

.blog-read-more {
  display: inline-flex;
  margin-top: 8px;
  color: var(--black);
  font-weight: 900;
}

.blog-layout {
  display: grid;
  gap: 36px;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-featured-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.article-html {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.85;
}

.article-html h2,
.article-html h3,
.article-html h4 {
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 34px;
  margin-bottom: 14px;
}

.article-html h2 {
  font-size: 2rem;
}

.article-html h3 {
  font-size: 1.5rem;
}

.article-html p {
  margin: 0 0 18px;
}

.article-html ul,
.article-html ol {
  margin: 0 0 22px 22px;
}

.article-html li {
  margin-bottom: 10px;
}

.article-html a {
  color: var(--orange);
  font-weight: 800;
}

.article-sidebar {
  display: grid;
  gap: 18px;
}


.sidebar-card h3 {
  margin: 0 0 16px;
  color: var(--navy);
}

.share-links,
.latest-article-links,
.service-sidebar-links {
  display: grid;
  gap: 10px;
}

.blog-empty {
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--cream);
  text-align: center;
}

.blog-empty h2 {
  margin: 0 0 10px;
  color: var(--navy);
}

.blog-empty p {
  color: var(--muted);
}

/* =========================
   ARTICLE PAGE WITHOUT SIDEBAR
========================= */

.article-single-wrap {
  max-width: 980px;
}

.article-content-full {
  width: 100%;
}

.article-featured-image {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 32px;
  margin-bottom: 38px;
  box-shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
}

.article-html {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.9;
}

.article-html h2,
.article-html h3,
.article-html h4 {
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.article-html h2 {
  margin-top: 46px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.article-html h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.article-html p {
  margin: 0 0 20px;
}

.article-html ul,
.article-html ol {
  margin: 0 0 24px 22px;
}

.article-html li {
  margin-bottom: 10px;
}

.article-html a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(252, 163, 17, 0.35);
}

.article-html a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* Hero share icons */

.hero-share-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-share-wrap span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.article-share-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.article-share-icons a,
.article-share-icons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(20, 33, 61, 0.10);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.hero-share-icons a,
.hero-share-icons button {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.article-share-icons a:hover,
.article-share-icons button:hover {
  transform: translateY(-3px);
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

/* Bottom share section */

.article-bottom-share {
  max-width: 860px;
  margin: 46px auto 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid rgba(20, 33, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.article-bottom-share h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
}

/* Article service CTA */

.article-service-cta {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(252, 163, 17, 0.34), transparent 34%),
    linear-gradient(135deg, #14213d, #000000);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(20, 33, 61, 0.18);
}

.article-service-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.article-service-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.article-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-service-links a {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  font-size: 0.9rem;
  transition: 0.22s ease;
}

.article-service-links a:hover {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

@media (max-width: 700px) {
  .article-featured-image {
    border-radius: 22px;
    margin-bottom: 28px;
  }

  .article-html {
    font-size: 1rem;
    line-height: 1.8;
  }

  .article-bottom-share,
  .article-service-cta {
    border-radius: 22px;
    padding: 24px;
  }

  .article-bottom-share {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-share-icons a,
  .article-share-icons button {
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 760px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-listing-hero,
  .blog-article-hero {
    padding: 105px 0 60px;
  }
}