:root {
  --sb-navy: var(--sb-schrift);
  --sb-navy-deep: var(--sb-schrift);
  --sb-coral: var(--sb-rot);
  --sb-coral-strong: var(--sb-rot);
  --sb-purple: #5b225f;
  --sb-cream: #fbfaf7;
  --sb-cream-2: #f6f3ee;
  --sb-surface: #ffffff;
  --sb-text: #4f5970;
  --sb-text-dark: #27334f;
  --sb-line: rgba(16, 38, 77, 0.11);
  --sb-shadow: 0 16px 44px rgba(15, 35, 75, 0.08);
  --sb-shadow-soft: 0 8px 24px rgba(15, 35, 75, 0.07);
}

.sb-blog,
.sb-article-page,
.sb-site-header,
.sb-related,
.sb-article-cta {
  box-sizing: border-box;
}

.sb-blog *,
.sb-article-page *,
.sb-site-header *,
.sb-related *,
.sb-article-cta * {
  box-sizing: inherit;
}

/* --------------------------------------------------------------------------
   Blog preview section
   -------------------------------------------------------------------------- */

.sb-blog {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 94px 24px 104px;
  background: var(--sb-cream);
}

.sb-blog__container {
  position: relative;
  z-index: 2;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.sb-blog__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sb-blog__decor--dots-left {
  top: 42px;
  left: 28px;
  width: 150px;
  height: 126px;
  background-image: url('../images/blog/decor/dots-blue.svg');
}

.sb-blog__decor--dots-right {
  top: 42px;
  right: 28px;
  width: 150px;
  height: 126px;
  background-image: url('../images/blog/decor/dots-blue.svg');
}

.sb-blog__decor--leaf-left {
  left: -20px;
  top: 270px;
  width: 150px;
  height: 244px;
  background-image: url('../images/blog/decor/leaf-left.svg');
  opacity: 0.7;
}

.sb-blog__decor--leaf-right {
  right: -10px;
  bottom: 82px;
  width: 154px;
  height: 236px;
  background-image: url('../images/blog/decor/leaf-right.svg');
  opacity: 0.7;
}

.sb-blog__header {
  display: grid;
  grid-template-columns: 136px minmax(0, 840px) 136px;
  align-items: end;
  justify-content: center;
  gap: 18px;
  margin-bottom: 42px;
}

.sb-blog__heading {
  grid-column: 2;
  text-align: center;
}

.sb-blog__eyebrow,
.sb-article-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--sb-coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.sb-blog__title {
  margin: 0;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.25rem, 1.65rem + 2.2vw, 4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.sb-blog__subtitle {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--sb-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 0.92rem + 0.25vw, 1.18rem);
  line-height: 1.55;
}

.sb-blog__all {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(16, 38, 77, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--sb-navy);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.sb-blog__all::after,
.sb-blog-card__link::after,
.sb-back-link::before,
.sb-related-card__link::after {
  content: '';
  width: 22px;
  height: 14px;
  flex: 0 0 auto;
  background: url('../images/blog/decor/arrow-coral.svg') center/contain no-repeat;
}

.sb-blog__all:hover,
.sb-blog__all:focus-visible {
  border-color: var(--sb-coral);
  background: #fff;
  transform: translateY(-1px);
}

.sb-blog__all:focus-visible,
.sb-blog-card__link:focus-visible,
.sb-site-header a:focus-visible,
.sb-article-cta__button:focus-visible,
.sb-related-card__link:focus-visible,
.sb-back-link:focus-visible {
  outline: 3px solid rgba(var(--sb-rot-rgb), 0.28);
  outline-offset: 3px;
}

.sb-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.sb-blog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sb-line);
  border-radius: 18px;
  background: var(--sb-surface);
  box-shadow: var(--sb-shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sb-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sb-shadow);
}

.sb-blog-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8edf3;
}

.sb-blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sb-blog-card:hover .sb-blog-card__image {
  transform: scale(1.025);
}

.sb-blog-card__content {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 24px 24px 22px;
}

.sb-blog-card__category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--sb-coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sb-blog-card__category-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.sb-blog-card__title {
  margin: 0;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 1.2rem + 0.45vw, 1.82rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.sb-blog-card__excerpt {
  margin: 14px 0 0;
  color: var(--sb-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.58;
}

.sb-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.sb-blog-card__link,
.sb-related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sb-navy);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.sb-blog-card__time,
.sb-article-hero__time,
.sb-related-card__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sb-schrift-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.3;
  white-space: nowrap;
}

