@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,400;1,700&family=Source+Serif+4:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");

.bds-blog-shell {
  padding: 8px 24px 0;
}

.bds-post-shell {
  padding: 8px 24px 80px;
}

.bds-blog-layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.bds-post-layout {
  max-width: 780px;
  margin: 0 auto;
}

.bds-blog-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--site-top-offset) + 24px);
  align-self: flex-start;
  padding-right: 32px;
  border-right: 1px solid #f0f0f0;
}

.bds-blog-sidebar__eyebrow,
.bds-blog-sidebar__note {
  display: none;
}

.bds-blog-sidebar__title {
  margin: 0 0 6px;
  color: #111827;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.bds-blog-sidebar__tagline {
  margin: 0 0 28px;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.5;
}

.bds-blog-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bds-blog-sidebar__link {
  display: block;
  padding: 7px 0;
  color: #6b7280;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bds-blog-sidebar__link:hover,
.bds-blog-sidebar__link:focus-visible,
.bds-blog-sidebar__link.is-active {
  color: #cc0000;
}

.bds-blog-sidebar__link.is-active {
  font-weight: 700;
}

.bds-blog-content {
  flex: 1;
  min-width: 0;
  padding-left: 40px;
}

.bds-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 28px;
}

.bds-blog-grid.is-single-post {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bds-blog-grid.is-single-post .bds-blog-card__media {
  aspect-ratio: auto;
  overflow: hidden;
  background: #f3f4f6;
}

.bds-blog-grid.is-single-post .bds-blog-card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bds-blog-grid.is-single-post .bds-blog-card__title {
  font-size: 1.05rem;
  line-height: 1.3;
}

.bds-blog-grid.is-single-post .bds-blog-card__excerpt {
  margin-top: 6px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.bds-blog-grid.is-single-post .bds-blog-card__meta {
  margin-top: 12px;
  font-size: 0.78rem;
}

.bds-blog-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}

.bds-blog-card:hover {
  transform: translateY(-3px);
}

.bds-blog-card__media-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f4f6;
}

.bds-blog-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fff3f3 0%, #f8fafc 100%);
}

.bds-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.bds-blog-card__media-link:hover .bds-blog-card__media img,
.bds-blog-card__media-link:focus-visible .bds-blog-card__media img {
  transform: scale(1.03);
}

.bds-blog-card__placeholder {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #fff0f0 0%, #f8fafc 100%);
}

.bds-blog-card__placeholder-badge {
  display: inline-flex;
  align-items: center;
  color: #d32626;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bds-blog-card__body {
  padding-top: 14px;
}

.bds-blog-term {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.bds-blog-term--road-test {
  color: #cc0000;
}

.bds-blog-term--tips {
  color: #1d4ed8;
}

.bds-blog-term--nyc {
  color: #15803d;
}

.bds-blog-term--stories {
  color: #c2410c;
}

.bds-blog-term--news {
  color: #7e22ce;
}

.bds-blog-card__title {
  margin: 0;
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.3;
}

.bds-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.bds-blog-card__title a:hover,
.bds-blog-card__title a:focus-visible,
.bds-post__back-link:hover,
.bds-post__back-link:focus-visible,
.bds-post__term:hover,
.bds-post__term:focus-visible {
  color: #d32626;
}

.bds-blog-card__excerpt,
.bds-post__dek {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.55;
}

.bds-blog-card__meta,
.bds-post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 12px;
  color: #9ca3af;
  font-size: 0.78rem;
}

.bds-blog-card__author,
.bds-post__author {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #6b7280;
  font-weight: 500;
}

