:root {
  --vrbc-blue: #003b78;
  --vrbc-blue-dark: #062e63;
  --vrbc-green: #086B44;
  --vrbc-green-bright: #007542;
  --vrbc-white: #ffffff;
  --vrbc-ink: #0b1724;
  --vrbc-muted: #4d5968;
  --vrbc-soft: #f4f6f8;
  --vrbc-max: 1820px;
  --vrbc-heading: "Bebas Neue", "Arial Narrow", "Roboto Condensed", "Oswald", Impact, sans-serif;
  --vrbc-font-accent: "Incised 901 BT", "Bebas Neue", "Arial Narrow", sans-serif;
  --vrbc-body: Arial, Helvetica, sans-serif;
  /* Fluid type scale */
  --vrbc-text-h1: clamp(2.125rem, 1.729rem + 1.690vw, 3.25rem);
  --vrbc-text-h2: clamp(1.8125rem, 1.526rem + 1.221vw, 2.625rem);
  --vrbc-text-h3: clamp(1.5rem, 1.28rem + 0.939vw, 2.125rem);
  --vrbc-text-h4: clamp(1.25rem, 1.118rem + 0.563vw, 1.625rem);
  --vrbc-text-h5: clamp(1.1875rem, 1.077rem + 0.469vw, 1.5rem);
  --vrbc-text-h6: clamp(1.125rem, 1.081rem + 0.188vw, 1.25rem);
  --vrbc-text-body: clamp(1rem, 0.956rem + 0.188vw, 1.125rem);
  /* For Hero Section Only */
  --vrbc-text-hero: clamp(4rem, 2.5rem + 6vw, 8.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--vrbc-white);
  color: var(--vrbc-ink);
  font-family: var(--vrbc-body);
  font-size: 16px;
  line-height: 1.45;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.screen-reader-text,
.vrbc-anchor {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.vrbc-container {
  width: min(var(--vrbc-max), calc(100% - 100px));
  margin: 0 auto;
}
.vrbc-kicker {
  margin: 0 0 8px;
  font-family: var(--vrbc-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(16px, 2vw, 22px);
}
.vrbc-kicker-green { color: var(--vrbc-green); }
.vrbc-button,
.vrbc-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px 12px;
  border-radius: 8px;
  background: var(--vrbc-green);
  color: #fff;
  text-decoration: none;
  font-family: var(--vrbc-font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .035em;
  box-shadow: 0 10px 22px rgba(0, 117, 66, .22);
  transition: transform .2s ease, filter .2s ease;
}
.vrbc-button:hover,
.vrbc-header-cta:hover { transform: translateY(-1px); filter: brightness(1.08); }
.vrbc-underline {
  width: 62px;
  height: 4px;
  background: var(--vrbc-green-bright);
  margin: 14px 0 18px;
}

/* Header */
.vrbc-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--vrbc-blue-dark);
  color: #fff;
  min-height: 78px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.admin-bar .vrbc-site-header { top: 32px; }
.vrbc-header-inner {
  width: min(var(--vrbc-max), calc(100% - 100px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  padding-left: 198px;
  position: relative;
}
.vrbc-logo-wrap {
  position: absolute;
  left: 0;
  top: 20px;
  width: 178px;
  min-width: 0;
  padding-top: 0;
  text-decoration: none;
  z-index: 60;
}
.vrbc-logo-wrap img {
  width: 178px;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.24));
}
.vrbc-primary-nav { flex: 1; display: flex; justify-content: center; }
.vrbc-menu,
.vrbc-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vrbc-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
}
.vrbc-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: var(--vrbc-font-accent);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.vrbc-menu a:hover { color: #8bd5b4; }

.vrbc-menu li {
  position: relative;
}
.vrbc-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 240px;
  background: var(--vrbc-blue-dark);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 18px 34px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.vrbc-menu li:hover > .sub-menu,
.vrbc-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.vrbc-menu .sub-menu a {
  padding: 11px 18px;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .04em;
  white-space: nowrap;
}
.vrbc-menu .sub-menu a:hover,
.vrbc-menu .sub-menu a:focus {
  background: rgba(0, 143, 85, .22);
  color: #fff;
}
.vrbc-menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: .42em;
  height: .42em;
  margin-left: .55em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.vrbc-header-cta {
  white-space: nowrap;
  min-width: 138px;
}
.vrbc-menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 8px;
}

/* Hero */
.vrbc-hero {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.vrbc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.25) 36%, rgba(0,0,0,.1) 100%);
}
.vrbc-hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 90px 76px;
}
.vrbc-hero h1 {
  margin: 0;
  max-width: 800px;
  color: var(--vrbc-blue);
  font-family: var(--vrbc-heading);
  font-size: clamp(52px, 6.7vw, 88px);
  line-height: .95;
  letter-spacing: .045em;
  font-weight: 1000;
  text-transform: uppercase;
}
.vrbc-hero-text {
  max-width: 360px;
  margin: 0 0 20px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

/* About */
.vrbc-about { padding: 58px 0 76px; background: #fff; }
.vrbc-section-center { text-align: center; }
.vrbc-section-center .vrbc-underline { margin-left: auto; margin-right: auto; }
.vrbc-about h2,
.vrbc-partners h2,
.vrbc-gallery-strip h2,
.vrbc-page-card h1 {
  margin: 0;
  color: var(--vrbc-blue);
  font-family: var(--vrbc-heading);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1;
}
.vrbc-about h2 { font-size: clamp(30px, 4.2vw, 44px); }
.vrbc-section-lead {
  max-width: 740px;
  margin: 28px auto 62px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #222;
}
.vrbc-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 6vw, 94px);
  align-items: start;
}
.vrbc-feature-card {
  color: var(--vrbc-blue);
  text-decoration: none;
  display: grid;
  justify-items: center;
  gap: 8px;
}
.vrbc-feature-card strong {
  font-family: var(--vrbc-heading);
  font-size: 21px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .03em;
}
.vrbc-feature-card span:last-child {
  color: #111;
  font-size: 14px;
  line-height: 1.15;
  max-width: 200px;
}
.vrbc-feature-card:hover .vrbc-feature-icon { transform: translateY(-4px); }
.vrbc-feature-icon { transition: transform .2s ease; }