.sb-blog-card__time::before,
.sb-article-hero__time::before,
.sb-related-card__time::before {
  content: '';
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: url('../images/blog/decor/clock-navy.svg') center/contain no-repeat;
}

/* --------------------------------------------------------------------------
   Shared demo header
   -------------------------------------------------------------------------- */

.sb-site-header {
  border-bottom: 1px solid rgba(16, 38, 77, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.sb-site-header__inner {
  display: flex;
  width: min(100% - 36px, 1180px);
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.sb-site-header__brand {
  color: var(--sb-navy);
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  line-height: 1;
}

.sb-site-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sb-site-header__nav a {
  color: var(--sb-text-dark);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.sb-site-header__nav a:hover {
  color: var(--sb-coral);
}

/* --------------------------------------------------------------------------
   Article page
   -------------------------------------------------------------------------- */

.sb-article-page {
  color: var(--sb-text-dark);
  background: #fff;
}

.sb-article-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 76px 24px 0;
  background: var(--sb-cream);
}

.sb-article-hero::before,
.sb-article-hero::after {
  content: '';
  position: absolute;
  top: 42px;
  width: 150px;
  height: 126px;
  background: url('../images/blog/decor/dots-blue.svg') center/contain no-repeat;
  opacity: 0.86;
  pointer-events: none;
  z-index: 0;
}

.sb-article-hero::before {
  left: 26px;
}

.sb-article-hero::after {
  right: 26px;
}

.sb-article-hero__leaf {
  position: absolute;
  z-index: 0;
  width: 150px;
  height: 244px;
  pointer-events: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.55;
}

.sb-article-hero__leaf--left {
  left: -32px;
  bottom: 92px;
  background-image: url('../images/blog/decor/leaf-left.svg');
}

.sb-article-hero__leaf--right {
  right: -26px;
  bottom: 38px;
  background-image: url('../images/blog/decor/leaf-right.svg');
}

.sb-article-hero__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.sb-article-hero__copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sb-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--sb-text);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.sb-back-link::before {
  transform: rotate(180deg);
}

.sb-article-hero__title {
  margin: 0;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.55rem, 1.7rem + 3vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.sb-article-hero__deck {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--sb-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 0.97rem + 0.35vw, 1.28rem);
  line-height: 1.62;
}

.sb-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 24px;
}

.sb-article-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sb-coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sb-article-hero__image-wrap {
  overflow: hidden;
  margin-top: 48px;
  border-radius: 26px 26px 0 0;
  aspect-ratio: 16 / 8.2;
  background: #e8edf3;
  box-shadow: 0 18px 48px rgba(15, 35, 75, 0.14);
}

.sb-article-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-article-main {
  padding: 72px 24px 88px;
  background: #fff;
}

.sb-article-main__container {
  width: min(100%, 820px);
  margin: 0 auto;
}

.sb-article__lead {
  margin: 0 0 36px;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 1.2rem + 0.6vw, 1.95rem);
  line-height: 1.48;
}

.sb-article-main p,
.sb-article-main li {
  color: var(--sb-text-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.78;
}

.sb-article-main p {
  margin: 0 0 22px;
}

.sb-article-main h2 {
  margin: 58px 0 20px;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 1.65rem + 0.8vw, 2.65rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.sb-article-main h3 {
  margin: 34px 0 12px;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 1.25;
}

.sb-article-main ul,
.sb-article-main ol {
  margin: 0 0 24px;
  padding-left: 1.35rem;
}

.sb-article-main li + li {
  margin-top: 10px;
}

.sb-article-main strong {
  color: var(--sb-navy);
}

.sb-summary-box {
  margin: 0 0 44px;
  padding: 28px 30px;
  border: 1px solid rgba(16, 38, 77, 0.1);
  border-radius: 18px;
  background: #f6f8fb;
}

.sb-summary-box__title {
  margin: 0 0 14px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--sb-coral) !important;
}

.sb-summary-box ul {
  margin-bottom: 0;
}

.sb-checklist {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px !important;
  padding: 0 !important;
  list-style: none;
}

.sb-checklist li {
  position: relative;
  padding: 15px 18px 15px 50px;
  border: 1px solid rgba(16, 38, 77, 0.09);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(15, 35, 75, 0.045);
}

.sb-checklist li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 15px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--sb-rot-rgb), 0.12);
  color: var(--sb-coral-strong);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.sb-callout {
  position: relative;
  overflow: hidden;
  margin: 42px 0;
  padding: 34px 36px 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8f0ec 0%, #f6f7fb 100%);
}

