:root {
  --sbv2-black: #111;
  --sbv2-dark: #0d0d0d;
  --sbv2-white: #fff;
  --sbv2-cream: #f7f4ef;
  --sbv2-border: #e5e2dc;
  --sbv2-green: #1f5c2e;
  --sbv2-muted: #666;
  --sbv2-radius-sm: 6px;
  --sbv2-radius-md: 10px;
  --sbv2-radius-lg: 18px;
  --sbv2-font: Roboto, Arial, sans-serif;
  --sbv2-display: "Roboto Condensed", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; }
.sbv2 {
  min-height: 100vh;
  background: var(--sbv2-white);
  color: var(--sbv2-black);
  font-family: var(--sbv2-font);
  line-height: 1.6;
}
.sbv2 a { color: inherit; text-decoration: none; }
.sbv2 img { display: block; max-width: 100%; }
.sbv2-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.sbv2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--sbv2-border);
  backdrop-filter: blur(12px);
}
.sbv2-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sbv2-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}
.sbv2-brand-mark {
  width: 26px;
  height: 26px;
  display: inline-block;
  background: var(--sbv2-black);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.sbv2-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sbv2-muted);
}
.sbv2-nav a:hover { color: var(--sbv2-black); }
.sbv2-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--sbv2-dark);
}
.sbv2-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sbv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,.28), rgba(0,0,0,.08));
}
.sbv2-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 56px;
  color: var(--sbv2-white);
}
.sbv2 .sbv2-hero-content,
.sbv2 .sbv2-hero-content h1,
.sbv2 .sbv2-hero-content p,
.sbv2 .sbv2-hero-content .sbv2-label,
.sbv2 .sbv2-hero-content .sbv2-back {
  color: var(--sbv2-white) !important;
}
.sbv2-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}
.sbv2-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-family: var(--sbv2-display);
  font-size: clamp(38px, 8vw, 78px);
  line-height: .94;
  font-weight: 800;
  letter-spacing: 0;
}
.sbv2-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.sbv2-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,.7);
  font-weight: 700;
}
.sbv2-section { padding: 56px 0 72px; }
.sbv2-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  margin-bottom: 64px;
  background: var(--sbv2-cream);
  border-radius: var(--sbv2-radius-lg);
  overflow: hidden;
}
.sbv2-featured-media {
  min-height: 360px;
  background: #eee;
}
.sbv2-featured-media img,
.sbv2-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sbv2-featured-body {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sbv2-featured-body span,
.sbv2-card-body span {
  margin-bottom: 10px;
  color: var(--sbv2-black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sbv2 .sbv2-featured,
.sbv2 .sbv2-featured h2,
.sbv2 .sbv2-card,
.sbv2 .sbv2-card h3,
.sbv2 .sbv2-grid-head h2,
.sbv2 .sbv2-related h2 {
  color: var(--sbv2-black) !important;
}
.sbv2-featured h2,
.sbv2-grid-head h2,
.sbv2-related h2 {
  margin: 0;
  font-family: var(--sbv2-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}
.sbv2-featured h2 { font-size: clamp(28px, 4vw, 42px); }
.sbv2-featured p {
  margin: 18px 0 24px;
  color: var(--sbv2-muted);
}
.sbv2-featured b,
.sbv2-card small {
  color: var(--sbv2-muted);
  font-size: 13px;
}
.sbv2-grid-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.sbv2-grid-head h2,
.sbv2-related h2 { font-size: 32px; }
.sbv2-grid-head span { color: var(--sbv2-muted); font-size: 14px; }
.sbv2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.sbv2-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.sbv2-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--sbv2-radius-md);
  background: var(--sbv2-cream);
}
.sbv2-card-body {
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sbv2-card h3 {
  margin: 0 0 10px;
  font-family: var(--sbv2-display);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}
.sbv2-card p {
  margin: 0 0 14px;
  color: var(--sbv2-muted);
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sbv2-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 72px;
  padding: 64px 0 88px;
}
.sbv2-article {
  min-width: 0;
  color: #262626;
  font-size: 17px;
  line-height: 1.78;
}
.sbv2-article > div {
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.sbv2-content {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.sbv2-article h2 {
  margin: 44px 0 16px !important;
  font-family: var(--sbv2-display);
  font-size: 31px;
  line-height: 1.12 !important;
  color: var(--sbv2-black) !important;
  scroll-margin-top: 96px;
}
.sbv2-article h3 {
  margin: 30px 0 12px !important;
  font-family: var(--sbv2-display);
  font-size: 22px;
  color: var(--sbv2-black) !important;
}
.sbv2-article p,
.sbv2-article li {
  font-size: 17px;
  line-height: 1.78;
}
.sbv2-article a {
  color: var(--sbv2-black) !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(17,17,17,.32);
  text-underline-offset: 4px;
}
.sbv2-article a:not(.sbv2-button-link),
.sbv2-article li a {
  display: inline !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--sbv2-black) !important;
  box-shadow: none !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-decoration-color: rgba(17,17,17,.32) !important;
  text-underline-offset: 4px;
}
.sbv2-article a:not(.sbv2-button-link):hover,
.sbv2-article li a:hover {
  background: var(--sbv2-cream) !important;
  text-decoration-color: var(--sbv2-black) !important;
}
.sbv2-article p:has(> a.sbv2-button-link) {
  text-align: center;
  margin: 34px 0 !important;
}
.sbv2-article p > a.sbv2-button-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 22px !important;
  border-radius: var(--sbv2-radius-sm) !important;
  background: var(--sbv2-black) !important;
  color: var(--sbv2-white) !important;
  text-decoration: none !important;
}
.sbv2-article figure {
  margin: 38px 0 !important;
}
.sbv2-figure {
  margin: 38px 0;
}
.sbv2-article figure img {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: var(--sbv2-radius-md) !important;
}
.sbv2-article figcaption {
  color: var(--sbv2-muted) !important;
  font-size: 14px !important;
}
.sbv2-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border-radius: var(--sbv2-radius-md);
}
.sbv2-article table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 15px;
}
.sbv2-article th,
.sbv2-article td {
  padding: 12px 14px !important;
  border: 1px solid var(--sbv2-border) !important;
}
.sbv2-article th {
  background: var(--sbv2-cream) !important;
  color: var(--sbv2-black) !important;
}
.sbv2-tldr {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--sbv2-black);
  border-radius: 0 var(--sbv2-radius-md) var(--sbv2-radius-md) 0;
  background: var(--sbv2-cream);
  color: var(--sbv2-black);
}
.sbv2-tldr strong {
  color: var(--sbv2-black);
}
.sbv2-aside {
  position: static;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.sbv2-toc,
.sbv2-product-panel {
  padding: 24px;
  background: var(--sbv2-cream);
  border-radius: var(--sbv2-radius-lg);
}
.sbv2-toc {
  flex: 0 0 auto;
  max-height: min(42vh, 380px);
  overflow-y: auto;
  overscroll-behavior: contain;
  position: relative;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
.sbv2-toc strong,
.sbv2-product-panel-head strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sbv2-black);
  font-family: var(--sbv2-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}
.sbv2-toc a {
  display: block;
  padding: 7px 0;
  border-top: 1px solid rgba(17,17,17,.08);
  color: var(--sbv2-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.sbv2-toc a:hover {
  color: var(--sbv2-black);
}
.sbv2-product-panel {
  flex: 0 0 auto;
  display: block;
  overflow: visible;
}
.sbv2-product-panel-head p {
  margin: 8px 0 0;
  color: var(--sbv2-muted);
  font-size: 13px;
}
.sbv2-product-mini-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
  overflow: visible;
  padding-right: 0;
}
.sbv2-product-mini-card {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(17,17,17,.09);
  border-radius: var(--sbv2-radius-md);
  background: var(--sbv2-white);
  min-height: 0;
}
.sbv2-product-mini-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 0;
  background: #eee;
}
.sbv2-product-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sbv2-product-mini-media span {
  position: absolute;
  top: 7px;
  left: 7px;
  max-width: calc(100% - 14px);
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--sbv2-black);
  color: var(--sbv2-white);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.sbv2-product-mini-body {
  min-width: 0;
  padding: 14px;
}
.sbv2-product-mini-body small {
  display: block;
  margin-bottom: 4px;
  color: var(--sbv2-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sbv2-product-mini-body h3 {
  margin: 0 0 6px;
  color: var(--sbv2-black);
  font-family: var(--sbv2-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}
.sbv2-product-mini-body ul {
  padding: 0;
  margin: 0 0 8px;
  list-style: none;
}
.sbv2-product-mini-body li {
  color: var(--sbv2-muted);
  font-size: 13px;
  line-height: 1.35;
}
.sbv2-product-mini-body p {
  margin: 0;
  color: var(--sbv2-black);
  font-size: 13px;
}
.sbv2-product-mini-body strong {
  font-weight: 900;
}
.sbv2-product-mini-body s {
  color: var(--sbv2-muted);
  font-size: 11px;
}
.sbv2-cta {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--sbv2-radius-sm);
  background: var(--sbv2-black);
  color: var(--sbv2-white) !important;
  font-weight: 800;
  text-decoration: none !important;
}
.sbv2-related {
  padding: 56px 0 72px;
  background: var(--sbv2-cream);
}
.sbv2-related h2 { margin-bottom: 28px; }
.sbv2-more-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--sbv2-border);
  border-radius: var(--sbv2-radius-md);
  background: var(--sbv2-white);
  color: var(--sbv2-black);
}
.sbv2-more-card-inner {
  min-height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sbv2-more-card-inner span {
  margin-bottom: 14px;
  color: var(--sbv2-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sbv2-more-card-inner h3 {
  color: var(--sbv2-black);
}
.sbv2-more-card-inner p {
  color: var(--sbv2-muted);
  -webkit-line-clamp: unset;
}
.sbv2-more-card-inner b {
  margin-top: 12px;
  color: var(--sbv2-black);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.sbv2-home-promo {
  padding: 44px 0;
  background: var(--sbv2-cream);
}
.sbv2-gallery-promo-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 38px;
  align-items: center;
}
.sbv2-gallery-promo-copy span,
.sbv2-home-products-head span,
.sbv2-home-product-body small {
  display: block;
  margin-bottom: 12px;
  color: var(--sbv2-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sbv2-gallery-promo-copy h2,
.sbv2-home-products-head h2,
.sbv2-home-product-card h3 {
  margin: 0;
  color: var(--sbv2-black);
  font-family: var(--sbv2-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}
.sbv2-gallery-promo-copy h2,
.sbv2-home-products-head h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  max-width: 620px;
}
.sbv2-gallery-promo-copy p,
.sbv2-home-products-head p {
  max-width: 520px;
  margin: 14px 0 22px;
  color: var(--sbv2-muted);
  font-size: 16px;
  line-height: 1.68;
}
.sbv2-promo-button,
.sbv2-home-products-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--sbv2-radius-sm);
  background: var(--sbv2-black);
  color: var(--sbv2-white) !important;
  font-weight: 900;
  text-decoration: none !important;
}
.sbv2-promo-button:hover,
.sbv2-home-products-cta:hover,
.sbv2-cta:hover {
  color: var(--sbv2-white) !important;
  text-decoration: none !important;
}
.sbv2-gallery-promo-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 112px;
  gap: 10px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.sbv2-gallery-promo-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--sbv2-radius-md);
  background: var(--sbv2-white);
}
.sbv2-gallery-promo-photo {
  box-shadow: 0 10px 26px rgba(17,17,17,.08);
}
.sbv2-home-products {
  padding: 72px 0 84px;
}
.sbv2-home-products-head {
  margin-bottom: 30px;
}
.sbv2-home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.sbv2-home-product-card {
  overflow: hidden;
  border: 1px solid var(--sbv2-border);
  border-radius: var(--sbv2-radius-md);
  background: var(--sbv2-white);
}
.sbv2-home-product-media {
  position: relative;
  overflow: hidden;
  background: var(--sbv2-cream);
}
.sbv2-home-product-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.sbv2-product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
}
.sbv2-product-mini-media .sbv2-product-badges span,
.sbv2-home-product-media .sbv2-product-badges span {
  position: static;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sbv2-black);
  color: var(--sbv2-white);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.sbv2-product-mini-media .sbv2-product-badges span + span,
.sbv2-home-product-media .sbv2-product-badges span + span {
  background: rgba(255,255,255,.94);
  color: var(--sbv2-black);
  border: 1px solid rgba(17,17,17,.12);
}
.sbv2-product-mini-media .sbv2-product-badges .sbv2-product-status-sold_out,
.sbv2-home-product-media .sbv2-product-badges .sbv2-product-status-sold_out {
  background: var(--sbv2-white);
  color: var(--sbv2-black);
  border: 1px solid var(--sbv2-black);
}
.sbv2-home-product-body {
  padding: 20px;
}
.sbv2-home-product-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
}
.sbv2-home-product-card ul {
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
}
.sbv2-home-product-card li {
  color: var(--sbv2-muted);
  font-size: 14px;
  line-height: 1.45;
}
.sbv2-home-product-card p {
  margin: 0;
  color: var(--sbv2-black);
  font-size: 14px;
}
.sbv2-home-product-card strong {
  font-weight: 900;
}
.sbv2-home-product-card s {
  color: var(--sbv2-muted);
  font-size: 12px;
}
.sbv2-home-products-cta {
  margin-top: 28px;
}
.sbv2-footer {
  padding: 28px 0;
  background: var(--sbv2-dark);
  color: var(--sbv2-white);
}
.sbv2-footer .sbv2-container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.68);
}
.sbv2-footer strong { color: var(--sbv2-white); }