/* Prize band */
.vrbc-prizes {
  position: relative;
  overflow: hidden;
  min-height: 268px;
  color: #fff;
  background: var(--vrbc-blue-dark);
}
.vrbc-prize-bg {
  position: absolute;
  inset: 0 0 0 0;
  background-size: cover;
  background-position: center;
  opacity: .9;
}
.vrbc-prizes::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,46,99,.82) 62%, rgba(6,46,99,.15) 100%);
}
.vrbc-prize-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 375px;
  min-height: 270px;
}
.vrbc-prize-copy {
  padding: 34px 36px 28px max(50px, calc((100vw - var(--vrbc-max))/2));
}
.vrbc-prize-copy h2 {
  margin: 0;
  font-family: var(--vrbc-heading);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .03em;
}
.vrbc-prize-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 54px);
  margin: 0 0 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.08;
}
.vrbc-prize-columns div {
  white-space: normal;
}
.vrbc-prize-columns div::first-line {
  font-family: var(--vrbc-heading);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.vrbc-boat-wrap { min-height: 270px; position: relative; z-index: 2; }
.vrbc-boat-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Partners */
.vrbc-partners { padding: 28px 0 70px; background: #fff; }
.vrbc-partners h2 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 48px; }
.vrbc-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  align-items: center;
}
.vrbc-partner-logo {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.vrbc-partner-logo img { max-height: 72px; object-fit: contain; margin: 0 auto; }
.vrbc-partner-logo strong {
  color: var(--vrbc-blue);
  font-family: var(--vrbc-heading);
  font-size: 24px;
  text-transform: uppercase;
}

/* Gallery strip */
.vrbc-gallery-strip {
  min-height: 230px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.vrbc-gallery-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6,46,99,.62);
}
.vrbc-gallery-strip .vrbc-container { position: relative; z-index: 1; }
.vrbc-gallery-strip h2 { color: #fff; font-size: clamp(34px, 5vw, 58px); }

/* Footer */
.vrbc-footer {
  background: var(--vrbc-blue-dark);
  color: #fff;
  font-size: 14px;
}
.vrbc-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(32px, 5vw, 100px);
  row-gap: 40px;
  align-items: start;
  padding: 56px 0 48px;
}
.vrbc-footer-grid > * {
  min-width: 0;
}
.vrbc-footer-brand img {
  max-width: 160px;
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .vrbc-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .vrbc-footer-grid {
    grid-template-columns: 1fr;
  }

  .vrbc-footer-brand img {
    max-width: 150px;
  }
}

