﻿/* =========================
   GRAPHIK (Primary UI Font)
========================= */
@font-face {
  font-family: "Graphik";
  src: url("/assets/fonts/Graphik-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("/assets/fonts/Graphik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("/assets/fonts/Graphik-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("/assets/fonts/Graphik-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* =========================
   TT NORMS (Alternative UI)
========================= */
@font-face {
  font-family: "TT Norms";
  src: url("/assets/fonts/TTNorms-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Norms";
  src: url("/assets/fonts/TTNorms-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* =========================
   SERIF / PREMIUM
========================= */
@font-face {
  font-family: "Libre Caslon";
  src: url("/assets/fonts/LibreCaslonText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Minion Variable";
  src: url("/assets/fonts/MinionVariableConcept-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* =========================
   SCRIPT / LOGO
========================= */
@font-face {
  font-family: "Welcome Darling";
  src: url("/assets/fonts/Welcome Darling.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* =========================
   VARIABLE FONT
========================= */
@font-face {
  font-family: "Acumin Variable";
  src: url("/assets/fonts/AcuminVariableConcept.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --body-bg: #ffe1e1;
  --banner-bg: #ffcccc;
  --banner-fg: #4c4c4c;
  --menu-bg: #ffffff;
  --menu-fg: #000000;
  --menu-border: #eaeaea;
  --menu-banner-bg: #eaeaea;
  --menu-banner-fg: #474747;
  --color-ink: #232d44;
  --color-charcoal: #242122;
  --color-oxblood: #9d0713;
  --color-mahogany: #3a0405;
  --color-slate: #777d87;
  --color-blush: #ef9db1;
  --color-sage: #43664e;
  --color-mauve: #9e6978;
  --font-acumin: "Acumin Variable", sans-serif;
  --font-tt-norms: "TT Norms", sans-serif;
  --font-minion: "Minion Variable", serif;
  --font-graphik: "Graphik", sans-serif;
}

.bg-ink {
  background-color: var(--color-ink) !important;
}

.text-ink {
  color: var(--color-ink) !important;
}

.border-ink {
  border-color: var(--color-ink) !important;
}

.bg-hover-ink:hover {
  background-color: var(--color-ink) !important;
}

.text-hover-ink:hover {
  color: var(--color-ink) !important;
}

.bg-charcoal {
  background-color: var(--color-charcoal) !important;
}

.text-charcoal {
  color: var(--color-charcoal) !important;
}

.border-charcoal {
  border-color: var(--color-charcoal) !important;
}

.bg-hover-charcoal:hover {
  background-color: var(--color-charcoal) !important;
}

.text-hover-charcoal:hover {
  color: var(--color-charcoal) !important;
}

.bg-oxblood {
  background-color: var(--color-oxblood) !important;
}

.text-oxblood {
  color: var(--color-oxblood) !important;
}

.border-oxblood {
  border-color: var(--color-oxblood) !important;
}

.bg-hover-oxblood:hover {
  background-color: var(--color-oxblood) !important;
}

.text-hover-oxblood:hover {
  color: var(--color-oxblood) !important;
}

.bg-mahogany {
  background-color: var(--color-mahogany) !important;
}

.text-mahogany {
  color: var(--color-mahogany) !important;
}

.border-mahogany {
  border-color: var(--color-mahogany) !important;
}

.bg-hover-mahogany:hover {
  background-color: var(--color-mahogany) !important;
}

.text-hover-mahogany:hover {
  color: var(--color-mahogany) !important;
}

.bg-slate {
  background-color: var(--color-slate) !important;
}

.text-slate {
  color: var(--color-slate) !important;
}

.border-slate {
  border-color: var(--color-slate) !important;
}

.bg-hover-slate:hover {
  background-color: var(--color-slate) !important;
}

.text-hover-slate:hover {
  color: var(--color-slate) !important;
}

.bg-blush {
  background-color: var(--color-blush) !important;
}

.text-blush {
  color: var(--color-blush) !important;
}

.border-blush {
  border-color: var(--color-blush) !important;
}

.bg-hover-blush:hover {
  background-color: var(--color-blush) !important;
}

.text-hover-blush:hover {
  color: var(--color-blush) !important;
}

.bg-sage {
  background-color: var(--color-sage) !important;
}

.text-sage {
  color: var(--color-sage) !important;
}

.border-sage {
  border-color: var(--color-sage) !important;
}

.bg-hover-sage:hover {
  background-color: var(--color-sage) !important;
}

.text-hover-sage:hover {
  color: var(--color-sage) !important;
}

.bg-mauve {
  background-color: var(--color-mauve) !important;
}

.text-mauve {
  color: var(--color-mauve) !important;
}

.border-mauve {
  border-color: var(--color-mauve) !important;
}

.bg-hover-mauve:hover {
  background-color: var(--color-mauve) !important;
}

.text-hover-mauve:hover {
  color: var(--color-mauve) !important;
}

.vjs-body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  background: var(--body-bg);
  color: #242122;
}

.vjs-site {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}

.vjs-header {
  position: relative;
  z-index: 20;
}
.vjs-header__top-banner {
  background: var(--banner-bg);
  border-top: 1px solid rgba(36, 33, 34, 0.85);
  border-bottom: 1px solid rgba(36, 33, 34, 0.08);
  width: 100%;
}
.vjs-header__top-banner-link {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #4f4a4b;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
  width: 100%;
  font-family: var(--font-tt-norms);
  position: relative;
}
.vjs-header__top-banner-link .icon {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
}
.vjs-header__top-banner-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vjs-header__top-banner-link:hover {
  opacity: 0.8;
}
.vjs-header__main-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--menu-bg);
  border-top: 4px solid var(--menu-border);
  border-bottom: 4px solid var(--menu-border);
  position: relative;
  width: 100%;
  font-family: "Acumin Variable";
}
.vjs-header__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: absolute;
  left: 32px;
}
.vjs-header__brand img {
  display: block;
  width: 100%;
  height: 44px;
}
.vjs-header .right-section {
  position: absolute;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-graphik);
}

.vjs-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.vjs-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 42px;
}
.vjs-nav__item {
  display: flex;
  align-items: center;
}
.vjs-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #242122;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
  font-family: var(--font-acumin);
  font-stretch: extra-condensed;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.vjs-nav__link:hover {
  opacity: 0.72;
}
.vjs-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.vjs-nav__link:hover::after, .vjs-nav__link.is-active::after {
  transform: scaleX(1);
}

.vjs-service-banner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  color: var(--menu-banner-fg);
  flex-wrap: wrap;
  background: var(--menu-banner-bg);
  border-top: 6px solid #fff;
  border-bottom: 12px solid #fff;
  width: 100%;
}
.vjs-service-banner__item {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-family: "TT Norms";
}
.vjs-service-banner__dot {
  font-size: 26px;
  line-height: 1;
  opacity: 0.8;
  transform: translateY(-1px);
}

.vjs-main {
  position: relative;
}

.vjs-footer .brand-logo img {
  height: 48px;
  width: auto;
}

.vjs-product-listing {
  padding: 0 !important;
}
.vjs-product-listing .product-listing-container {
  background: #fff;
  padding: 40px 40px 40px;
  margin-bottom: 40px;
}
.vjs-product-listing .product-listing-container .items {
  margin: 0 !important;
  grid-template-columns: repeat(6, 1fr);
}

.vjs-breadcrumb {
  background: inherit;
}
.vjs-breadcrumb .breadcrumb-container {
  background: var(--bg-color);
  height: 52px;
  padding-left: 40px !important;
}

.vjs-product-details .product-container {
  background: #fff;
  margin-bottom: 40px;
  padding: 80px 40px !important;
}

.v-page .auth-wrap {
  background: #fff;
  margin-bottom: 40px;
}

.vjs-listing-page {
  background: inherit;
}
.vjs-listing-page .product-listing-container {
  background: #fff;
  padding: 80px 40px;
  margin-bottom: 40px;
}

section.home {
  padding: 0;
}
section.home .vjs-home {
  background: #ffffff;
  display: flex;
  flex-flow: column nowrap;
}
section.home .vjs-cta-button img {
  width: 100%;
  height: auto;
}

.new-arrivals {
  width: 100%;
  display: flex;
  position: relative;
}
.new-arrivals .vjs-cta-button {
  width: 100%;
  padding-top: 10px;
  display: flex;
  position: relative;
  height: 726px;
  align-items: center;
}
.new-arrivals .vjs-cta-button .left-text {
  position: absolute;
  left: 10%;
}
.new-arrivals .vjs-cta-button .right-text {
  position: absolute;
  right: 10%;
}
.new-arrivals .vjs-cta-button .left-text, .new-arrivals .vjs-cta-button .right-text {
  color: #fff;
  font-size: 84px;
  font-family: var(--font-acumin);
  font-stretch: condensed;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
.new-arrivals .vjs-cta-button img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

.vjs-product-list {
  padding-top: 84px;
  padding-bottom: 84px;
}
.vjs-product-list__head {
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.vjs-product-list__line {
  flex: 0 1 330px;
  height: 1px;
  background: rgba(36, 33, 34, 0.18);
}
.vjs-product-list__title {
  margin: 0;
  color: #242122;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--font-tt-norms);
  font-weight: 500;
  font-stretch: extra-condensed;
  font-variation-settings: "wght" 500, "wdth" 72;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.vjs-product-list__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.vjs-product-card {
  position: relative;
}
.vjs-product-card__link {
  display: block;
  text-decoration: none;
}
.vjs-product-card__figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 6px;
}
.vjs-product-card__image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(6px 8px 8px rgba(0, 0, 0, 0.18));
  transition: transform 0.35s ease, filter 0.35s ease;
  transform-origin: center center;
}
.vjs-product-card__link:hover .vjs-product-card__image {
  transform: translateY(-4px) scale(1.015);
  filter: drop-shadow(9px 14px 12px rgba(0, 0, 0, 0.2));
}

.vjs-category-grid__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vjs-category-card {
  position: relative;
}
.vjs-category-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.vjs-category-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/0.86;
  background: #f3f0ec;
}
.vjs-category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s ease;
}
.vjs-category-card__caption {
  min-height: 58px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.vjs-category-card__title {
  display: block;
  color: #fff;
  font-family: var(--font-minion);
  font-size: 28px;
  line-height: 1.1;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.vjs-category-card__link:hover .vjs-category-card__image {
  transform: scale(1.035);
}
.vjs-category-card__link:hover .vjs-category-card__caption {
  filter: brightness(0.96);
}

.vjs-promo-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vjs-promo-card {
  position: relative;
}
.vjs-promo-card__link {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #1f1b1c;
  aspect-ratio: 1/1;
}
.vjs-promo-card__media {
  position: absolute;
  inset: 0;
}
.vjs-promo-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.9s ease;
}
.vjs-promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 16, 18, 0.79) 0%, rgba(20, 16, 18, 0.79) 30%, rgba(20, 16, 18, 0.97) 100%);
  z-index: 1;
  transition: background 0.35s ease, opacity 0.35s ease;
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
}
.vjs-promo-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
}
.vjs-promo-card__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-graphik);
  font-size: 72px;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}
