.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 6rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(9, 10, 12, 0.86)),
    url("/landing/assets/img/headers/header-digital.jpg") center center / cover no-repeat;
}

.blog-hero::after {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.blog-kicker {
  color: #dc3545;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-hero .blog-kicker {
  color: #ff7c88;
}

.blog-lead {
  max-width: 48rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.blog-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-0.35rem);
  box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.12);
}

.blog-card-media {
  width: 100%;
  height: 13rem;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: 1.75rem;
}

.blog-card-body .blog-card-link {
  margin-top: auto;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.blog-card-link::after {
  margin-left: 0.45rem;
  content: "\2192";
  transition: transform 0.18s ease;
}

.blog-card-link:hover::after {
  transform: translateX(0.25rem);
}

.blog-breadcrumb {
  margin: 0 0 1.5rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  list-style: none;
}

.blog-breadcrumb li {
  display: inline;
}

.blog-breadcrumb li + li::before {
  margin: 0 0.55rem;
  color: rgba(255, 255, 255, 0.36);
  content: "/";
}

.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.article-shell {
  padding: 5.5rem 0;
}

.article-content {
  color: #343a40;
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-content h2 {
  margin-top: 3.5rem;
  margin-bottom: 1.15rem;
  color: #111318;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.article-content h3 {
  margin-top: 2.25rem;
  margin-bottom: 0.8rem;
  color: #202329;
  font-size: 1.4rem;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 1.45rem;
}

.article-content li + li {
  margin-top: 0.55rem;
}

.article-content a:not(.btn) {
  color: #b52231;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
}

.article-summary {
  margin-bottom: 2.75rem;
  padding: 1.75rem;
  border-left: 0.3rem solid #dc3545;
  background: #f5f5f6;
}

.article-summary p:last-child,
.article-summary ul:last-child {
  margin-bottom: 0;
}

.article-toc {
  position: sticky;
  top: 6.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
  background: #fff;
}

.article-toc ol {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.article-toc li + li {
  margin-top: 0.75rem;
}

.article-toc a {
  color: #343a40;
}

.article-toc a:hover {
  color: #dc3545;
}

.article-table {
  margin: 2rem 0;
  font-size: 0.95rem;
}

.article-cta {
  position: relative;
  overflow: hidden;
  margin: 3.5rem 0;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 0.6rem;
  background: #111318;
  color: #fff;
}

.article-cta::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 16rem;
  height: 16rem;
  border: 2rem solid rgba(220, 53, 69, 0.28);
  border-radius: 50%;
  content: "";
}

.article-cta > * {
  position: relative;
  z-index: 1;
}

.article-cta p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

.faq-item {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.related-card {
  display: block;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.4rem;
  color: inherit;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.related-card:hover {
  transform: translateY(-0.2rem);
  border-color: #dc3545;
  color: inherit;
}

@media (max-width: 991.98px) {
  .blog-hero {
    padding: 8.5rem 0 4.5rem;
  }

  .article-toc {
    position: static;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .article-shell {
    padding: 3.5rem 0;
  }

  .article-content {
    font-size: 1rem;
  }
}