.bds-blog-card__author-badge,
.bds-post__author-badge,
.bds-post__author-panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #cc0000;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bds-blog-card__author-photo,
.bds-post__author-photo,
.bds-post__author-panel-photo {
  display: block;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.bds-blog-card__author-photo {
  width: 24px;
  height: 24px;
}

.bds-blog-card__author-name {
  color: #6b7280;
  font-weight: 500;
}

.bds-blog-card__meta-sep,
.bds-post__meta-sep {
  color: #d1d5db;
}

.bds-blog-pagination {
  display: flex;
  justify-content: center;
  margin: 56px auto 0;
  padding: 0 24px 24px;
}

.bds-blog-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bds-blog-pagination ul.page-numbers > li {
  margin: 0;
}

.bds-blog-pagination ul.page-numbers > li > .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4b5563;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.bds-blog-pagination ul.page-numbers > li > .page-numbers.current,
.bds-blog-pagination ul.page-numbers > li > .page-numbers:hover,
.bds-blog-pagination ul.page-numbers > li > .page-numbers:focus-visible {
  color: #111827;
}

.bds-blog-pagination ul.page-numbers > li > .page-numbers.current {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.bds-blog-pagination ul.page-numbers > li > .page-numbers.dots {
  border: 0;
  background: transparent;
  color: #94a3b8;
  min-width: auto;
}

.bds-blog-pagination ul.page-numbers > li > .page-numbers.next,
.bds-blog-pagination ul.page-numbers > li > .page-numbers.prev {
  min-width: 28px;
  color: #6b7280;
  font-size: 1.2rem;
}

.bds-blog-empty {
  border: 1px solid #eceef2;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  padding: 2rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
}

.bds-blog-empty__eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #fff1f2;
  color: #d32626;
  padding: 0.48rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bds-blog-empty h2 {
  margin: 0 0 0.75rem;
  color: #111827;
  font-size: 2rem;
  line-height: 1.08;
}

.bds-blog-empty p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.75;
}

.bds-blog-empty__admin {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid #eceef2;
}

.bds-blog-empty__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  background: #d32626;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.bds-post-shell {
  padding-bottom: 96px;
}

.bds-post-layout {
  max-width: 780px;
}

.bds-post__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.bds-post__header {
  max-width: 720px;
  margin: 0 auto;
}

.bds-post__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.bds-post__term {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(211, 38, 38, 0.14);
  background: #fff5f5;
  padding: 0.42rem 0.82rem;
  color: #d32626;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.bds-post__title {
  font-size: clamp(2.45rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.bds-post__meta {
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid #eceef2;
}

.bds-post__author-photo {
  width: 40px;
  height: 40px;
}

.bds-post__author-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.2;
}

.bds-post__author-name {
  color: #374151;
  font-weight: 600;
}

.bds-post__author-role {
  color: #9ca3af;
  font-size: 0.76rem;
  font-weight: 500;
}

.bds-post__featured {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  border-radius: 22px;
  overflow: hidden;
  background: #f6f7fb;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.bds-post__featured img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.bds-post__featured-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(211, 38, 38, 0.15), transparent 30%),
    linear-gradient(135deg, #fff1f2 0%, #ffffff 58%, #f8fafc 100%);
}

.bds-post__featured-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(211, 38, 38, 0.16);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.58rem 1rem;
  color: #d32626;
  font-family: "Outfit", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bds-post__content {
  max-width: 720px;
  margin: 0 auto;
  color: #374151;
  font-size: 1.03rem;
  line-height: 1.9;
}

.bds-post__content > *:first-child {
  margin-top: 0;
}

.bds-post__content h2,
.bds-post__content h3,
.bds-post__content h4 {
  margin: 2.1rem 0 0.85rem;
  color: #111827;
  line-height: 1.16;
}

.bds-post__content h2 {
  font-size: 2rem;
}

.bds-post__content h3 {
  font-size: 1.5rem;
}

.bds-post__content p,
.bds-post__content ul,
.bds-post__content ol,
.bds-post__content blockquote {
  margin: 0 0 1.15rem;
}

.bds-post__content ul,
.bds-post__content ol {
  padding-left: 1.25rem;
}

.bds-post__content li + li {
  margin-top: 0.55rem;
}

.bds-post__content a {
  color: #d32626;
  text-decoration: none;
}

.bds-post__content a:hover,
.bds-post__content a:focus-visible {
  text-decoration: underline;
}

.bds-post__content blockquote {
  border-left: 4px solid #fca5a5;
  padding: 0.35rem 0 0.35rem 1rem;
  color: #4b5563;
}

.bds-post__content img {
  border-radius: 20px;
}

.bds-post__content .pix11-callout {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem;
  border: 1px solid #f9d1d1;
  border-radius: 20px;
  background: #fff7f7;
}

.bds-post__content .pix11-callout-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(211, 38, 38, 0.08);
  color: #cc0000;
  padding: 0.38rem 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bds-post__content .pix11-callout-text h4 {
  margin: 0.75rem 0 0.45rem;
  font-size: 1.22rem;
}

.bds-post__content .pix11-callout-text p:last-child {
  margin-bottom: 0;
}

.bds-post__content .pix11-callout a {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  font-weight: 700;
}

.bds-post__content .stat-highlight {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.bds-post__content .stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #eceef2;
}

.bds-post__content .stat-num {
  color: #111827;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.bds-post__content .stat-label {
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.5;
}

.bds-post__content .warning-box,
.bds-post__content .tips-box {
  margin: 1.5rem 0 2rem;
  padding: 1.3rem;
  border: 1px solid #eceef2;
  border-radius: 20px;
  background: #fafafa;
}

.bds-post__content .warning-box-header,
.bds-post__content .tips-box-header {
  margin-bottom: 0.85rem;
}

.bds-post__content .warning-box h3,
.bds-post__content .tips-box h3 {
  margin: 0;
  font-size: 1.18rem;
}

.bds-post__content .cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.3rem 1.4rem;
  border-radius: 20px;
  background: #111827;
  color: #ffffff;
}

.bds-post__content .cta-banner p {
  margin: 0;
  color: inherit;
}

.bds-post__content .cta-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.bds-post__author-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  max-width: 720px;
  margin-top: 2.2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.4rem;
  border: 1px solid #eceef2;
  border-radius: 22px;
  background: #fafafa;
}

