/* ==========================================================================
   Veeble Blog - match veeble-v2 header, footer, type, and color
   ========================================================================== */

:root {
  --vbl-blue: #324ff5;
  --vbl-blue-hover: #3b5bf1;
  --vbl-green: #2bf17a;
  --vbl-black: #121212;
  --vbl-ink: #1a1a1a;
  --vbl-muted: #555;
  --vbl-gray: #a9a9a9;
  --vbl-white: #fff;
  --vbl-radius: 8px;
  --vbl-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  --vbl-max: 1400px;
}

.veeble-blog,
.veeble-blog body,
body.veeble-blog {
  font-family: "Onest", sans-serif;
  color: var(--vbl-ink);
  background: var(--vbl-white);
}

body.veeble-blog {
  background: #fff !important;
}

.veeble-blog h1,
.veeble-blog h2,
.veeble-blog h3,
.veeble-blog h4,
.veeble-blog h5,
.veeble-blog h6,
.veeble-blog .entry-title,
.veeble-blog .ast-archive-title {
  font-family: "Onest", sans-serif;
  color: var(--vbl-ink);
  letter-spacing: -0.4px;
}

.veeble-blog a {
  color: var(--vbl-blue);
}

.veeble-blog a:hover {
  color: var(--vbl-blue-hover);
}

body.veeble-blog .vbl-chrome a,
body.veeble-blog .vbl-footer a,
body.veeble-blog #menuDropdownContent a {
  text-decoration: none;
}

body.veeble-blog #menuDropdownContent a {
  color: inherit;
}