.vrbc-footer-brand img { width: 142px; }
.vrbc-footer p { margin: 0 0 8px; line-height: 1.2; }
.vrbc-footer h3 {
  margin: 0 0 16px;
  font-family: var(--vrbc-heading);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .04em;
}
.vrbc-footer a { color: #fff; text-decoration: none; }
.vrbc-footer a:hover { color: #8bd5b4; }
.vrbc-footer-menu a { display: block; line-height: 1.15; }
.vrbc-footer .vrbc-menu { display: block; }
.vrbc-footer .vrbc-menu li { margin: 0; }
.vrbc-footer .vrbc-menu a,
.vrbc-footer-menu a {
  font-family: var(--vrbc-body);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 14px;
}
.vrbc-footer-list { list-style: none; margin: 0; padding: 0; line-height: 1.2; }
.vrbc-footer-bar { height: 38px; background: var(--vrbc-green); }

/* Inner pages */
.vrbc-page-main { background: var(--vrbc-soft); min-height: 62vh; }
.vrbc-standard-page-section { padding: 0 0 80px; }
.vrbc-page-card {
  max-width: 1020px;
  margin: -46px auto 0;
  background: #fff;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  position: relative;
  z-index: 2;
}
.vrbc-page-card h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 24px; }
.vrbc-page-content { font-size: 18px; }
.vrbc-page-content a { color: var(--vrbc-green); }
.vrbc-page-content p { margin: 0 0 20px; }
.vrbc-page-content ul,
.vrbc-page-content ol { margin: 0 0 24px 1.4em; padding: 0; }
.vrbc-child-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.vrbc-child-page-card {
  display: block;
  padding: 22px 24px;
  border-radius: 12px;
  background: #f0f7f3;
  color: var(--vrbc-blue);
  text-decoration: none;
  border-left: 6px solid var(--vrbc-green-bright);
  transition: transform .18s ease, box-shadow .18s ease;
}
.vrbc-child-page-card:hover,
.vrbc-child-page-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.1);
}
.vrbc-child-page-card strong {
  display: block;
  font-family: var(--vrbc-heading);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .035em;
}
.vrbc-child-page-card span {
  display: block;
  margin-top: 8px;
  color: var(--vrbc-ink);
  font-size: 14px;
}

/* About page template */
.vrbc-inner-hero {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  overflow: hidden;
  color: #fff;
}
.vrbc-inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,46,99,.92) 0%, rgba(6,46,99,.65) 48%, rgba(0,0,0,.2) 100%);
}
.vrbc-inner-hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 68px 76px;
}
.vrbc-inner-hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: var(--vrbc-heading);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .045em;
  font-weight: 1000;
}
.vrbc-about-page-main {
  background: var(--vrbc-soft);
}
.vrbc-about-page-section {
  padding: 0 0 80px;
}
.vrbc-about-panel {
  max-width: 920px;
  margin: -46px auto 0;
  padding: clamp(30px, 6vw, 66px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 52px rgba(0,0,0,.12);
  position: relative;
  z-index: 2;
}
.vrbc-about-panel h1,
.vrbc-about-panel h2,
.vrbc-about-panel h3,
.vrbc-about-panel h4,
.vrbc-about-panel h5,
.vrbc-about-panel h6,
.vrbc-about-panel .wp-block-heading {
  color: var(--vrbc-blue);
  font-family: var(--vrbc-heading);
  text-transform: uppercase;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: .035em;
}
.vrbc-about-panel h1 {
  font-size: var(--vrbc-text-h1);
  margin: 0 0 28px;
}
.vrbc-about-panel h2 {
  font-size: var(--vrbc-text-h2);
  margin: 0 0 28px;
}
.vrbc-about-panel h3 {
  font-size: var(--vrbc-text-h3);
}
.vrbc-about-panel h4 {
  font-size: var(--vrbc-text-h4);
}
.vrbc-about-panel h5 {
  font-size: var(--vrbc-text-h5);
}
.vrbc-about-panel h6 {
  font-size: var(--vrbc-text-h6);
}
.vrbc-about-panel p {
  margin: 0 0 22px;
  font-size: var(--vrbc-text-body);
  line-height: 1.55;
  color: #1b2735;
}
.vrbc-about-panel p:last-child {
  margin-bottom: 0;
}
.vrbc-about-highlight {
  margin-top: 36px !important;
  padding: 24px 28px;
  border-left: 6px solid var(--vrbc-green-bright);
  background: #f0f7f3;
  color: var(--vrbc-blue) !important;
  font-family: var(--vrbc-heading);
  font-size: clamp(22px, 3vw, 34px) !important;
  line-height: 1.08 !important;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .035em;
}

@media (max-width: 1120px) {
  .vrbc-header-inner { width: min(100% - 32px, 1180px); gap: 20px; padding-left: 164px; }
  .vrbc-logo-wrap { width: 148px; top: 16px; }
  .vrbc-logo-wrap img { width: 148px; }
  .vrbc-menu { gap: 18px; }
  .vrbc-menu a { font-size: 15px; }
  .vrbc-header-cta { min-width: 120px; padding-left: 16px; padding-right: 16px; }
  .vrbc-prize-content { grid-template-columns: 1fr 310px; }
  .vrbc-footer-grid { grid-template-columns: 150px 1fr 150px 190px; }
  .vrbc-footer-grid > div:last-child { grid-column: 2 / -1; }
  .vrbc-inner-hero-inner { padding-left: 48px; }
}

@media (max-width: 900px) {
  .admin-bar .vrbc-site-header { top: 46px; }
  .vrbc-site-header { min-height: 76px; }
  .vrbc-header-inner { min-height: 76px; padding-left: 134px; }
  .vrbc-logo-wrap { width: 118px; top: 8px; }
  .vrbc-logo-wrap img { width: 118px; }
  .vrbc-menu-toggle { display: inline-flex; }
  .vrbc-primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--vrbc-blue-dark);
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .vrbc-primary-nav.is-open { display: block; }
  .vrbc-primary-nav .vrbc-menu { display: grid; justify-content: stretch; gap: 0; }
  .vrbc-primary-nav .vrbc-menu a { padding: 13px 4px; }
  .vrbc-primary-nav .vrbc-menu li { border-bottom: 1px solid rgba(255,255,255,.12); }
  .vrbc-primary-nav .vrbc-menu li:last-child { border-bottom: 0; }
  .vrbc-primary-nav .vrbc-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: rgba(255,255,255,.04);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .vrbc-primary-nav .vrbc-menu .sub-menu a {
    padding: 9px 4px;
    font-size: 14px;
  }
  .vrbc-header-cta { margin-left: auto; min-height: 40px; padding: 10px 14px; }
  .vrbc-hero { min-height: 500px; background-position: center right; }
  .vrbc-hero::before { background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,.25), rgba(0,0,0,.2)); }
  .vrbc-hero-inner { padding: 72px 0 72px; }
  .vrbc-feature-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .vrbc-prize-content { grid-template-columns: 1fr; }
  .vrbc-prize-bg { inset: 0; }
  .vrbc-prize-copy { padding: 42px 28px; }
  .vrbc-prize-columns { grid-template-columns: 1fr; gap: 22px; }
  .vrbc-boat-wrap { min-height: auto; max-height: 340px; overflow: hidden; }
  .vrbc-partner-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .vrbc-footer-grid { grid-template-columns: 1fr 1fr; }
  .vrbc-footer-grid > div:last-child { grid-column: auto; }
  .vrbc-inner-hero-inner { padding: 74px 0 60px; }
}