.bds-post__author-panel-photo,
.bds-post__author-panel-badge {
  width: 64px;
  height: 64px;
}

.bds-post__author-panel-copy {
  min-width: 0;
}

.bds-post__author-panel-name {
  margin: 0 0 0.2rem;
  color: #111827;
  font-size: 1.25rem;
  line-height: 1.15;
}

.bds-post__author-panel-role {
  margin: 0 0 0.55rem;
  color: #6b7280;
  font-size: 0.92rem;
  font-weight: 600;
}

.bds-post__author-panel-bio {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}

.bds-post__more {
  max-width: 960px;
  margin-top: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  border-top: 1px solid #eceef2;
}

.bds-post__more-title {
  margin: 0 0 1.35rem;
  color: #111827;
  font-size: 1.7rem;
}

.bds-post__more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.bds-article-shell {
  background: #fafaf8;
  color: #1c1c1c;
}

.bds-article-post {
  width: 100%;
}

.bds-article-shell .bds-breadcrumbs-shell.is-inline,
.bds-article-exact .bds-breadcrumbs-shell.is-inline {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.bds-article-shell .bds-breadcrumbs-shell.is-inline .bds-breadcrumbs,
.bds-article-exact .bds-breadcrumbs-shell.is-inline .bds-breadcrumbs {
  margin-bottom: 0;
}

.bds-article-breadcrumb-bar,
.bds-article-header,
.bds-article-hero,
.bds-article-body,
.bds-article-back-link {
  max-width: 720px;
  margin: 0 auto;
}

.bds-article-breadcrumb-bar {
  padding: 28px 24px 0;
}

.bds-article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  color: #9ca3af;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
}

.bds-article-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bds-article-breadcrumb a:hover,
.bds-article-breadcrumb a:focus-visible {
  color: #1c1c1c;
}

.bds-article-breadcrumb-sep {
  color: #d1d5db;
}

.bds-article-breadcrumb-current {
  color: #6b7280;
}

.bds-article-header {
  padding: 28px 24px 0;
}

.bds-article-cat {
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 3px;
  background: #ffe4e4;
  color: #1c1c1c;
  padding: 4px 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.bds-article-title {
  margin: 0 0 18px;
  color: #1c1c1c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.bds-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #1c1c1c;
  color: #6b7280;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.bds-article-meta-sep {
  color: #d1d5db;
}

.bds-article-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bds-article-meta--no-avatar .bds-article-author {
  gap: 0;
}

.bds-article-author-photo,
.bds-article-author-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  flex-shrink: 0;
}

.bds-article-author-photo {
  object-fit: cover;
}

.bds-article-author-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cc0000;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.bds-article-author-name {
  color: #1c1c1c;
  font-weight: 600;
}

.bds-article-hero {
  padding: 0 24px;
}

.bds-article-hero img,
.bds-article-hero-placeholder {
  width: 100%;
  border-radius: 4px;
}

