
:root {
  --theme-blue: #2F2FE4;
  --theme-orange: #d2741d;
  --dark: #101021;
  --white: #ffffff;
  --footer-dark: #080824;
  --footer-deep: #11115a;
  --footer-text: #cfd2ff;
  --hero-dark: #071229;
  --hero-text: #5b6275;
  --border-light: rgba(47, 47, 228, 0.1);
  --shadow-soft: 0 18px 45px rgba(47, 47, 228, 0.08);
  --shadow-strong: 0 24px 60px rgba(47, 47, 228, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
button,
input,
textarea,
select {
  font-family: "Inter", Arial, sans-serif;
}

body {
  margin: 0;
  color: var(--hero-dark);
  background: #ffffff;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--theme-blue);
  text-decoration: none;
}

a:hover {
  color: var(--theme-orange);
}

.site-main {
  overflow: hidden;
}

.vh-container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.vh-section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--theme-orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vh-section-heading {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.vh-section-heading h2,
.vh-archive-hero h1,
.vh-single-hero h1,
.vh-blog-hero h1 {
  margin: 0;
  color: var(--hero-dark);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.vh-section-heading p,
.vh-archive-hero p,
.vh-blog-hero p,
.vh-single-meta,
.vh-post-card-body p,
.vh-article-content,
.vh-sidebar,
.vh-empty-state p {
  color: var(--hero-text);
}

.vh-primary-btn,
.vh-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 900;
  transition: 0.25s ease;
}

.vh-primary-btn {
  background: var(--theme-blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(47, 47, 228, 0.22);
}

.vh-primary-btn:hover {
  color: var(--white);
  background: #11115a;
  transform: translateY(-3px);
}

.vh-secondary-btn {
  background: var(--white);
  color: var(--hero-dark);
  border: 1px solid rgba(47, 47, 228, 0.16);
}

.vh-secondary-btn:hover {
  border-color: var(--theme-blue);
  transform: translateY(-3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background:
    radial-gradient(circle at top right, rgba(47, 47, 228, 0.35), transparent 38%),
    linear-gradient(135deg, #080824 0%, #11115a 100%) !important;
  box-shadow: none;
  border-bottom: none;
}

.header-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 22px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.site-logo img {
  max-height: 48px;
  display: block;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  color: var(--footer-text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.2;
  font-weight: 750;
  text-decoration: none;
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--theme-orange);
}

.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "▾";
  font-size: 13px;
  margin-left: 7px;
  display: inline-block;
  color: var(--theme-orange);
  transition: 0.25s ease;
}

.dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 285px;
  display: block !important;
  padding: 12px 0 !important;
  margin: 0;
  list-style: none;
  background:
    radial-gradient(circle at top right, rgba(47, 47, 228, 0.28), transparent 42%),
    linear-gradient(135deg, #080824 0%, #11115a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(8, 8, 36, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 13px 22px;
  color: var(--footer-text);
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 700;
}

.dropdown-menu li a:hover {
  background: rgba(210, 116, 29, 0.14);
  color: #ffffff;
  padding-left: 28px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 25px;
  border-radius: 999px;
  background: var(--theme-orange);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1;
  font-weight: 850;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 12px 30px rgba(210, 116, 29, 0.28);
}

.client-btn:hover {
  background: var(--theme-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--theme-orange);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 36, 0.68);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: 340px;
  max-width: 90%;
  height: 100vh;
  max-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(47, 47, 228, 0.3), transparent 42%),
    linear-gradient(135deg, #080824 0%, #11115a 100%);
  z-index: 1000;
  transform: translateX(100%);
  transition: 0.35s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: -20px 0 50px rgba(8, 8, 36, 0.38);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-menu-header img {
  max-height: 44px;
}

.mobile-menu-header button,
.mobile-close-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--theme-orange);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav,
.mobile-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav {
  padding-bottom: 120px;
}

.mobile-nav a,
.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--footer-text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 750;
  text-align: left;
  text-decoration: none;
  transition: 0.25s ease;
}

.mobile-nav a:hover,
.mobile-dropdown-btn:hover {
  color: var(--theme-orange);
}

.mobile-dropdown-btn::after {
  content: "▾";
  font-size: 16px;
  font-weight: 900;
  color: var(--theme-orange);
  transition: 0.25s ease;
}

.mobile-dropdown-btn.active::after {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding-left: 16px;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu a {
  color: rgba(207, 210, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.mobile-submenu a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.mobile-client-btn {
  width: 100%;
  margin-top: 22px;
  padding: 15px 22px;
  border-radius: 14px;
  background: var(--theme-orange);
  color: #ffffff !important;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 14px 28px rgba(210, 116, 29, 0.25);
}

.mobile-client-btn:hover {
  background: var(--theme-blue);
  color: #ffffff !important;
}

.mobile-client-btn i {
  font-size: 17px;
  color: #ffffff;
}

body.mobile-menu-open {
  overflow: hidden;
}


.vh-blog-subnav {
  padding: 22px 0 0;
  background: #ffffff;
}

.vh-blog-subnav-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border-light);
}

.vh-blog-subnav-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(47, 47, 228, 0.06);
  color: var(--hero-dark);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.vh-blog-subnav-wrap a:hover,
.vh-blog-subnav-wrap a.is-active {
  background: var(--theme-blue);
  color: var(--white);
}

.vh-home-post-section,
.vh-related-posts,
.vh-archive-listing,
.vh-single-layout {
  padding: 90px 0;
  background: #ffffff;
}

.vh-home-post-section-alt {
  background: #f7f8ff;
}

.vh-section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}


.vh-blog-hero,
.vh-archive-hero,
.vh-single-hero {
  padding: 78px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(47, 47, 228, 0.14), transparent 36%),
    #ffffff;
}

.vh-blog-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
}

.vh-blog-hero-content p {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: 17px;
}

.vh-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.vh-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.vh-hero-trust div,
.vh-blog-hero-card-inner {
  border-radius: 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.vh-hero-trust div {
  padding: 18px 20px;
}

.vh-hero-trust strong {
  display: block;
  color: var(--theme-blue);
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.vh-hero-trust span {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--hero-text);
  font-weight: 700;
}

.vh-blog-hero-card {
  position: relative;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--theme-blue) 0%, #16168f 100%);
  box-shadow: var(--shadow-strong);
}

.vh-blog-hero-card::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background: var(--theme-orange);
}