.sb-callout::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 24px;
  width: 58px;
  height: 46px;
  background: url('../images/blog/decor/quote.svg') center/contain no-repeat;
}

.sb-callout__label {
  display: block;
  margin-bottom: 10px;
  color: var(--sb-coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sb-callout p {
  max-width: 650px;
  margin: 0;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  line-height: 1.5;
}

.sb-practice-box {
  margin: 42px 0;
  padding: 30px 32px;
  border-left: 4px solid var(--sb-coral);
  border-radius: 0 16px 16px 0;
  background: #f8fafc;
}

.sb-practice-box__title {
  margin: 0 0 10px !important;
  color: var(--sb-navy) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}

.sb-practice-box p:last-child {
  margin-bottom: 0;
}

.sb-steps {
  display: grid;
  gap: 15px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  counter-reset: sb-step;
}

.sb-steps li {
  position: relative;
  min-height: 58px;
  padding: 14px 16px 14px 68px;
  border: 1px solid rgba(16, 38, 77, 0.09);
  border-radius: 12px;
  background: #fff;
  counter-increment: sb-step;
}

.sb-steps li::before {
  content: counter(sb-step, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral, var(--sb-coral));
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.sb-faq {
  margin-top: 56px;
}

.sb-faq details {
  border-top: 1px solid var(--sb-line);
}

.sb-faq details:last-child {
  border-bottom: 1px solid var(--sb-line);
}

.sb-faq summary {
  position: relative;
  padding: 20px 42px 20px 0;
  color: var(--sb-navy);
  cursor: pointer;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.sb-faq summary::-webkit-details-marker {
  display: none;
}

.sb-faq summary::after {
  content: '+';
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--sb-coral);
  font-size: 1.6rem;
  font-weight: 400;
}

.sb-faq details[open] summary::after {
  content: '–';
}

.sb-faq details p {
  padding: 0 36px 20px 0;
  color: var(--sb-text);
}

/* --------------------------------------------------------------------------
   Article CTA and related articles
   -------------------------------------------------------------------------- */

.sb-article-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 66px 24px;
  background: #fff;
}

.sb-article-cta__box {
  position: relative;
  overflow: hidden;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 56px 52px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 96% 10%, rgba(var(--sb-rot-rgb), 0.08), transparent 30%),
    linear-gradient(100deg, #f6f6f6 0%, #ececec 36%, #e6e6e6 72%, #e0e0e0 100%);
  color: var(--sb-schrift);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 42px rgba(12, 24, 58, 0.10);
}

.sb-article-cta__box::before {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -28px;
  width: 620px;
  height: 164px;
  background: url('../images/blog/decor/waves-cta.svg') center/contain no-repeat;
  opacity: 0.92;
}

.sb-article-cta__box::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 44px;
  width: 150px;
  height: 126px;
  background: url('../images/blog/decor/dots-blue.svg') center/contain no-repeat;
  opacity: 0.25;
}

.sb-article-cta__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.sb-article-cta__eyebrow {
  margin: 0 0 10px;
  color: var(--sb-rot);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sb-article-cta__title {
  margin: 0;
  color: var(--sb-schrift);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 1.55rem + 1.2vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
}

.sb-article-cta__text {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--sb-schrift-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.sb-article-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 26px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sb-rot) 0%, var(--sb-rot) 100%);
  color: #fff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(var(--sb-rot-rgb), 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sb-article-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(var(--sb-rot-rgb), 0.36);
}

.sb-related {
  position: relative;
  overflow: clip;
  padding: 76px 24px 96px;
  background: var(--sb-cream);
}

.sb-related__container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.sb-related__header {
  max-width: 720px;
  margin-bottom: 30px;
}

.sb-related__eyebrow {
  margin: 0 0 10px;
  color: var(--sb-coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sb-related__title {
  margin: 0;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 1.55rem + 1vw, 2.8rem);
  font-weight: 500;
  line-height: 1.14;
}

.sb-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sb-related-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sb-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--sb-shadow-soft);
}

.sb-related-card__media {
  min-height: 210px;
}