.bds-article-hero img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.bds-article-hero-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(135deg, #fff0f0 0%, #f8fafc 100%);
}

.bds-article-hero-badge {
  display: inline-flex;
  align-items: center;
  background: #ffe4e4;
  color: #1c1c1c;
  padding: 4px 12px;
  border-radius: 3px;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bds-article-body {
  padding: 40px 24px 0;
  color: #1c1c1c;
  font-family: "Source Serif 4", Georgia, serif;
}

.bds-article-body p {
  margin: 0 0 1.6em;
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.85;
}

.bds-article-body h2,
.bds-article-body h3,
.bds-article-body h4 {
  color: #1c1c1c;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

.bds-article-body h2 {
  margin: 2.5em 0 0.8em;
  padding-top: 0.6em;
  border-top: 1px solid #e5e5e5;
  font-size: 1.65rem;
  font-weight: 800;
}

.bds-article-body h3 {
  margin: 2em 0 0.6em;
  font-size: 1.25rem;
  font-weight: 700;
}

.bds-article-body h4 {
  margin: 1.4em 0 0.5em;
  font-size: 1.1rem;
  font-weight: 700;
}

.bds-article-body a {
  color: #1c1c1c;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #cc0000;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.bds-article-body a:hover,
.bds-article-body a:focus-visible {
  text-decoration-color: #1c1c1c;
}

.bds-article-body ul,
.bds-article-body ol {
  margin: 0 0 1.6em;
  padding-left: 1.4em;
}

.bds-article-body ul {
  list-style: square;
}

.bds-article-body ol {
  list-style: decimal;
}

.bds-article-body li {
  margin-bottom: 0.7em;
  padding-left: 0.3em;
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.75;
}

.bds-article-body strong {
  color: #1c1c1c;
  font-weight: 600;
}

.bds-article-body img {
  max-width: 100%;
  display: block;
}

.bds-article-body blockquote {
  position: relative;
  margin: 2.5em -16px;
  border: 0;
  border-radius: 0;
  background: #1c1c1c;
  color: #ffffff;
  padding: 40px 32px;
  text-align: center;
}

.bds-article-body blockquote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #cc0000;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.6;
}

.bds-article-body blockquote p {
  margin-bottom: 0;
  padding-top: 20px;
  color: #e8e8e8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
}

.bds-article-body .pix11-callout {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin: 2.5em 0;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  color: #1c1c1c;
}

.bds-article-body .pix11-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: #cc0000;
}

.bds-article-body .pix11-callout-img {
  width: 160px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #e5e5e5;
}

.bds-article-body .pix11-callout-img img {
  width: 100%;
  height: auto;
}

.bds-article-body .pix11-callout-text {
  flex: 1;
  min-width: 0;
}

.bds-article-body .pix11-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #cc0000;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bds-article-body .pix11-callout-text h4 {
  margin: 0 0 8px;
  color: #1c1c1c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.bds-article-body .pix11-callout-text p {
  margin-bottom: 14px;
  color: #555555;
  font-size: 0.92rem;
  line-height: 1.65;
}

.bds-article-body .pix11-callout-link,
.bds-article-body .pix11-callout a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #f0c8c8;
  border-radius: 4px;
  background: #fff5f5;
  padding: 8px 16px;
  color: #1c1c1c;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bds-article-body .pix11-callout-link:hover,
.bds-article-body .pix11-callout-link:focus-visible,
.bds-article-body .pix11-callout a:hover,
.bds-article-body .pix11-callout a:focus-visible {
  background: #ffe8e8;
  text-decoration: none;
}