.vh-blog-hero-card-inner {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.vh-mini-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--theme-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vh-blog-hero-card-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.vh-blog-hero-card-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vh-blog-hero-card-inner li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--hero-text);
  font-weight: 700;
}

.vh-blog-hero-card-inner li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--theme-blue);
  font-weight: 900;
}


.vh-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

.vh-category-card {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.vh-category-card:hover,
.vh-post-card:hover,
.vh-sidebar-widget:hover,
.vh-article:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 47, 228, 0.24);
}

.vh-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 47, 228, 0.08);
  color: var(--theme-blue);
  font-size: 28px;
  margin-bottom: 18px;
}

.vh-category-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.2;
}

.vh-category-card p {
  margin: 0;
  color: var(--hero-text);
  font-size: 15px;
}

.vh-category-card-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.vh-category-card-footer span {
  color: var(--hero-text);
  font-size: 14px;
  font-weight: 800;
}

.vh-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
}

.vh-post-card,
.vh-sidebar-widget,
.vh-article {
  border-radius: 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
  overflow: hidden;
  transition: 0.25s ease;
}

.vh-post-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #eff0ff 0%, #f8f8ff 100%);
}

.vh-post-card-image img,
.vh-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-post-card-body {
  padding: 24px;
}

.vh-post-card-meta,
.vh-single-meta,
.vh-breadcrumbs,
.vh-post-chip-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vh-post-card-meta,
.vh-single-meta,
.vh-breadcrumbs {
  font-size: 13px;
  font-weight: 700;
}

