/* Responsive overrides belong to this block, not its ancestor. */
.bb-block {
  --bb-padding-top-tablet: initial;
  --bb-padding-right-tablet: initial;
  --bb-padding-bottom-tablet: initial;
  --bb-padding-left-tablet: initial;
  --bb-margin-top-tablet: initial;
  --bb-margin-bottom-tablet: initial;
  --bb-height-tablet: initial;
  --bb-gap-tablet: initial;
  --bb-columns-tablet: initial;
  --bb-align-tablet: initial;
  --bb-vertical-tablet: initial;
  --bb-padding-top-mobile: initial;
  --bb-padding-right-mobile: initial;
  --bb-padding-bottom-mobile: initial;
  --bb-padding-left-mobile: initial;
  --bb-margin-top-mobile: initial;
  --bb-margin-bottom-mobile: initial;
  --bb-height-mobile: initial;
  --bb-gap-mobile: initial;
  --bb-columns-mobile: initial;
  --bb-align-mobile: initial;
  --bb-vertical-mobile: initial;
}
.bb-block {
  --bb-background: transparent;
  --bb-color: var(--ink, #14213a);
  --bb-radius: 0px;
  --bb-border-width: 0px;
  --bb-border-color: #b89b66;
  --bb-fit: cover;
  --bb-ratio: 3/2;
  --bb-focal-x: 50%;
  --bb-focal-y: 50%;
  --bb-focal-mobile-x: 50%;
  --bb-focal-mobile-y: 50%;
  --bb-height: 520px;
  --bb-gap: 24px;
  --bb-columns: 3;
  --bb-align: left;
  --bb-vertical: center;
  --bb-padding-top: 40px;
  --bb-padding-right: 24px;
  --bb-padding-bottom: 40px;
  --bb-padding-left: 24px;
  --bb-margin-top: 0px;
  --bb-margin-bottom: 0px;
  --bb-content-width: 660px;
  --bb-split-width: 50%;
  --bb-button-background: #0b1830;
  --bb-button-color: #fff;
  --bb-button-border: #b89b66;
  --bb-button-radius: 0px;
  --bb-button-padding-x: 24px;
  --bb-button-padding-y: 14px;
  --bb-panel-padding: 0px;
  --bb-title-size: 44px;
  --bb-body-size: 17px;
  --bb-eyebrow-size: 12px;
  --bb-button-size: 13px;
  --bb-title-font: var(--serif, Georgia, serif);
  --bb-title-weight: 400;
  --bb-body-weight: 400;
  --bb-title-line-height: 1.15;
  --bb-body-line-height: 1.7;
  --bb-title-letter-spacing: 0px;
  --bb-body-letter-spacing: 0px;
  --bb-title-transform: none;
  --bb-body-transform: none;
  --bb-title-font-style: normal;
  --bb-body-font-style: normal;
  --bb-title-decoration: none;
  --bb-body-decoration: none;
  --bb-title-color: inherit;
  --bb-body-color: inherit;
  --bb-title-align: inherit;
  --bb-body-align: inherit;
  --bb-eyebrow-color: inherit;
  --bb-eyebrow-letter-spacing: 2px;
  --bb-eyebrow-transform: uppercase;
  --bb-eyebrow-weight: 600;
  --bb-current-gap: var(--bb-gap);
  --bb-current-columns: var(--bb-columns);
  --bb-current-height: var(--bb-height);
  --bb-current-align: var(--bb-align);
  --bb-current-vertical: var(--bb-vertical);
  box-sizing: border-box;
  position: relative;
  min-width: 0;
  color: var(--bb-color);
  background: var(--bb-background);
  padding: var(--bb-padding-top) var(--bb-padding-right)
    var(--bb-padding-bottom) var(--bb-padding-left);
  margin-top: var(--bb-margin-top);
  margin-bottom: var(--bb-margin-bottom);
  border: var(--bb-border-width) var(--bb-border-style, solid)
    var(--bb-border-color);
  border-radius: var(--bb-radius);
  text-align: var(--bb-current-align);
  isolation: isolate;
  overflow-wrap: anywhere;
}
.bb-block * {
  box-sizing: border-box;
}
.bb-width-boxed {
  width: calc(100% - 64px);
  max-width: var(--width, 1360px);
  margin-left: auto;
  margin-right: auto;
}
.bb-width-wide {
  width: calc(100% - 32px);
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}
.bb-width-full {
  width: 100%;
  max-width: none;
}
.bb-column .bb-block {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.bb-column {
  width: 100%;
  max-width: 100%;
  --bb-padding-top: 0px;
  --bb-padding-right: 0px;
  --bb-padding-bottom: 0px;
  --bb-padding-left: 0px;
}
.bb-column-content {
  display: flex;
  flex-direction: column;
  gap: var(--bb-current-gap);
  height: 100%;
  justify-content: var(--bb-current-vertical);
}
.bb-column-content > .section,
.bb-column-content > .split-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 24px;
}
.bb-column-content > .hero {
  min-height: 320px !important;
}
.bb-column-content > .hero .hero-copy {
  margin: 0;
  padding: 32px;
  width: 100%;
}
.bb-column-content .info-columns,
.bb-column-content .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bb-row {
  display: grid;
  grid-template-columns: var(--bb-tracks, minmax(0, 1fr));
  gap: var(--bb-current-gap);
  align-items: stretch;
}
.bb-section > .bb-copy {
  margin-bottom: var(--bb-current-gap);
}
.bb-picture {
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: inherit;
}
.bb-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--bb-fit);
  object-position: var(--bb-focal-x) var(--bb-focal-y);
  transition: transform 0.5s ease;
  max-width: 100%;
}
.bb-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--bb-content-width);
  padding: var(--bb-panel-padding);
  background: var(--bb-panel, transparent);
  border-radius: var(--bb-radius);
  margin-left: 0;
}
.bb-block:has(> .bb-copy):where(
    .bb-text,
    .bb-gallery,
    .bb-masonry,
    .bb-carousel,
    .bb-collage,
    .bb-logos,
    .bb-compare,
    .bb-hotspots,
    .bb-accordion
  )
  > .bb-copy {
  margin-bottom: 28px;
}
.bb-copy:last-child:not(:first-child) {
  margin-top: 0;
}
.bb-eyebrow {
  font-family: var(--bb-eyebrow-font, Arial, sans-serif);
  font-size: var(--bb-eyebrow-size);
  font-weight: var(--bb-eyebrow-weight);
  line-height: var(--bb-eyebrow-line-height, 1.5);
  letter-spacing: var(--bb-eyebrow-letter-spacing);
  text-transform: var(--bb-eyebrow-transform);
  font-style: var(--bb-eyebrow-font-style, normal);
  text-decoration: var(--bb-eyebrow-decoration, none);
  color: var(--bb-eyebrow-color);
  text-align: var(--bb-eyebrow-align, inherit);
  margin: 0 0 16px;
}
.bb-title {
  font-family: var(--bb-title-font);
  font-size: var(--bb-title-size);
  font-weight: var(--bb-title-weight);
  line-height: var(--bb-title-line-height);
  letter-spacing: var(--bb-title-letter-spacing);
  text-transform: var(--bb-title-transform);
  font-style: var(--bb-title-font-style);
  text-decoration: var(--bb-title-decoration);
  color: var(--bb-title-color);
  text-align: var(--bb-title-align);
  margin: 0 0 22px;
}
.bb-body {
  font-family: var(--bb-body-font, inherit);
  font-size: var(--bb-body-size);
  font-weight: var(--bb-body-weight);
  line-height: var(--bb-body-line-height);
  letter-spacing: var(--bb-body-letter-spacing);
  text-transform: var(--bb-body-transform);
  font-style: var(--bb-body-font-style);
  text-decoration: var(--bb-body-decoration);
  color: var(--bb-body-color);
  text-align: var(--bb-body-align);
}
.bb-body p {
  margin: 0 0 1em;
}
.bb-body p:last-child {
  margin-bottom: 0;
}
.bb-body ul,
.bb-body ol {
  padding-left: 1.4em;
}
.bb-body a {
  text-decoration: underline;
}
.bb-title-shadow-soft .bb-title {
  text-shadow: 0 2px 10px #0006;
}
.bb-title-shadow-strong .bb-title {
  text-shadow: 0 3px 18px #000b;
}
.bb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.bb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 44px;
  padding: var(--bb-button-padding-y) var(--bb-button-padding-x);
  border: 1px solid var(--bb-button-border);
  border-radius: var(--bb-button-radius);
  background: var(--bb-button-background);
  color: var(--bb-button-color);
  font-family: var(--bb-button-font, Arial, sans-serif);
  font-size: var(--bb-button-size);
  font-weight: var(--bb-button-weight, 600);
  line-height: var(--bb-button-line-height, 1.4);
  letter-spacing: var(--bb-button-letter-spacing, 1px);
  font-style: var(--bb-button-font-style, normal);
  text-transform: var(--bb-button-transform, none);
  text-decoration: var(--bb-button-decoration, none);
  text-align: var(--bb-button-align, center);
  transition: filter 0.2s;
}
.bb-button:hover {
  filter: brightness(1.15);
  text-decoration: none;
}
.bb-button-secondary {
  background: transparent;
  color: inherit;
}
.bb-block a:focus-visible,
.bb-block button:focus-visible,
.bb-block input:focus-visible,
.bb-block summary:focus-visible {
  outline: 3px solid #b89b66;
  outline-offset: 4px;
}