.bds-article-body .warning-box {
  margin: 2.5em 0;
  border: 1px solid #e5e5e5;
  border-left: 5px solid #d97706;
  border-radius: 0 4px 4px 0;
  background: #ffffff;
  padding: 28px 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bds-article-body .warning-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.bds-article-body .warning-box h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bds-article-body .warning-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bds-article-body .warning-box li {
  position: relative;
  padding-left: 22px;
  color: #44403c;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
}

.bds-article-body .warning-box li::before {
  content: "\2022";
  position: absolute;
  left: 4px;
  top: 0;
  color: #d97706;
  font-size: 1.2rem;
  font-weight: 700;
}

.bds-article-body .tips-box {
  margin: 2.5em 0;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bds-article-body .tips-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background: #1c1c1c;
  color: #ffffff;
}

.bds-article-body .tips-box h3 {
  margin: 0;
  color: inherit;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bds-article-body .tips-box ol {
  list-style: none;
  counter-reset: tip;
  padding: 0;
  margin: 0;
}

.bds-article-body .tips-box li {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 28px 16px 68px;
  color: #333333;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.7;
  counter-increment: tip;
}

.bds-article-body .tips-box li:last-child {
  border-bottom: 0;
}

.bds-article-body .tips-box li::before {
  content: counter(tip);
  position: absolute;
  left: 24px;
  top: 16px;
  width: 30px;
  height: 30px;
  color: #cc0000;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bds-article-body .stat-highlight {
  display: flex;
  gap: 0;
  margin: 2.5em 0;
  flex-wrap: wrap;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bds-article-body .stat-card {
  flex: 1;
  min-width: 140px;
  background: #ffffff;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}

.bds-article-body .stat-card:last-child {
  border-right: 0;
}

.bds-article-body .stat-num {
  display: block;
  color: #1c1c1c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
}

.bds-article-body .stat-label {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.bds-article-body .cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 3em 0;
  border-radius: 4px;
  background: #1c1c1c;
  padding: 16px 24px;
  color: #ffffff;
}

.bds-article-body .cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bds-article-body .cta-banner a {
  display: inline-block;
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 4px;
  background: #cc0000;
  padding: 9px 22px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.bds-article-body .cta-banner a:hover,
.bds-article-body .cta-banner a:focus-visible {
  background: #b80000;
  text-decoration: none;
}

.bds-article-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 44px;
  border-top: 2px solid #1c1c1c;
  padding-top: 28px;
}

.bds-article-author-bio-photo,
.bds-article-author-bio-badge {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  flex-shrink: 0;
}

.bds-article-author-bio-photo {
  object-fit: cover;
}

.bds-article-author-bio-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cc0000;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.bds-article-author-bio-name {
  margin: 0 0 2px;
  padding-top: 0;
  border-top: 0;
  color: #1c1c1c;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.bds-article-author-bio-role {
  display: block;
  margin-bottom: 8px;
  color: #cc0000;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bds-article-author-bio-copy p {
  margin: 0;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.65;
}

.bds-article-author-bio--no-photo {
  display: block;
}

.bds-article-author-bio--no-photo .bds-article-author-bio-copy {
  width: 100%;
}

.bds-article-back-link {
  padding: 32px 24px 60px;
}

.bds-article-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1c1c1c;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.bds-article-back-link a:hover,
.bds-article-back-link a:focus-visible {
  gap: 10px;
}

.bds-article-back-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .bds-blog-layout {
    flex-direction: column;
    gap: 28px;
  }

  .bds-blog-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid #eceef2;
  }

  .bds-blog-content {
    padding-left: 0;
  }

  .bds-blog-sidebar__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
  }

  .bds-blog-sidebar__nav::-webkit-scrollbar {
    display: none;
  }

  .bds-blog-sidebar__link {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
    padding: 2px 0;
  }

  .bds-post__content .stat-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .bds-blog-grid,
  .bds-post__more-grid {
    grid-template-columns: 1fr;
  }

  .bds-blog-grid.is-single-post {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bds-article-title {
    font-size: 1.85rem;
  }

  .bds-article-body .stat-highlight {
    flex-direction: column;
  }

  .bds-article-body .stat-card {
    border-right: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .bds-article-body .stat-card:last-child {
    border-bottom: 0;
  }

  .bds-article-body .warning-box ul {
    grid-template-columns: 1fr;
  }

  .bds-article-body .pix11-callout,
  .bds-article-body .cta-banner,
  .bds-article-author-bio {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .bds-blog-shell,
  .bds-post-shell {
    padding: 8px 16px 64px;
  }

  .bds-blog-card__title {
    font-size: 1.18rem;
  }

  .bds-blog-newsletter {
    padding: 56px 16px 0;
  }

  .bds-blog-newsletter__form {
    flex-direction: column;
  }

  .bds-post__title {
    font-size: 2.25rem;
  }

  .bds-post__content {
    font-size: 1rem;
    line-height: 1.82;
  }

  .bds-blog-empty,
  .bds-post__featured {
    border-radius: 22px;
  }

  .bds-post__content .stat-highlight {
    grid-template-columns: 1fr;
  }

  .bds-post__content .cta-banner,
  .bds-post__author-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .bds-article-breadcrumb-bar,
  .bds-article-header,
  .bds-article-hero,
  .bds-article-body,
  .bds-article-back-link {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bds-article-title {
    font-size: 1.55rem;
  }

  .bds-article-hero img {
    aspect-ratio: auto;
    object-fit: initial;
    height: auto;
  }

  .bds-article-body blockquote {
    margin: 2em 0;
    padding: 32px 20px;
  }
}

.bds-article-exact {
  background: #fafaf8;
  color: #1c1c1c;
}

.bds-article-exact-post {
  width: 100%;
}

.bds-article-exact .fade-in-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bds-article-exact .breadcrumb-bar,
.bds-article-exact .article-header,
.bds-article-exact .article-hero,
.bds-article-exact .article-body,
.bds-article-exact .back-link {
  max-width: 720px;
  margin: 0 auto;
}

.bds-article-exact .breadcrumb-bar {
  padding: 28px 24px 0;
}

.bds-article-exact .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: #9ca3af;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bds-article-exact .breadcrumb a {
  color: #6b7280;
  transition: color 0.2s;
  text-decoration: none;
}

.bds-article-exact .breadcrumb a:hover,
.bds-article-exact .breadcrumb a:focus-visible {
  color: #1c1c1c;
}

.bds-article-exact .breadcrumb .sep {
  color: #d1d5db;
}

.bds-article-exact .article-header {
  padding: 28px 24px 0;
}

.bds-article-exact .article-cat {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1c1c1c;
  display: inline-block;
  margin-bottom: 16px;
  background: #ffe4e4;
  padding: 4px 12px;
  border-radius: 3px;
}

.bds-article-exact .article-header h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #1c1c1c;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-family: "Playfair Display", Georgia, serif;
}

.bds-article-exact .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 2px solid #1c1c1c;
}

.bds-article-exact .article-meta--no-avatar {
  gap: 10px;
}

.bds-article-exact .article-meta .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bds-article-exact .author-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cc0000;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.bds-article-exact .article-meta .author-name {
  font-weight: 600;
  color: #1c1c1c;
}

.bds-article-exact .article-meta .dot {
  color: #d1d5db;
}

.bds-article-exact .article-hero {
  padding: 0 24px;
}

.bds-article-exact .article-hero img {
  width: 100%;
  border-radius: 4px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.bds-article-exact .article-image-caption {
  font-size: 13px;
  color: #6b7280;
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.bds-article-exact .caption-line {
  width: 30px;
  height: 1px;
  background: #d1d5db;
  display: inline-block;
  flex: 0 0 auto;
  margin-top: 0.7em;
}

.bds-article-exact .article-image-caption__text {
  min-width: 0;
}

.bds-article-exact .article-image-caption strong {
  color: #111827;
}

.bds-article-exact .info-callout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 28px;
  margin: 2.5em 0;
  color: #1c1c1c;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bds-article-exact .info-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: #cc0000;
}

.bds-article-exact .info-callout-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: #ffe4e4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bds-article-exact .info-callout-icon svg {
  width: 28px;
  height: 28px;
  color: #cc0000;
}

.bds-article-exact .info-callout-text {
  flex: 1;
  min-width: 0;
}

.bds-article-exact .info-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cc0000;
  margin-bottom: 10px;
}

.bds-article-exact .info-callout-badge svg {
  width: 15px;
  height: 15px;
}

.bds-article-exact .info-callout-text p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 0;
}