.vh-post-card-meta span,
.vh-single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vh-post-card h2,
.vh-post-card h3 {
  margin: 12px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.vh-post-card p {
  margin: 0 0 18px;
  font-size: 15px;
}

.vh-post-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(210, 116, 29, 0.12);
  color: var(--theme-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.vh-post-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.vh-blog-cta {
  padding: 0 0 90px;
  background: #ffffff;
}

.vh-cta-box {
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(47, 47, 228, 0.24), transparent 38%),
    linear-gradient(135deg, #080824 0%, #11115a 100%);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.vh-cta-box h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.vh-cta-box p {
  margin: 14px 0 0;
  color: #cfd2ff;
}

.vh-content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.vh-article {
  padding: 0;
}

.vh-article-image {
  aspect-ratio: 16 / 8;
  background: linear-gradient(135deg, #eff0ff 0%, #f8f8ff 100%);
}

.vh-article-content {
  padding: 34px;
  font-size: 16.5px;
}

.vh-article-content h2,
.vh-article-content h3,
.vh-article-content h4 {
  color: var(--hero-dark);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.2;
}

.vh-article-content ul,
.vh-article-content ol {
  padding-left: 1.25rem;
}

.vh-article-content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--theme-orange);
  background: #f8f8ff;
  border-radius: 0 16px 16px 0;
}

.vh-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.vh-article-content th,
.vh-article-content td {
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  text-align: left;
}

.vh-article-tags {
  padding: 0 34px 34px;
  color: var(--hero-text);
  font-size: 14px;
  font-weight: 700;
}

.vh-sidebar {
  display: grid;
  gap: 20px;
}

.vh-sidebar-widget {
  padding: 26px;
}

.vh-sidebar-title {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.2;
}

.vh-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vh-sidebar-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.vh-sidebar-list li:last-child {
  border-bottom: 0;
}

.vh-search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vh-search-form input[type="search"] {
  flex: 1 1 180px;
  min-width: 0;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(47, 47, 228, 0.16);
  outline: none;
}

.vh-search-form button {
  padding: 13px 18px;
  border: 0;
  border-radius: 14px;
  background: var(--theme-blue);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.vh-pagination .nav-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.vh-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(47, 47, 228, 0.16);
  color: var(--hero-dark);
  font-weight: 800;
}

.vh-pagination .current,
.vh-pagination .page-numbers:hover {
  background: var(--theme-blue);
  color: #ffffff;
}

.vh-empty-state {
  padding: 42px;
  border-radius: 24px;
  border: 1px dashed rgba(47, 47, 228, 0.24);
  text-align: center;
}

.modern-footer {
  background:
    radial-gradient(circle at top right, rgba(47, 47, 228, 0.35), transparent 38%),
    linear-gradient(135deg, #080824 0%, #11115a 100%);
  color: var(--white);
  overflow: hidden;
}

.footer-main {
  padding: 90px 24px 65px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.9fr;
  gap: 50px;
}

.footer-logo img {
  max-height: 54px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--footer-text);
  font-size: 16px;
  line-height: 1.8;
  max-width: 340px;
}

.footer-column h5 {
  position: relative;
  color: var(--white);
  font-size: 19px;
  margin: 0 0 28px;
  padding-bottom: 14px;
}

.footer-column h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--theme-orange);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-column a::before {
  content: "›";
  color: var(--theme-orange);
  margin-right: 9px;
  font-weight: 900;
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-orange);
  color: var(--white) !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(210, 116, 29, 0.32);
}

.footer-btn::before {
  display: none;
}

.footer-btn:hover {
  background: var(--theme-blue);
  padding-left: 24px !important;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--footer-text);
  font-size: 15px;
}

.footer-bottom a {
  color: var(--theme-orange);
  font-weight: 800;
  text-decoration: none;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

@media (max-width: 1199px) {
  .desktop-nav,
  .client-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-container {
    padding: 18px 22px;
  }

  .vh-post-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .vh-content-with-sidebar,
  .vh-cta-box {
    grid-template-columns: 1fr;
  }

  .vh-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .vh-container {
    width: min(100% - 36px, 1320px);
  }

  .vh-post-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding: 70px 24px 50px;
  }
}

@media (max-width: 575px) {
  .header-container {
    padding: 16px 18px;
  }

  .site-logo img {
    max-height: 42px;
  }

  .vh-archive-hero,
  .vh-single-hero,
  .vh-home-post-section,
  .vh-related-posts,
  .vh-archive-listing,
  .vh-single-layout {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .vh-blog-subnav {
    padding-top: 16px;
  }

  .vh-blog-subnav-wrap {
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
  }

  .vh-blog-subnav-wrap a {
    white-space: nowrap;
    padding: 11px 16px;
  }

  .vh-cta-box,
  .vh-sidebar-widget,
  .vh-category-card,
  .vh-post-card-body,
  .vh-article-content {
    padding: 22px;
  }

  .vh-section-heading {
    margin-bottom: 34px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-main {
    padding: 55px 20px 42px;
  }
}