.bb-overlay,
.bb-banner,
.bb-quote {
  min-height: var(--bb-current-height);
  display: flex;
  align-items: var(--bb-current-vertical);
  color: var(--bb-color, #fff);
  overflow: hidden;
}
.bb-background-image,
.bb-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.bb-shade {
  background: linear-gradient(
    var(--bb-overlay-angle, 90deg),
    var(--bb-overlay-start),
    var(--bb-overlay-stop)
  );
}
.bb-overlay-solid > .bb-shade {
  background: var(--bb-overlay-start);
}
.bb-overlay-none > .bb-shade {
  display: none;
}
.bb-overlay-content {
  width: 100%;
  max-width: var(--bb-content-width);
  position: relative;
  z-index: 1;
}
.bb-credit {
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 28px;
}
.bb-quote .bb-title:before {
  content: "“";
  display: block;
  font-size: 2em;
  line-height: 0.6;
  margin-bottom: 0.25em;
}
.bb-split,
.bb-overlap {
  display: grid;
  grid-template-columns: minmax(0, var(--bb-split-width)) minmax(0, 1fr);
  gap: var(--bb-current-gap);
  align-items: var(--bb-current-vertical);
}
.bb-split-media {
  position: relative;
  min-width: 0;
}
.bb-split-media > .bb-picture {
  height: var(--bb-current-height);
}
.bb-image-right > .bb-split-media {
  order: 2;
}
.bb-image-right > .bb-copy {
  order: 1;
}
.bb-overlap > .bb-split-media {
  padding: 0 12% 12% 0;
}
.bb-overlap .bb-inset-image {
  position: absolute;
  width: 48%;
  height: 55%;
  right: 0;
  bottom: 0;
  border: 8px solid var(--paper, #f7f4ef);
  box-shadow: 0 10px 24px #0002;
}
.bb-figure,
.bb-gallery-item {
  margin: 0;
  min-width: 0;
}
.bb-card > .bb-figure .bb-picture,
.bb-frame > .bb-figure .bb-picture {
  height: var(--bb-current-height);
}
.bb-frame .bb-figure {
  padding: 18px;
  border: 1px solid var(--bb-border-color);
}
.bb-card > .bb-copy,
.bb-frame > .bb-copy {
  padding-top: 24px;
}
.bb-caption {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 14px;
  opacity: 0.8;
}
.bb-gallery-track {
  display: grid;
  grid-template-columns: repeat(var(--bb-current-columns), minmax(0, 1fr));
  gap: var(--bb-current-gap);
}
.bb-gallery-item .bb-picture {
  aspect-ratio: var(--bb-ratio);
}
.bb-gallery-item figcaption {
  padding: 16px 0;
}
.bb-item-title {
  font-family: var(--bb-title-font);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: var(--bb-title-weight);
  line-height: 1.25;
  margin: 0 0 8px;
}
.bb-item-body {
  font-size: var(--bb-body-size);
  line-height: 1.6;
  margin: 0;
}
.bb-masonry .bb-gallery-track {
  display: block;
  column-count: var(--bb-current-columns);
  column-gap: var(--bb-current-gap);
}
.bb-masonry .bb-gallery-item {
  break-inside: avoid;
  margin-bottom: var(--bb-current-gap);
}
.bb-masonry .bb-picture {
  aspect-ratio: auto;
}
.bb-masonry .bb-picture img {
  height: auto;
}
.bb-collage .bb-gallery-track {
  grid-template-columns: repeat(var(--bb-current-columns), minmax(0, 1fr));
}
.bb-collage .bb-gallery-item:first-child {
  grid-column: span min(2, var(--bb-current-columns));
  grid-row: span 2;
}
.bb-collage .bb-gallery-item:first-child .bb-picture {
  min-height: 80%;
  aspect-ratio: 1;
}
.bb-carousel .bb-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 12px;
}
.bb-carousel .bb-gallery-item {
  flex: 0 0
    calc(
      (100% - (var(--bb-current-columns) - 1) * var(--bb-current-gap)) /
        var(--bb-current-columns)
    );
  scroll-snap-align: start;
}
.bb-carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  margin-bottom: 18px;
  font-size: 12px;
}
.bb-carousel-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: none;
  color: inherit;
  cursor: pointer;
}
.bb-carousel-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}
.bb-logos .bb-picture {
  height: 110px;
  aspect-ratio: auto;
  padding: 16px;
}
.bb-logos .bb-picture img {
  object-fit: contain;
}
.bb-logos figcaption {
  text-align: center;
}
.bb-comparison {
  position: relative;
  aspect-ratio: var(--bb-ratio);
  overflow: hidden;
  border-radius: var(--bb-radius);
}
.bb-comparison > .bb-picture {
  height: 100%;
}
.bb-comparison-first {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--bb-compare)) 0 0);
}
.bb-comparison-first > .bb-picture {
  height: 100%;
}
.bb-compare-line {
  position: absolute;
  left: var(--bb-compare);
  height: 100%;
  top: 0;
  border-left: 3px solid white;
  color: #10213a;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  font-size: 26px;
  text-shadow: 0 0 5px #fff;
}
.bb-compare-label {
  position: absolute;
  bottom: 16px;
  max-width: 42%;
  padding: 8px 12px;
  background: #08192ad9;
  color: #fff;
  font-size: 12px;
}
.bb-before {
  left: 16px;
}
.bb-after {
  right: 16px;
}
.bb-compare-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  margin-top: 18px;
}
.bb-compare-control input {
  flex: 1 1 240px;
  accent-color: var(--gold, #b89b66);
  min-height: 44px;
  max-width: 100%;
}
.bb-hotspot-stage {
  position: relative;
}
.bb-hotspot-stage > .bb-picture {
  aspect-ratio: var(--bb-ratio);
}
.bb-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #10213a;
  border: 2px solid #b89b66;
  box-shadow: 0 0 0 6px #ffffff40;
  cursor: pointer;
  font-weight: bold;
}
.bb-hotspot-details details,
.bb-image-accordion details {
  border-bottom: 1px solid #b89b6666;
  padding: 16px 0;
}
.bb-hotspot-details summary,
.bb-image-accordion summary {
  cursor: pointer;
  font-family: var(--serif, Georgia);
  font-size: 22px;
  padding: 8px 0;
}
.bb-hotspot-details p {
  line-height: 1.7;
}
.bb-image-accordion summary {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.bb-image-accordion summary > span:last-child {
  margin-left: auto;
}
.bb-image-accordion summary .bb-eyebrow {
  margin: 0;
}
.bb-accordion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--bb-current-gap);
  padding: 24px 0;
  align-items: center;
}
.bb-accordion-content .bb-picture {
  aspect-ratio: var(--bb-ratio);
}
.bb-accordion-content p {
  line-height: 1.8;
}
.bb-divider hr {
  border: 0;
  border-top: 1px solid var(--bb-border-color);
  margin: 0 0 16px;
}
.bb-shadow-soft {
  box-shadow: 0 8px 28px #0b183014;
}
.bb-shadow-raised {
  box-shadow: 0 18px 45px #0b18302b;
}
.bb-hover-zoom .bb-picture:hover img {
  transform: scale(1.04);
}
.bb-hover-lift .bb-gallery-item,
.bb-hover-lift.bb-card {
  transition: transform 0.3s;
}
.bb-hover-lift .bb-gallery-item:hover,
.bb-hover-lift.bb-card:hover {
  transform: translateY(-5px);
}
.bb-filter-grayscale .bb-picture img {
  filter: grayscale(1);
}
.bb-filter-warm .bb-picture img {
  filter: sepia(0.22);
}
.bb-lightbox {
  border: 0;
  padding: 20px;
  background: #08192af5;
  color: #fff;
  max-width: 94vw;
  max-height: 94vh;
}
.bb-lightbox::backdrop {
  background: #000c;
}
.bb-lightbox img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}
.bb-lightbox button {
  float: right;
  min-width: 44px;
  min-height: 44px;
  background: none;
  color: white;
  font-size: 30px;
  border: 0;
  cursor: pointer;
}
.bb-lightbox p {
  max-width: 900px;
  font-size: 14px;
}
@media (min-width: 1025px) {
  .bb-hide-desktop {
    display: none !important;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .bb-hide-tablet {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .bb-block {
    --bb-current-height: var(--bb-height-tablet, var(--bb-height));
    --bb-current-gap: var(--bb-gap-tablet, var(--bb-gap));
    --bb-current-columns: var(--bb-columns-tablet, 2);
    --bb-current-align: var(--bb-align-tablet, var(--bb-align));
    --bb-current-vertical: var(--bb-vertical-tablet, var(--bb-vertical));
    padding: var(--bb-padding-top-tablet, var(--bb-padding-top))
      var(--bb-padding-right-tablet, var(--bb-padding-right))
      var(--bb-padding-bottom-tablet, var(--bb-padding-bottom))
      var(--bb-padding-left-tablet, var(--bb-padding-left));
    margin-top: var(--bb-margin-top-tablet, var(--bb-margin-top));
    margin-bottom: var(--bb-margin-bottom-tablet, var(--bb-margin-bottom));
  }
  .bb-row {
    grid-template-columns: repeat(
      var(--bb-columns-tablet, var(--bb-row-tablet, 2)),
      minmax(0, 1fr)
    );
  }
  .bb-title {
    font-size: var(
      --bb-title-tablet-size,
      clamp(26px, 4vw, var(--bb-title-size))
    );
  }
  .bb-body {
    font-size: var(--bb-body-tablet-size, var(--bb-body-size));
  }
  .bb-eyebrow {
    font-size: var(--bb-eyebrow-tablet-size, var(--bb-eyebrow-size));
  }
  .bb-button {
    font-size: var(--bb-button-tablet-size, var(--bb-button-size));
  }
}
@media (max-width: 640px) {
  .bb-hide-mobile {
    display: none !important;
  }
  .bb-block {
    --bb-current-height: var(--bb-height-mobile, 360px);
    --bb-current-gap: var(--bb-gap-mobile, 20px);
    --bb-current-columns: var(--bb-columns-mobile, 1);
    --bb-current-align: var(--bb-align-mobile, var(--bb-align));
    --bb-current-vertical: var(--bb-vertical-mobile, var(--bb-vertical));
    padding: var(--bb-padding-top-mobile, 28px)
      var(--bb-padding-right-mobile, 20px) var(--bb-padding-bottom-mobile, 28px)
      var(--bb-padding-left-mobile, 20px);
    margin-top: var(--bb-margin-top-mobile, var(--bb-margin-top));
    margin-bottom: var(--bb-margin-bottom-mobile, var(--bb-margin-bottom));
  }
  .bb-width-boxed,
  .bb-width-wide {
    width: calc(100% - 24px);
  }
  .bb-width-full,
  .bb-column .bb-block {
    width: 100%;
  }
  .bb-column {
    padding: var(--bb-padding-top-mobile, 0) var(--bb-padding-right-mobile, 0)
      var(--bb-padding-bottom-mobile, 0) var(--bb-padding-left-mobile, 0);
  }
  .bb-row {
    grid-template-columns: repeat(var(--bb-columns-mobile, 1), minmax(0, 1fr));
  }
  .bb-title {
    font-size: var(
      --bb-title-mobile-size,
      clamp(24px, 6vw, var(--bb-title-size))
    );
  }
  .bb-body {
    font-size: var(--bb-body-mobile-size, 16px);
  }
  .bb-eyebrow {
    font-size: var(--bb-eyebrow-mobile-size, 11px);
  }
  .bb-button {
    font-size: var(--bb-button-mobile-size, 13px);
  }
  .bb-picture img {
    object-position: var(--bb-focal-mobile-x) var(--bb-focal-mobile-y);
  }
  .bb-split,
  .bb-overlap,
  .bb-accordion-content {
    grid-template-columns: minmax(0, 1fr);
  }
  .bb-image-right > .bb-split-media,
  .bb-image-right > .bb-copy {
    order: initial;
  }
  .bb-reverse-mobile > .bb-row {
    display: flex;
    flex-direction: column-reverse;
  }
  .bb-reverse-mobile.bb-split,
  .bb-reverse-mobile.bb-overlap {
    display: flex;
    flex-direction: column-reverse;
  }
  .bb-split-media {
    width: 100%;
  }
  .bb-collage .bb-gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }
  .bb-column-content .product-grid,
  .bb-column-content .info-columns {
    grid-template-columns: 1fr;
  }
  .bb-copy {
    max-width: 100%;
  }
  .bb-pin {
    width: 40px;
    height: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bb-block * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.bb-section[style*="--bb-height"],
.bb-section:has(> .bb-background-image) {
  min-height: var(--bb-current-height);
}
.bb-title {
  text-shadow: var(--bb-title-shadow, none);
}
.bb-body {
  text-shadow: var(--bb-body-shadow, none);
}
.bb-eyebrow {
  text-shadow: var(--bb-eyebrow-shadow, none);
}
.bb-button {
  text-shadow: var(--bb-button-shadow, none);
}

.bb-block {
  --bb-justify: flex-start;
  --bb-copy-left: 0px;
  --bb-copy-right: auto;
  --bb-current-justify: var(--bb-justify);
  --bb-current-copy-left: var(--bb-copy-left);
  --bb-current-copy-right: var(--bb-copy-right);
  --bb-justify-tablet: initial;
  --bb-justify-mobile: initial;
  --bb-copy-left-tablet: initial;
  --bb-copy-right-tablet: initial;
  --bb-copy-left-mobile: initial;
  --bb-copy-right-mobile: initial;
}
.bb-copy,
.bb-overlay-content {
  margin-left: var(--bb-current-copy-left);
  margin-right: var(--bb-current-copy-right);
}
.bb-actions {
  justify-content: var(--bb-current-justify);
}
@media (max-width: 1024px) {
  .bb-block {
    --bb-current-justify: var(--bb-justify-tablet, var(--bb-justify));
    --bb-current-copy-left: var(--bb-copy-left-tablet, var(--bb-copy-left));
    --bb-current-copy-right: var(--bb-copy-right-tablet, var(--bb-copy-right));
  }
}
@media (max-width: 640px) {
  .bb-block {
    --bb-current-justify: var(--bb-justify-mobile, var(--bb-justify));
    --bb-current-copy-left: var(--bb-copy-left-mobile, var(--bb-copy-left));
    --bb-current-copy-right: var(--bb-copy-right-mobile, var(--bb-copy-right));
  }
}