.bds-article-exact .article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.bds-article-exact .article-body p {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 1.6em;
  line-height: 1.85;
}

.bds-article-exact .article-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #1c1c1c;
  margin: 2.5em 0 0.8em;
  padding-top: 0.6em;
  border-top: 1px solid #e5e5e5;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

.bds-article-exact .article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 2em 0 0.6em;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

.bds-article-exact .article-body h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1c1c1c;
  line-height: 1.2;
}

.bds-article-exact .article-body a {
  color: #1c1c1c;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #cc0000;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.2s;
}

.bds-article-exact .article-body a:hover,
.bds-article-exact .article-body a:focus-visible {
  text-decoration-color: #1c1c1c;
}

.bds-article-exact .article-body ul,
.bds-article-exact .article-body ol {
  padding-left: 1.4em;
  margin-bottom: 1.6em;
}

.bds-article-exact .article-body ul {
  list-style: square;
}

.bds-article-exact .article-body ol {
  list-style: decimal;
}

.bds-article-exact .article-body li {
  font-size: 1.05rem;
  color: #333333;
  margin-bottom: 0.7em;
  line-height: 1.75;
  padding-left: 0.3em;
}

.bds-article-exact .article-body strong {
  color: #1c1c1c;
  font-weight: 600;
}

.bds-article-exact .article-body blockquote {
  border: none;
  padding: 40px 32px;
  margin: 2.5em -16px;
  background: #1c1c1c;
  border-radius: 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.bds-article-exact .article-body blockquote::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: #cc0000;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.6;
}