/* Hide leftover Astra chrome if a builder still renders */
body.veeble-blog #masthead,
body.veeble-blog #colophon,
body.veeble-blog .ast-mobile-header-wrap,
body.veeble-blog .ast-desktop-header-content,
body.veeble-blog .ast-mobile-popup-drawer {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Utility subset used by header.js dropdown + shared chrome
   -------------------------------------------------------------------------- */
.hidden { display: none !important; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-\[1_0_0\] { flex: 1 0 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.self-stretch { align-self: stretch; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.w-full { width: 100%; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.h-4 { height: 1rem; }
.h-\[80px\] { height: 80px; }
.w-\[600px\] { width: 600px; max-width: 90vw; }
.p-3 { padding: 0.75rem; }
.p-\[12px\] { padding: 12px; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.ml-3 { margin-left: 0.75rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.rounded { border-radius: 0.25rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-\[16px\] { border-radius: 16px; }
.bg-white { background: #fff; }
.bg-\[\#f5f5f7\] { background: #f5f5f7; }
.bg-\[\#1A1A1A\] { background: #1a1a1a; }
.text-\[\#1A1A1A\] { color: #1a1a1a; }
.text-\[\#555\] { color: #555; }
.text-\[\#aaa\] { color: #aaa; }
.text-white { color: #fff; }
.text-\[12px\] { font-size: 12px; }
.text-\[16px\] { font-size: 16px; }
.font-normal { font-weight: 400; }
.leading-\[160\%\] { line-height: 160%; }
.tracking-\[-0\.2px\] { letter-spacing: -0.2px; }
.opacity-0 { opacity: 0; }
.transition-all { transition: all 0.2s ease; }
.duration-200 { transition-duration: 0.2s; }
.rotate-180 { transform: rotate(180deg); }
.left-0 { left: 0; }
.right-0 { right: 0; }
.-top-4 { top: -1rem; }
.top-0 { top: 0; }

.shadow-\[0px_2px_16px_0px_rgba\(0\,0\,0\,0\.05\)\] {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.hover\:bg-\[\#1A1A1A\]:hover { background: #1a1a1a; }
.group:hover .group-hover\:text-white { color: #fff; }
.group:hover .group-hover\:text-gray-300 { color: #d1d5db; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

.menu-item.active .menu-text,
.menu-item.active .vbl-menu-text {
  color: var(--vbl-blue-hover) !important;
}

#menuDropdownContent {
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 9999 !important;
  min-width: 600px;
  max-width: 90vw;
}

#menuOverlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 120px;
  bottom: 0;
  background: #26283169;
  opacity: 0.7;
  z-index: 40;
  display: none;
}

#menuOverlay.active {
  display: block;
}

@media (max-width: 1023px) {
  #menuDropdownContent,
  #menuOverlay {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   Header chrome
   -------------------------------------------------------------------------- */
 .vbl-chrome {
  width: 100%;
  background: #fff;
  font-family: "Onest", sans-serif;
}

 .vbl-topbar {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(270deg, rgba(43, 241, 122, 0.1) -2.73%, rgba(43, 255, 0, 0.01) 87.05%);
}

 .vbl-container {
  width: 100%;
  max-width: var(--vbl-max);
  margin: 0 auto;
}

 .vbl-container--bar,
 .vbl-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

 .vbl-topbar__right {
  display: none;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

 .vbl-toplink {
  color: var(--vbl-muted) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.4px;
  text-decoration: none !important;
}

 .vbl-toplink:hover,
 .vbl-toplink--current {
  color: var(--vbl-ink) !important;
}

 .vbl-refer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.4px;
  background: var(--vbl-blue);
  border-radius: 16px;
  padding: 4px 10px 4px 6px;
  text-decoration: none !important;
  transition: background 0.3s, color 0.3s;
}

 .vbl-refer:hover {
  background: var(--vbl-green);
  color: #000 !important;
}

 .vbl-nav {
  padding: 0 16px;
}

 .vbl-nav__inner {
  padding: 16px 0;
}

 .vbl-logo {
  height: 40px;
  width: auto;
  display: block;
}

 .vbl-menu-wrap {
  display: none;
}

 .vbl-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

 .vbl-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

 .vbl-menu-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -0.4px;
  color: var(--vbl-ink);
  transition: color 0.2s;
}

.vbl-menu-item:hover .vbl-menu-text {
  color: var(--vbl-blue-hover);
}

 .vbl-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

 .vbl-btn {
  display: inline-flex;
  height: 40px;
  padding: 8px 24px;
  align-items: center;
  justify-content: center;
  border-radius: var(--vbl-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.4px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

 .vbl-btn--dark {
  background: var(--vbl-black);
  color: #fafafa !important;
}

 .vbl-btn--dark:hover {
  background: #3a3a3a;
  color: #fafafa !important;
}

 .vbl-btn--ghost {
  background: transparent;
  color: var(--vbl-black) !important;
}

 .vbl-btn--ghost:hover {
  background: #f3f4f6;
}

 .vbl-btn--block {
  width: 100%;
}

 .vbl-btn__inner {
  display: flex;
  align-items: center;
  gap: 4px;
}

 .vbl-btn__icon-invert {
  filter: invert(1);
}

 .vbl-mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

 .vbl-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Mobile drawer */
 .vbl-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #fff;
}

 .vbl-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

 .vbl-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}

 .vbl-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 8px;
}

 .vbl-drawer__section-label {
  padding: 12px 16px;
  font-size: 16px;
  color: var(--vbl-muted);
}

 .vbl-drawer__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 24px;
  font-weight: 500;
  color: var(--vbl-black);
  text-align: left;
}

 .vbl-drawer__other {
  display: block;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--vbl-muted) !important;
  text-decoration: none !important;
}

 .vbl-drawer__service {
  display: flex;
  flex-direction: column;
  padding: 16px;
  text-decoration: none !important;
}

 .vbl-drawer__service-title {
  font-size: 24px;
  color: var(--vbl-black);
}

 .vbl-drawer__service-sub {
  font-size: 12px;
  color: var(--vbl-muted);
}

 .vbl-drawer__footer {
  padding: 16px;
  border-top: 1px solid #f3f4f6;
}

@media (min-width: 640px) {
 .vbl-nav { padding: 0 48px; }
}

@media (min-width: 768px) {
 .vbl-topbar { padding-left: 80px; padding-right: 80px; }
 .vbl-nav { padding: 0 80px; }
  .md\:flex { display: flex; }
 .vbl-topbar__right { display: flex; }
}

@media (min-width: 1024px) {
 .vbl-topbar { display: flex; }
  .lg\:flex { display: flex !important; }
  .lg\:block { display: block !important; }
  .lg\:hidden { display: none !important; }
 .vbl-actions { display: flex; }
 .vbl-mobile-actions { display: none; }
 .vbl-menu-wrap { display: block; }
 .vbl-nav { padding: 0 80px; }
 .vbl-drawer { display: none !important; }
}

@media (min-width: 1280px) {
 .vbl-topbar,
 .vbl-nav {
    padding-left: 96px;
    padding-right: 96px;
  }
 .vbl-menu { gap: 40px; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
 .vbl-footer {
  font-family: "Onest", sans-serif;
  background: #fff;
  margin-top: 0;
}

 .vbl-cta {
  padding: 72px 24px 96px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, rgba(43, 241, 122, 0.06) 100%);
}

 .vbl-cta__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--vbl-ink);
}

 .vbl-cta__text {
  margin: 0 auto 24px;
  max-width: 560px;
  font-size: 16px;
  color: var(--vbl-muted);
}

 .vbl-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: var(--vbl-radius);
  background: var(--vbl-black);
  color: #fafafa !important;
  text-decoration: none !important;
  font-size: 14px;
}

 .vbl-cta__btn:hover {
  background: #3a3a3a;
  color: #fff !important;
}

 .vbl-footer-dark {
  background: #000;
  color: #fff;
  border-radius: 48px 48px 0 0;
  padding: 32px 16px 80px;
}

 .vbl-footer-dark__inner {
  max-width: 1000px;
  margin: 0 auto;
}

 .vbl-footer-cols {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

 .vbl-footer-col__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

 .vbl-footer-col__group +.vbl-footer-col__group {
  margin-top: 32px;
}

 .vbl-footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

 .vbl-footer-col__links a {
  color: #a9a9a9 !important;
  text-decoration: none !important;
}

 .vbl-footer-col__links a:hover {
  color: #fff !important;
}

 .vbl-footer-light {
  background: #fff;
  border-radius: 48px 48px 0 0;
  margin-top: -48px;
  position: relative;
}

 .vbl-footer-light__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 16px 40px;
  text-align: left;
}

 .vbl-legal {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 15px;
}

 .vbl-legal a {
  color: var(--vbl-muted) !important;
  text-decoration: none !important;
}

 .vbl-legal a:hover {
  color: var(--vbl-ink) !important;
}

 .vbl-social {
  display: flex;
  gap: 12px;
  margin: 24px 0 16px;
}

 .vbl-social__btn {
  display: flex;
  background: #000;
  border-radius: 999px;
  padding: 4px;
  line-height: 0;
}

 .vbl-heart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  letter-spacing: -0.9px;
  line-height: 30px;
  color: #000;
  margin: 0 0 16px;
}

 .vbl-address {
  margin: 0;
  font-size: 16px;
  color: var(--vbl-muted);
}

 .vbl-pay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-top: 40px;
}

 .vbl-pay__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

 .vbl-pay__row img {
  height: auto;
  width: max-content !important;
}

 .vbl-pay__more {
  position: relative;
  color: var(--vbl-blue) !important;
  text-decoration: none !important;
  padding-right: 14px;
  font-size: 14px;
}

 .vbl-pay__more svg {
  position: absolute;
  top: 0;
  right: 0;
}

 .vbl-gst {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(82, 82, 82, 0.05);
  outline: 1px solid rgba(82, 82, 82, 0.2);
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

 .vbl-wordmark {
  display: flex;
  justify-content: center;
  padding: 0 16px 8px;
}

 .vbl-wordmark img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
 .vbl-footer-dark {
    padding: 80px 80px 160px;
  }
 .vbl-footer-cols {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
 .vbl-footer-light__inner {
    padding: 80px 16px;
    text-align: center;
  }
 .vbl-legal {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
  }
 .vbl-social,
 .vbl-heart,
 .vbl-address,
 .vbl-pay {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 1024px) {
 .vbl-footer-dark {
    padding-left: 160px;
    padding-right: 160px;
  }
}

/* --------------------------------------------------------------------------
   Full-bleed blog layout (Astra wrappers)
   -------------------------------------------------------------------------- */
body.veeble-blog .site-content,
body.veeble-blog.ast-separate-container,
body.veeble-blog.ast-plain-container,
body.veeble-blog.ast-separate-container .site-content {
  background: #fff !important;
}

body.veeble-blog .ast-container {
  max-width: none !important;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.veeble-blog #primary,
body.veeble-blog.ast-separate-container #primary {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.veeble-blog .ast-breadcrumbs-wrapper,
body.veeble-blog .ast-archive-description,
body.veeble-blog .ast-header-breadcrumb,
body.veeble-blog .main-header-bar.ast-header-breadcrumb,
body.veeble-blog #ast-scroll-top {
  display: none !important;
}

.vbl-page {
  width: 100%;
  background: #fff;
}

/* --------------------------------------------------------------------------
   Hero + search
   -------------------------------------------------------------------------- */
.vbl-hero {
  position: relative;
  z-index: 4;
  overflow: visible;
  background: linear-gradient(180deg, rgba(43, 241, 122, 0.12) 0%, #ffffff 72%);
  padding: 56px 24px 40px;
  text-align: center;
}

.vbl-hero--compact {
  padding: 40px 24px 32px;
  background: linear-gradient(180deg, rgba(43, 241, 122, 0.08) 0%, #ffffff 85%);
}

.vbl-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.vbl-hero__kicker {
  margin: 0 0 10px;
  color: #3b5bf1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vbl-hero__kicker a {
  color: inherit;
  text-decoration: none;
}

.vbl-hero__kicker a:hover {
  color: var(--vbl-blue-hover);
}

.vbl-hero__title {
  margin: 0 0 12px;
  color: var(--vbl-ink);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 650;
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.vbl-hero--compact .vbl-hero__title {
  font-size: clamp(28px, 4vw, 40px);
}

.vbl-hero__sub {
  margin: 0 auto 28px;
  max-width: 600px;
  color: var(--vbl-muted);
  font-size: 16px;
  line-height: 1.55;
}

.vbl-hero--compact .vbl-hero__sub {
  margin-bottom: 20px;
}

.vbl-author-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(43, 241, 122, 0.12) 0%, #ffffff 78%);
  padding: 48px 24px 36px;
  text-align: center;
}

.vbl-author-hero__inner {
  max-width: 680px;
  margin: 0 auto;
}

.vbl-author-hero__avatar {
  display: flex;
  justify-content: center;
  margin: 8px 0 16px;
}

.vbl-author-hero__photo,
body.veeble-blog .vbl-author-hero__photo {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--vbl-shadow);
  background: #eef1ff;
}

.vbl-author-hero__bio {
  margin-bottom: 12px;
}

.vbl-author-hero__count {
  margin: 0;
  color: var(--vbl-gray);
  font-size: 14px;
  font-weight: 600;
}

.vbl-search {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
  padding: 6px 6px 6px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: var(--vbl-shadow);
}

.vbl-search__icon {
  flex: 0 0 auto;
  color: #888;
}

.vbl-search__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  color: var(--vbl-ink);
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
}

body.veeble-blog .vbl-search__input:focus,
body.veeble-blog .vbl-search__input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.vbl-search__input[type="search"]::-webkit-search-decoration,
.vbl-search__input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.vbl-search__btn {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: var(--vbl-black);
  color: #fafafa;
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.vbl-search__btn:hover {
  background: #2a2a2a;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Category chips
   -------------------------------------------------------------------------- */
.vbl-chips {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 16px auto 0;
}

.vbl-chips__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.vbl-chips__dropdown {
  display: none;
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.vbl-chips__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--vbl-shadow);
  color: var(--vbl-ink);
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.vbl-chips__toggle::-webkit-details-marker,
.vbl-chips__toggle::marker {
  display: none;
}

.vbl-chips__toggle svg {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.vbl-chips__dropdown[open] .vbl-chips__toggle svg {
  transform: rotate(180deg);
}

.vbl-chips__panel {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  max-height: min(60vh, 320px);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  -webkit-overflow-scrolling: touch;
}

.vbl-chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border: 1px solid #ececec;
  border-radius: 999px;
  background: #fff;
  color: var(--vbl-ink) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.vbl-chip:hover {
  border-color: rgba(50, 79, 245, 0.35);
  color: var(--vbl-blue-hover) !important;
  background: rgba(50, 79, 245, 0.04);
}

@media (max-width: 700px) {
  .vbl-chips {
    margin-top: 12px;
  }

  .vbl-chips__row {
    display: none;
  }

  .vbl-chips__dropdown {
    display: block;
  }

  .vbl-chips__panel .vbl-chip {
    display: flex;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    justify-content: flex-start;
  }

  .vbl-chips__panel .vbl-chip:hover,
  .vbl-chips__panel .vbl-chip:focus-visible {
    background: rgba(50, 79, 245, 0.06);
  }
}

/* --------------------------------------------------------------------------
   Sections + cards
   -------------------------------------------------------------------------- */
.vbl-section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 72px;
}

.vbl-section--related {
  padding-top: 8px;
}

.vbl-section__head {
  margin-bottom: 28px;
}

.vbl-section__head--late {
  margin-top: 40px;
}

.vbl-section__title {
  margin: 0 0 8px;
  color: var(--vbl-ink);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 650;
  letter-spacing: -0.6px;
}

.vbl-featured {
  margin-bottom: 16px;
}

body.veeble-blog .vbl-card,
body.veeble-blog article.vbl-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: #fff !important;
  border: 1px solid #f2f2f2 !important;
  border-radius: 16px !important;
  box-shadow: var(--vbl-shadow) !important;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.veeble-blog article.vbl-card,
  body.veeble-blog article.vbl-card.ast-width-md-6,
  body.veeble-blog article.vbl-card.ast-grid-common-col,
  body.veeble-blog article.vbl-card.ast-full-width {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    padding: 0 !important;
  }
}

.vbl-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f6ff 0%, #eefbf4 100%);
}

.vbl-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.vbl-card:hover .vbl-card__img {
  transform: scale(1.04);
}

.vbl-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(50, 79, 245, 0.12), rgba(43, 241, 122, 0.16));
}

.vbl-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
  padding: 20px 22px 22px;
}

.vbl-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vbl-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(50, 79, 245, 0.08);
  color: var(--vbl-blue) !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
}

.vbl-pill:hover {
  background: rgba(50, 79, 245, 0.14);
  color: var(--vbl-blue-hover) !important;
}

.vbl-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.35;
}

.vbl-card__title a {
  color: var(--vbl-ink);
  text-decoration: none;
}

.vbl-card__title a:hover {
  color: var(--vbl-blue-hover);
}

body.veeble-blog .vbl-card a:focus,
body.veeble-blog .vbl-card a:focus-visible,
body.veeble-blog .vbl-card__title a:focus,
body.veeble-blog .vbl-card__title a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.vbl-card__excerpt {
  margin: 0;
  color: var(--vbl-muted);
  font-size: 14px;
  line-height: 1.55;
}

.vbl-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 6px;
}

.vbl-card__author,
body.veeble-blog .vbl-card__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--vbl-ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.vbl-card__author:hover,
body.veeble-blog .vbl-card__author:hover {
  color: var(--vbl-blue-hover);
}

.vbl-card__avatar,
body.veeble-blog .vbl-card__avatar {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  background: #eef1ff;
}

.vbl-card--featured .vbl-card__avatar {
  width: 40px;
  height: 40px;
}

.vbl-card__author-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vbl-card__meta {
  margin: 0;
  color: var(--vbl-gray);
  font-size: 13px;
}

.vbl-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 700px) {
  .vbl-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vbl-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.veeble-blog .vbl-card--featured,
body.veeble-blog article.vbl-card--featured,
body.veeble-blog article.vbl-card.vbl-card--featured {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  float: none !important;
}

.vbl-card--featured .vbl-card__media {
  aspect-ratio: 16 / 7;
  min-height: 240px;
  height: auto;
}

.vbl-card--featured .vbl-card__body {
  justify-content: flex-start;
  padding: 28px 32px 32px;
}

.vbl-card--featured .vbl-card__title {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.7px;
}

.vbl-card--featured .vbl-card__excerpt {
  font-size: 16px;
}

.vbl-empty {
  margin: 0;
  padding: 48px 16px;
  color: var(--vbl-muted);
  text-align: center;
}

.vbl-pagination {
  margin-top: 40px;
  text-align: center;
}

.vbl-pagination .nav-links,
.vbl-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.vbl-pagination .page-numbers,
.vbl-pagination a,
.vbl-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  background: #fff;
  color: var(--vbl-ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.vbl-pagination .page-numbers.current,
.vbl-pagination .current {
  background: var(--vbl-black);
  border-color: var(--vbl-black);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Single article
   -------------------------------------------------------------------------- */
.vbl-page--article {
  padding-bottom: 24px;
}

body.veeble-blog .vbl-article,
body.veeble-blog article.vbl-article {
  max-width: 1100px;
  margin: 0 auto !important;
  padding: 32px 24px 8px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.vbl-article__header,
.vbl-article__hero {
  max-width: 760px;
}

.vbl-article__layout {
  display: grid;
  gap: 28px;
}

@media (min-width: 960px) {
  .vbl-article__layout--toc {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
}

.vbl-toc {
  min-width: 0;
}

@media (min-width: 960px) {
  .vbl-toc {
    position: sticky;
    top: 24px;
  }
}

.vbl-toc__box {
  margin: 0;
  padding: 16px 14px 10px;
  border: 1px solid #f2f2f2;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--vbl-shadow);
}

.vbl-toc__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 8px;
  padding: 4px 8px;
  color: var(--vbl-ink);
  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.2px;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.vbl-toc__title::-webkit-details-marker,
.vbl-toc__title::marker {
  display: none;
}

.vbl-toc__title::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin: 0;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.vbl-toc__box[open] .vbl-toc__title::after {
  transform: rotate(-135deg);
  margin: 4px 0 0;
}

.vbl-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: vbl-toc;
}

.vbl-toc__item {
  margin: 0;
}

.vbl-toc__item a {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  padding: 8px;
  border-radius: 8px;
  color: var(--vbl-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}

.vbl-toc__item a::before {
  counter-increment: vbl-toc;
  content: counter(vbl-toc, decimal-leading-zero);
  color: var(--vbl-blue);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  text-align: left;
}

.vbl-toc__label {
  min-width: 0;
  display: block;
}

.vbl-toc__item a:hover {
  background: rgba(50, 79, 245, 0.06);
  color: var(--vbl-blue-hover);
}

.vbl-toc__item--h3 a {
  color: var(--vbl-muted);
  font-weight: 500;
}

.vbl-toc__item--h3 .vbl-toc__label {
  padding-left: 12px;
}

html {
  scroll-behavior: smooth;
}

.vbl-article__header {
  margin-bottom: 8px;
}

.vbl-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--vbl-gray);
  font-size: 13px;
}

.vbl-crumbs a {
  color: var(--vbl-muted);
  text-decoration: none;
}

.vbl-crumbs a:hover {
  color: var(--vbl-blue-hover);
}

.vbl-article__title {
  margin: 12px 0 8px;
  color: var(--vbl-ink);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 650;
  letter-spacing: -1.1px;
  line-height: 1.15;
}

.vbl-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 28px;
}

.vbl-byline__avatar {
  flex: 0 0 auto;
  line-height: 0;
}

.vbl-byline__photo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

body.veeble-blog .vbl-byline__name {
  display: block;
  color: var(--vbl-ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

body.veeble-blog .vbl-byline__name:hover {
  color: var(--vbl-blue-hover);
}

.vbl-byline__dates {
  margin: 2px 0 0;
  color: var(--vbl-muted);
  font-size: 13px;
}

.vbl-article__hero {
  margin: 0 0 32px;
}

.vbl-article__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.vbl-article__body {
  color: #333;
  font-size: 17px;
  line-height: 1.75;
}

.vbl-article__body h2,
.vbl-article__body h3,
.vbl-article__body h4 {
  margin: 1.6em 0 0.6em;
  color: var(--vbl-ink);
  letter-spacing: -0.4px;
}

.vbl-article__body p,
.vbl-article__body ul,
.vbl-article__body ol {
  margin: 0 0 1em;
}

.vbl-article__body a {
  color: var(--vbl-blue);
}

.vbl-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.vbl-article__body pre,
.vbl-article__body code {
  font-size: 0.95em;
  border-radius: 8px;
}

.vbl-article__body pre {
  padding: 16px;
  overflow: auto;
  background: #fafafa;
}

.vbl-article__body blockquote {
  margin: 1.4em 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--vbl-blue);
  color: var(--vbl-muted);
}

@media (max-width: 860px) {
  .vbl-card--featured .vbl-card__media {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  }

  .vbl-card--featured .vbl-card__body {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .vbl-hero {
    padding: 36px 16px 28px;
  }

  .vbl-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vbl-search {
    flex-wrap: wrap;
    padding: 12px;
  }

  .vbl-search__btn {
    width: 100%;
  }

  body.veeble-blog .vbl-article,
  body.veeble-blog article.vbl-article {
    padding: 24px 16px 8px !important;
  }
}