@media (max-width: 1100px) {
  .sbv2-nav { display: none; }
  .sbv2-featured,
  .sbv2-article-shell,
  .sbv2-gallery-promo-inner { grid-template-columns: 1fr; }
  .sbv2-featured-media { min-height: 240px; }
  .sbv2-grid,
  .sbv2-home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sbv2-gallery-promo-media {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 104px;
  }
  .sbv2-aside {
    position: static;
    display: grid;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    gap: 18px;
  }
  .sbv2-toc {
    max-height: none;
    overflow: visible;
  }
  .sbv2-product-panel {
    min-height: 0;
    overflow: visible;
  }
  .sbv2-product-mini-list {
    overflow: visible;
    padding-right: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sbv2-product-mini-card {
    display: block;
    min-height: 0;
    padding: 0;
  }
  .sbv2-product-mini-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
    border-radius: 0;
  }
  .sbv2-product-mini-body { padding: 14px; }
}

@media (max-width: 620px) {
  .sbv2-container { width: min(100% - 24px, 1180px); }
  .sbv2-header { height: 58px; padding: 0 14px; }
  .sbv2-brand { font-size: 20px; }
  .sbv2-hero { min-height: 360px; }
  .sbv2-hero-content { padding: 56px 0 34px; }
  .sbv2-hero h1 { font-size: clamp(34px, 12vw, 52px); }
  .sbv2-section { padding: 34px 0 54px; }
  .sbv2-home-promo { padding: 38px 0; }
  .sbv2-home-products { padding: 48px 0 58px; }
  .sbv2-featured { margin-bottom: 44px; border-radius: var(--sbv2-radius-md); }
  .sbv2-featured-body { padding: 24px; }
  .sbv2-grid-head { align-items: flex-start; flex-direction: column; }
  .sbv2-grid,
  .sbv2-home-product-grid { grid-template-columns: 1fr; gap: 32px; }
  .sbv2-card h3 { font-size: 24px; }
  .sbv2-gallery-promo-copy h2,
  .sbv2-home-products-head h2 { font-size: 34px; }
  .sbv2-promo-button,
  .sbv2-home-products-cta { width: 100%; }
  .sbv2-gallery-promo-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 108px;
    gap: 10px;
  }
  .sbv2-gallery-promo-media img {
    min-height: 0;
    aspect-ratio: auto;
  }
  .sbv2-article-shell {
    display: flex;
    flex-direction: column;
    padding: 38px 0 58px;
    gap: 32px;
  }
  .sbv2-article { order: 0; }
  .sbv2-aside { display: contents; }
  .sbv2-toc { order: -1; }
  .sbv2-product-panel { order: 1; }
  .sbv2-toc,
  .sbv2-product-panel { padding: 20px; border-radius: var(--sbv2-radius-md); }
  .sbv2-product-mini-list { grid-template-columns: 1fr; }
  .sbv2-product-mini-card {
    display: block;
    padding: 0;
  }
  .sbv2-product-mini-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
    border-radius: 0;
  }
  .sbv2-product-mini-body { padding: 14px; }
  .sbv2-article { font-size: 16px; line-height: 1.72; }
  .sbv2-article h2 { font-size: 27px; }
  .sbv2-article p,
  .sbv2-article li { font-size: 16px; line-height: 1.72; }
  .sbv2-article p > a.sbv2-button-link { width: 100%; }
  .sbv2-footer .sbv2-container { flex-direction: column; }
}