.bds-article-exact .article-body blockquote p {
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #e8e8e8;
  line-height: 1.7;
  padding-top: 20px;
}

.bds-article-exact .pix11-callout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 28px;
  margin: 2.5em 0;
  color: #1c1c1c;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bds-article-exact .pix11-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: #cc0000;
}

.bds-article-exact .pix11-callout-img {
  width: 160px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #e5e5e5;
}

.bds-article-exact .pix11-callout-img img {
  width: 100%;
  height: auto;
  display: block;
}

.bds-article-exact .pix11-callout-img .author-avatar-fallback {
  width: 100%;
  min-height: 160px;
  font-size: 2rem;
}

.bds-article-exact .pix11-callout-text {
  flex: 1;
  min-width: 0;
}

.bds-article-exact .pix11-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cc0000;
  margin-bottom: 10px;
}

.bds-article-exact .pix11-callout-badge svg {
  width: 15px;
  height: 15px;
}

.bds-article-exact .pix11-callout-text p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 14px;
}

.bds-article-exact .pix11-callout-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1c1c1c;
  background: #fff5f5;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s;
  text-decoration: none;
  border: 1px solid #f0c8c8;
}

.bds-article-exact .pix11-callout-link:hover,
.bds-article-exact .pix11-callout-link:focus-visible {
  background: #ffe8e8;
  text-decoration: none;
}

.bds-article-exact .pix11-callout-link svg {
  width: 15px;
  height: 15px;
}

.bds-article-exact .warning-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: 5px solid #d97706;
  border-radius: 0 4px 4px 0;
  padding: 28px 28px 28px 24px;
  margin: 2.5em 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bds-article-exact .warning-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.bds-article-exact .warning-box-header svg {
  width: 26px;
  height: 26px;
  color: #d97706;
  flex-shrink: 0;
}

.bds-article-exact .warning-box-header h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
  letter-spacing: -0.01em;
}

.bds-article-exact .warning-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.bds-article-exact .warning-box li {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #44403c;
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}

.bds-article-exact .warning-box li::before {
  content: "\2022";
  position: absolute;
  left: 4px;
  top: 0;
  color: #d97706;
  font-size: 1.2rem;
  font-weight: 700;
}

.bds-article-exact .tips-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 0;
  margin: 2.5em 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bds-article-exact .tips-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background: #1c1c1c;
  color: #fff;
}

.bds-article-exact .tips-box-header svg {
  width: 24px;
  height: 24px;
  color: #cc0000;
  flex-shrink: 0;
}

.bds-article-exact .tips-box-header h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.bds-article-exact .tips-box ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tip;
}

.bds-article-exact .tips-box li {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.98rem;
  color: #333333;
  padding: 16px 28px 16px 68px;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
  counter-increment: tip;
}

.bds-article-exact .tips-box li:last-child {
  border-bottom: none;
}