.vjs-promo-card__button {
  position: absolute;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  min-width: 168px;
  min-height: 36px;
  padding: 6px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  font-family: var(--font-graphik);
  font-size: 21px;
  line-height: 1;
  font-weight: 100;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.vjs-promo-card__link:hover .vjs-promo-card__image {
  transform: scale(1.05);
}
.vjs-promo-card__link:hover .vjs-promo-card__overlay {
  --background: linear-gradient( to bottom, rgba(20, 16, 18, .28) 0%, rgba(20, 16, 18, .34) 30%, rgba(20, 16, 18, .46) 100% );
  opacity: 0.15;
}
.vjs-promo-card__link:hover .vjs-promo-card__button {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.vjs-instagram-feed {
  position: relative;
  padding: 28px 0 56px;
}
.vjs-instagram-feed__head {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.vjs-instagram-feed__title {
  margin: 0;
  color: #242122;
  font-family: var(--font-tt-norms);
  font-weight: 500;
  font-variation-settings: "wght" 500, "wdth" 72;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.vjs-instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  background: #d9d9d9;
}

.vjs-instagram-card {
  position: relative;
  background: #ebe8e4;
}
.vjs-instagram-card__link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1.32;
  text-decoration: none;
  color: inherit;
  background: #e9e5df;
}
.vjs-instagram-card__media {
  position: absolute;
  inset: 0;
}
.vjs-instagram-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease, filter 0.3s ease;
}
.vjs-instagram-card__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #6e665e;
  font-size: 11px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.vjs-instagram-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0) 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.vjs-instagram-card__link:hover .vjs-instagram-card__image {
  transform: scale(1.04);
}
.vjs-instagram-card__link:hover::after {
  opacity: 1;
}
.vjs-instagram-card__link:hover .vjs-instagram-card__icon {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.98);
}