.sb-related-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-related-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.sb-related-card__category {
  margin: 0 0 9px;
  color: var(--sb-coral);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sb-related-card__title {
  margin: 0;
  color: var(--sb-navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}

.sb-related-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1060px) {
  .sb-blog__header {
    grid-template-columns: 96px minmax(0, 760px) 96px;
  }

  .sb-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-blog-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 12px));
    justify-self: center;
  }

  .sb-related-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .sb-blog {
    padding: 78px 20px 84px;
  }

  .sb-blog__header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sb-blog__all {
    margin-top: 18px;
  }

  .sb-blog__decor--dots-left,
  .sb-blog__decor--dots-right {
    width: 104px;
    height: 88px;
  }

  .sb-blog__decor--leaf-left,
  .sb-blog__decor--leaf-right {
    width: 110px;
    height: 180px;
    opacity: 0.5;
  }

  .sb-article-hero {
    padding-top: 58px;
  }

  .sb-article-hero::before,
  .sb-article-hero::after {
    width: 104px;
    height: 88px;
  }

  .sb-article-hero__leaf {
    width: 104px;
    height: 170px;
  }

  .sb-article-hero__image-wrap {
    margin-top: 38px;
    aspect-ratio: 3 / 2;
  }

  .sb-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .sb-site-header__inner {
    min-height: 66px;
  }

  .sb-site-header__nav a:not(:last-child) {
    display: none;
  }

  .sb-blog {
    padding: 68px 16px 72px;
  }

  .sb-blog__decor--dots-left {
    top: 18px;
    left: 6px;
  }

  .sb-blog__decor--dots-right {
    top: 82px;
    right: 2px;
  }

  .sb-blog__decor--leaf-left {
    left: -42px;
    top: 340px;
  }

  .sb-blog__decor--leaf-right {
    right: -36px;
    bottom: 40px;
  }

  .sb-blog__header {
    margin-bottom: 32px;
  }

  .sb-blog__title {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .sb-blog__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sb-blog-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .sb-blog-card__content {
    padding: 22px 20px 20px;
  }

  .sb-blog-card__footer {
    align-items: flex-end;
  }

  .sb-article-hero {
    padding: 48px 16px 0;
  }

  .sb-article-hero::before {
    left: 4px;
    top: 18px;
  }

  .sb-article-hero::after {
    right: 0;
    top: 78px;
  }

  .sb-article-hero__leaf--left {
    left: -58px;
    bottom: 70px;
  }

  .sb-article-hero__leaf--right {
    right: -52px;
    bottom: 14px;
  }

  .sb-back-link {
    margin-bottom: 22px;
  }

  .sb-article-hero__title {
    font-size: clamp(2.3rem, 10.7vw, 3.8rem);
  }

  .sb-article-hero__image-wrap {
    margin-top: 32px;
    border-radius: 18px 18px 0 0;
  }

  .sb-article-main {
    padding: 54px 18px 68px;
  }

  .sb-article-main h2 {
    margin-top: 46px;
  }

  .sb-summary-box,
  .sb-practice-box,
  .sb-callout {
    padding: 24px 22px;
  }

  .sb-callout p {
    font-size: 1.28rem;
  }

  .sb-article-cta {
    padding: 48px 12px;
  }

  .sb-article-cta__box {
    padding: 38px 24px 42px;
    border-radius: 22px;
  }

  .sb-article-cta__box::before {
    right: -260px;
    bottom: -38px;
  }

  .sb-article-cta__box::after {
    right: 4px;
    top: 14px;
    width: 100px;
    height: 84px;
  }

  .sb-related {
    padding: 58px 16px 72px;
  }

  .sb-related-card {
    grid-template-columns: 1fr;
  }

  .sb-related-card__media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sb-blog-card,
  .sb-blog-card__image,
  .sb-blog__all,
  .sb-article-cta__button {
    transition: none;
  }
}


/* Artikel-FAQ: Die Fragen erben von der Startseiten-FAQ weisse Pill-Kacheln
   (.sb-faq__item) — dafuer fehlte der Innenabstand: Text klebte links am
   Rand, das Plus rechts an der Kante. */
.sb-article-main .sb-faq summary {
  padding: 20px 56px 20px 22px;
}
.sb-article-main .sb-faq summary::after {
  right: 22px;
}
.sb-article-main .sb-faq details p {
  padding: 0 56px 20px 22px;
}


/* Karten komplett klickbar: Der Haupt-Link bekommt eine unsichtbare
   Overlay-Flaeche ueber der ganzen Karte (Stretched-Link-Muster; ::before,
   weil ::after schon den Pfeil zeichnet). */
.sb-related-card,
.sb-blog-card {
  position: relative;
}
.sb-related-card__link::before,
.sb-blog-card__link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sb-related-card:hover,
.sb-blog-card:hover {
  box-shadow: 0 16px 36px rgba(21, 37, 73, 0.14);
}