@media (max-width: 600px) {
  .vrbc-container { width: min(100% - 28px, var(--vrbc-max)); }
  .vrbc-header-inner { width: min(100% - 20px, 1180px); gap: 12px; padding-left: 108px; }
  .vrbc-header-cta { font-size: 13px; min-width: auto; }
  .vrbc-logo-wrap { width: 96px; top: 7px; }
  .vrbc-logo-wrap img { width: 96px; }
  .vrbc-hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .vrbc-hero-text { color: #fff; max-width: 300px; }
  .vrbc-feature-grid, .vrbc-partner-grid, .vrbc-footer-grid { grid-template-columns: 1fr; }
  .vrbc-child-page-grid { grid-template-columns: 1fr; }
  .vrbc-footer-grid { gap: 26px; }
  .vrbc-footer-brand img { width: 132px; }
  .vrbc-inner-hero { min-height: 260px; }
  .vrbc-inner-hero-inner { padding: 68px 0 52px; }
  .vrbc-about-panel { margin-top: -28px; }
}

/* Wide desktop layout: keeps the design fluid with about 50px side margins on standard desktop screens. */
@media (min-width: 1121px) {
  .vrbc-container,
  .vrbc-header-inner {
    width: min(var(--vrbc-max), calc(100% - 100px));
  }
}

.vrbc-page-card .entry-content,
.vrbc-page-card .wp-block-post-content,
.vrbc-page-card .wp-block-paragraph,
.vrbc-page-card p,
.vrbc-page-card li {
  font-family: Arial, Helvetica, sans-serif;
}

.vrbc-page-card h1,
.vrbc-page-card h2,
.vrbc-page-card h3,
.vrbc-page-card .wp-block-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vrbc-blue);
}

.vrbc-page-card h4,
.vrbc-page-card h5,
.vrbc-page-card h6 {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--vrbc-blue);
}

.vrbc-page-card strong {
  font-weight: 800;
}