.vjs-instagram-feed.insta-embed {
  background: #fff;
}
.vjs-instagram-feed.insta-embed .vjs-instagram-feed__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  gap: 16px;
}
.vjs-instagram-feed.insta-embed .vjs-instagram-feed__grid article.vjs-instagram-card.vjs-instagram-feed {
  background: #fff;
}
.vjs-instagram-feed.insta-embed .vjs-instagram-feed__grid article.vjs-instagram-card.vjs-instagram-feed iframe.instagram-media.instagram-media-rendered {
  width: 100% !important;
}

.vjs-feature-cards {
  position: relative;
  padding: 32px 0 32px;
  background: #fff;
}
.vjs-feature-cards__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vjs-feature-card {
  position: relative;
}
.vjs-feature-card__link {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: #efeae6;
  color: #242122;
  aspect-ratio: 1/0.68;
}
.vjs-feature-card__media {
  position: absolute;
  inset: 0;
}
.vjs-feature-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s ease;
}
.vjs-feature-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.vjs-feature-card__button {
  min-width: 196px;
  min-height: 42px;
  padding: 8px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: #242122;
  text-align: center;
  font-family: var(--font-graphik);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.vjs-feature-card__button:after {
  content: "";
}
.vjs-feature-card__button:before {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.vjs-feature-card__link:hover .vjs-feature-card__image {
  transform: scale(1.04);
}
.vjs-feature-card__link:hover .vjs-feature-card__button {
  background: #fff;
  transform: translateY(-2px);
}

.vjs-brand-story {
  position: relative;
  padding: 0 0 44px;
}
.vjs-brand-story__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: stretch;
  background: #ededed;
  overflow: hidden;
}
.vjs-brand-story__media {
  position: relative;
  min-height: 820px;
  background: #d8d6d3;
}
.vjs-brand-story__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vjs-brand-story__content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ededed;
}
.vjs-brand-story__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 84px 56px;
  text-align: center;
}
.vjs-brand-story__title {
  margin: 0 0 34px;
  color: #111;
  font-family: var(--font-graphik);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.vjs-brand-story__text {
  color: #1e1e1e;
  font-family: var(--font-graphik);
}
.vjs-brand-story__text p {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.vjs-brand-story__text p:not(:last-child) {
  margin-bottom: 36px;
}
.vjs-brand-story__footer {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.vjs-brand-story__highlight {
  display: block;
  color: #111;
  font-family: var(--font-graphik);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.vjs-brand-story__seal {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vjs-brand-story__seal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
