.eb-page {
  background: #fff;
  color: #24272a;
}
.eb-hero {
  min-height: 680px;
}
.eb-page .vg-hero__copy > p:not(.vg-eyebrow) {
  max-width: 760px;
}
.eb-page .vg-hero__image img {
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center center;
}
.eb-page .vg-hero__badge {
  max-width: 430px;
}
.eb-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}
.eb-fact {
  border-top: 2px solid #bea885;
  padding-top: 13px;
}
.eb-fact strong {
  display: block;
  font-size: 1.05rem;
}
.eb-fact span {
  display: block;
  margin-top: 4px;
  line-height: 1.45;
  color: #b5b5b5;
  font-size: .94rem;
}
.eb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}
.eb-grid--reverse {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}
.eb-media {
  margin: 0;
  position: relative;
}
.eb-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 2px;
  background: #f4f1eb;
}
.eb-media--shadow img {
  box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
}
.eb-note {
  margin-top: 18px;
  border-left: 4px solid #bea885;
  background: #faf7f1;
  padding: 17px 19px;
  line-height: 1.6;
}
.eb-dark {
  background: #24272a;
  color: #fff;
}
.eb-dark .vg-h2 {
  color: #fff;
}
.eb-dark .vg-copy {
  color: #ececec;
}
.eb-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.eb-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 22px;
}
.eb-card b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #bea885;
  color: #24272a;
  margin-bottom: 15px;
}
.eb-card strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.eb-card p {
  margin: 0;
  line-height: 1.6;
  color: #e9e9e9;
}
.eb-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #555;
  line-height: 1.7;
}
.eb-list li {
  margin-bottom: 4px;
}
.eb-gallery-section {
  padding-top: 30px;
}
.eb-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.eb-gallery figure {
  margin: 0;
  background: #f4f1eb;
  overflow: hidden;
  border: 1px solid #e2dbcf;
  display: flex;
  flex-direction: column;
}
.eb-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.eb-gallery figcaption {
  padding: 12px 14px;
  font-weight: 700;
}
.eb-soft {
  background: #fcfaf6;
}
.eb-mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}
.eb-mini-cards article {
  border: 1px solid #dfd4c5;
  background: #fff;
  padding: 18px;
}
.eb-mini-cards strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}
.eb-mini-cards p {
  margin: 0;
  color: #575757;
  line-height: 1.55;
}
.eb-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.eb-faq details {
  border: 1px solid #ded4c4;
  background: #fff;
  padding: 0 18px;
}
.eb-faq summary {
  cursor: pointer;
  font-weight: 800;
  padding: 18px 30px 18px 0;
  position: relative;
}
.eb-faq summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.5rem;
  color: #9a6720;
}
.eb-faq details[open] summary:after {
  content: "–";
}
.eb-faq details p {
  margin: 0 0 18px;
  line-height: 1.6;
  color: #505050;
}
.eb-cta {
  background: #24272a;
  color: #fff;
}
.eb-cta .vg-h2 {
  color: #fff;
}
.eb-cta .vg-copy {
  color: #ececec;
}
.eb-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.eb-cta .vg-btn--light {
  background: #fff;
  color: #24272a;
}
@media (max-width: 1050px) {
  .eb-grid,
  .eb-grid--reverse {
    grid-template-columns: 1fr 1fr;
  }
  .eb-page .vg-hero__image img {
    min-height: 430px;
  }
  .eb-page .vg-hero {
    min-height: unset;
  }
  .eb-cards {
    grid-template-columns: 1fr;
  }
  .eb-cta-grid {
    grid-template-columns: 1fr;
  }
  .eb-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .eb-facts,
  .eb-grid,
  .eb-grid--reverse,
  .eb-gallery,
  .eb-faq {
    grid-template-columns: 1fr;
  }
  .eb-page .vg-hero__image img {
    min-height: 360px;
    max-height: 520px;
  }
  .eb-page .vg-hero__badge {
    position: static;
    max-width: none;
    margin-top: 0;
  }
  .eb-page .vg-hero__copy {
    padding-bottom: 28px;
  }
}