.bds-article-exact .tips-box li::before {
  content: counter(tip);
  position: absolute;
  left: 24px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: none;
  color: #cc0000;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.bds-article-exact .stat-highlight {
  display: flex;
  gap: 0;
  margin: 2.5em 0;
  flex-wrap: wrap;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bds-article-exact .stat-card {
  flex: 1;
  min-width: 140px;
  background: #fff;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}

.bds-article-exact .stat-card:last-child {
  border-right: none;
}

.bds-article-exact .stat-card .stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1c1c1c;
  display: block;
  line-height: 1.1;
}

.bds-article-exact .stat-card .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  color: #6b7280;
  margin-top: 8px;
  display: block;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.bds-article-exact .article-inline-img {
  margin: 28px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.bds-article-exact .article-inline-img img {
  width: 100%;
  display: block;
}

.bds-article-exact .article-inline-img figcaption {
  padding: 10px 16px;
  font-size: 12px;
  color: #888;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  line-height: 1.55;
}

.bds-article-exact .step-cards {
  margin: 28px 0;
}

.bds-article-exact .step-card {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: border-color 0.18s ease;
}

.bds-article-exact .step-card:hover {
  border-color: #ddd;
}

.bds-article-exact .step-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #cc0000;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.bds-article-exact .step-card h3 {
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #1c1c1c;
}

.bds-article-exact .step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: #444;
}

.bds-article-exact .info-box {
  margin: 28px 0;
  padding: 22px 26px;
  border: 1px solid #f5e6a3;
  border-radius: 12px;
  background: #fef9e7;
}

.bds-article-exact .info-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.bds-article-exact .info-box-header h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8b6914;
}

.bds-article-exact .info-box ul {
  margin: 0;
  padding-left: 20px;
}

.bds-article-exact .info-box li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.7;
  color: #5a4a12;
}

.bds-article-exact .cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #1c1c1c;
  border-radius: 4px;
  padding: 16px 24px;
  margin: 3em 0;
  color: #fff;
}

.bds-article-exact .cta-banner p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
}

.bds-article-exact .cta-banner a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  background: #cc0000;
  padding: 9px 22px;
  border-radius: 4px;
  transition: background 0.2s;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.bds-article-exact .cta-banner a:hover,
.bds-article-exact .cta-banner a:focus-visible {
  background: #b80000;
  text-decoration: none;
}

.bds-article-exact .author-bio {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-top: 2px solid #1c1c1c;
  padding-top: 28px;
  margin-top: 44px;
}

.bds-article-exact .author-bio-img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.bds-article-exact .author-bio-text h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #1c1c1c;
}

.bds-article-exact .author-bio-text .author-role {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: #cc0000;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bds-article-exact .author-bio-text p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

.bds-article-exact .author-bio--no-photo {
  display: block;
}

.bds-article-exact .author-bio--no-photo .author-bio-text {
  width: 100%;
}

.bds-article-exact .back-link {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

.bds-article-exact .back-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1c1c1c;
  transition: gap 0.2s;
  text-decoration: none;
}

.bds-article-exact .back-link a:hover,
.bds-article-exact .back-link a:focus-visible {
  gap: 10px;
}

.bds-article-exact .back-link a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .bds-article-exact .info-callout {
    flex-direction: column;
  }

  .bds-article-exact .pix11-callout {
    flex-direction: column;
  }

  .bds-article-exact .pix11-callout-img {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .bds-article-exact .article-header h1 {
    font-size: 1.85rem;
  }

  .bds-article-exact .step-card {
    padding: 20px 20px;
  }

  .bds-article-exact .stat-highlight {
    flex-direction: column;
  }

  .bds-article-exact .stat-card {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .bds-article-exact .stat-card:last-child {
    border-bottom: none;
  }

  .bds-article-exact .warning-box ul {
    grid-template-columns: 1fr;
  }

  .bds-article-exact .author-bio,
  .bds-article-exact .cta-banner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .bds-article-exact .article-header h1 {
    font-size: 1.55rem;
  }

  .bds-article-exact .pix11-callout {
    padding: 20px;
  }

  .bds-article-exact .article-body blockquote {
    margin: 2em 0;
    padding: 32px 20px;
  }
}

@media (max-width: 640px) {
  .bds-article-shell .bds-breadcrumbs-shell.is-inline,
  .bds-article-exact .bds-breadcrumbs-shell.is-inline,
  .bds-article-exact .breadcrumb-bar,
  .bds-article-exact .article-header,
  .bds-article-exact .article-hero,
  .bds-article-exact .article-body,
  .bds-article-exact .back-link {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bds-article-exact .article-hero img {
    aspect-ratio: unset;
    object-fit: unset;
    height: auto;
  }
}
