/* Blog Index — premium editorial layer.
   Extends the global HansalDev system (theme.css / premium.css / motion.css)
   plus home.css primitives. Only blog-specific layout + micro-adjustments
   live here; everything inherits the shared tokens (--hs-*). */

/* --- Shared page hero -------------------------------------------------------
   .hd-about-hero is the global PageHero wrapper (same markup as About/Affiliate).
   The breadcrumb reveal + reduced-motion handling live in motion.css and
   animations.js keyed on these classes, so padding is mirrored here because
   about.css is not loaded on this page. */
.hd-about-hero.hd-blog-hero { padding: 108px 0 88px; }
.hd-blog-hero .hs-about-breadcrumb { margin-bottom: 28px; }
.hs-about-breadcrumb .breadcrumb { margin-bottom: 0; font-size: 13px; }

.hd-blog-hero .hero-description p { max-width: 560px; }
.hd-blog-hero .hero-meta { margin-top: 24px; }

/* --- Hero visual: stacked real article thumbnails -------------------------- */
.hs-blog-hero-visual {
  position: relative;
  height: 460px;
}
.hs-blog-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4% 10%;
  background:
    radial-gradient(60% 60% at 70% 30%, rgba(109, 74, 255, 0.18), transparent 70%),
    radial-gradient(50% 50% at 20% 75%, rgba(109, 74, 255, 0.10), transparent 70%);
  border-radius: 999px;
  filter: blur(10px);
  z-index: 0;
}
.hs-blog-stack {
  position: absolute;
  display: block;
  width: 72%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hs-border);
  background: var(--hs-surface);
  box-shadow: var(--hs-shadow-md);
  text-decoration: none;
  color: inherit;
  transition: transform 300ms ease, box-shadow 300ms ease;
  z-index: 1;
}
.hs-blog-stack img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--hs-bg-soft);
}
.hs-blog-stack-body { padding: 12px 16px; }
.hs-blog-stack-body strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font: 700 13px/1.4 var(--font-heading);
  color: var(--hs-heading);
}
.hs-blog-stack-1 { top: 0; right: 0; z-index: 3; width: 74%; transform: rotate(1.4deg); }
.hs-blog-stack-2 { top: 106px; left: 0; z-index: 2; width: 58%; transform: rotate(-2.2deg); }
.hs-blog-stack-3 { bottom: 0; right: 52px; z-index: 1; width: 56%; transform: rotate(0.8deg); opacity: 0.96; }
.hs-blog-stack:hover { transform: translateY(-4px) rotate(0deg); box-shadow: var(--hs-shadow-lg); z-index: 4; }
.hs-blog-stack-2:hover { transform: translateY(-4px) rotate(-1deg); }

/* --- Featured / Explore section --------------------------------------------- */
.hd-blog-featured { padding: 72px 0 64px; background: var(--hs-surface); }
.hd-blog-featured .hd-section-heading { max-width: 720px; }

.hs-featured-card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
  transition: transform var(--hs-card-transition);
}
.hs-featured-card:hover { transform: translateY(-3px); }
.hs-featured-media {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-md);
  background: var(--hs-bg-soft);
}
.hs-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.hs-featured-card:hover .hs-featured-media img { transform: scale(1.02); }

.hs-featured-title {
  margin: 18px 0 10px;
  font: 700 clamp(21px, 2.1vw, 28px)/1.3 var(--font-heading);
  color: var(--hs-heading);
  transition: color var(--hs-transition);
}
.hs-featured-card:hover .hs-featured-title { color: var(--hs-primary); }
.hs-featured-excerpt {
  margin-bottom: 14px;
  color: var(--hs-muted);
  font-size: 15px;
  line-height: 1.65;
}
.hs-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--hs-muted);
  font-size: 13px;
}
.hs-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--hs-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.hs-featured-link .bi-arrow-right { transition: transform var(--hs-transition); }
.hs-featured-card:hover .hs-featured-link .bi-arrow-right { transform: translateX(3px); }

.hs-featured-secondary .hs-featured-media { aspect-ratio: 16/10; }
.hs-featured-secondary .hs-featured-title {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.35;
}

/* --- Category navigation (real data pills) ----------------------------------- */
.hs-category-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 24px 0 40px;
}
.hs-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--hs-border);
  border-radius: 999px;
  background: var(--hs-surface);
  color: var(--hs-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color var(--hs-transition), color var(--hs-transition), background var(--hs-transition);
}
.hs-category-pill:hover { border-color: var(--hs-primary); color: var(--hs-primary); }
.hs-category-pill.active {
  background: var(--hs-primary-light);
  color: var(--hs-primary);
  border-color: rgba(109, 74, 255, 0.35);
}
.hs-category-pill .hs-category-count {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(109, 74, 255, 0.10);
  color: var(--hs-primary);
}

/* --- Main content + sidebar layout -------------------------------------------- */
/* Reveal/stacking isolation: the featured section keeps a higher index than the
   article section, so fade/slide reveals on either side can never paint their
   children across the section boundary onto the other (e.g. the category nav or
   mobile search bar sitting over the featured card bodies on laptop/mobile). */
.hd-blog-featured { position: relative; z-index: 1; }
.hd-blog-main { position: relative; z-index: 0; padding: 40px 0 88px; background: var(--hs-surface); }
.hs-blog-main-head { max-width: 680px; margin-bottom: 32px; }

.hs-blog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }

/* --- Article cards (editorial 2-col, larger than before) ---------------------- */
.hs-blog-card { height: 100%; display: flex; flex-direction: column; transition: transform var(--hs-card-transition), box-shadow var(--hs-card-transition), border-color var(--hs-card-transition); }
.hs-blog-card:hover { transform: translateY(-5px); border-color: rgba(109, 74, 255, 0.25); box-shadow: var(--hs-shadow-md); }
.hs-blog-card .blog-list-card-image img { transition: transform 300ms ease; }
.hs-blog-card:hover .blog-list-card-image img { transform: scale(1.03); }
.hs-blog-card .blog-list-card-body { padding: 24px; flex: 1; }

.hs-blog-noimage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(109, 74, 255, 0.14), transparent 70%),
    linear-gradient(135deg, #F1EEFF, var(--hs-bg-soft) 60%, #E7E9EF);
}
.hs-blog-noimage svg { transition: transform 300ms ease; }
.hs-blog-card:hover .hs-blog-noimage svg { transform: scale(1.05); }

.hs-blog-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  margin-right: auto;
  border-radius: 999px;
  background: var(--hs-primary-light);
  color: var(--hs-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--hs-transition);
}
.hs-blog-badge:hover { color: var(--hs-primary); }

.hs-blog-card-title {
  margin: 14px 0 10px;
  font: 700 21px/1.3 var(--font-heading);
  color: var(--hs-heading);
}
.hs-blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--hs-transition);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hs-blog-card-title a:hover { color: var(--hs-primary); }

.hs-blog-card-desc {
  margin-bottom: 16px;
  color: var(--hs-muted);
  font-size: 15px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hs-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hs-border);
  color: var(--hs-muted);
  font-size: 13px;
}
.hs-blog-card-meta i { color: var(--hs-primary); }

.hs-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--hs-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.hs-blog-read-more .bi-arrow-right { transition: transform var(--hs-transition); }
.hs-blog-card:hover .hs-blog-read-more .bi-arrow-right { transform: translateX(3px); }

/* --- Sidebar widgets ------------------------------------------------------------ */
.hs-blog-sidebar .blog-sidebar-card { border-radius: var(--hs-radius-lg); box-shadow: var(--hs-shadow-sm); }
.hs-blog-widget-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hs-border);
  font: 700 18px/1.2 var(--font-heading);
  color: var(--hs-heading);
}
.hs-blog-widget-title i { color: var(--hs-primary); font-size: 16px; }

.hs-blog-search-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hs-blog-search-input {
  height: 52px;
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-button);
  background: var(--hs-bg);
  color: var(--hs-heading);
  font-size: 14px;
  transition: border-color var(--hs-transition), box-shadow var(--hs-transition);
}
.hs-blog-search-input::placeholder { color: var(--hs-muted); }
.hs-blog-search-input:focus {
  outline: none;
  border-color: var(--hs-primary);
  box-shadow: 0 0 0 3px rgba(109, 74, 255, 0.10);
}
.hs-blog-search-btn {
  height: 52px;
  padding: 0 20px;
  border: none;
  border-radius: var(--hs-radius-button);
  background: var(--hs-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--hs-transition), background var(--hs-transition);
}
.hs-blog-search-btn:hover { background: var(--hs-primary-hover); transform: translateY(-1px); }

.hs-recent-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}
.hs-recent-item + .hs-recent-item { border-top: 1px solid var(--hs-border); }
.hs-recent-thumb {
  width: 64px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--hs-bg-soft);
}
.hs-recent-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.hs-recent-item:hover .hs-recent-thumb img { transform: scale(1.03); }
.hs-recent-body { min-width: 0; }
.hs-recent-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--hs-heading);
  transition: color var(--hs-transition);
}
.hs-recent-item:hover .hs-recent-title { color: var(--hs-primary); }
.hs-recent-date { margin-top: 3px; font-size: 12px; color: var(--hs-muted); }
.hs-recent-date i { margin-right: 4px; }

.hs-sidebar-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 6px;
  color: var(--hs-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--hs-transition), background var(--hs-transition);
  border-radius: 8px;
}
.hs-sidebar-cat:hover { color: var(--hs-primary); background: var(--hs-primary-lighter); }
.hs-sidebar-cat.sidebar-active { color: var(--hs-primary); font-weight: 600; }
.hs-sidebar-cat .hs-sidebar-cat-name { flex: 1; }
.hs-sidebar-cat .hs-sidebar-cat-arrow { font-size: 13px; transition: transform var(--hs-transition); }
.hs-sidebar-cat:hover .hs-sidebar-cat-arrow { transform: translateX(2px); }
.hs-sidebar-cat .hs-sidebar-cat-count { font-size: 12px; color: var(--hs-muted); }

/* --- Product CTA (sidebar) ------------------------------------------------------- */
.hs-blog-product-cta {
  display: block;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(109, 74, 255, 0.14);
  background: linear-gradient(135deg, #F6F3FF 0%, #EDE7FF 55%, #F1EEFF 100%);
  box-shadow: var(--hs-shadow-sm);
  text-decoration: none;
  transition: transform var(--hs-card-transition), box-shadow var(--hs-card-transition);
}
.hs-blog-product-cta:hover { transform: translateY(-3px); box-shadow: var(--hs-shadow-md); }
.hs-blog-product-cta .hs-cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hs-primary); }
.hs-blog-product-cta h3 { margin: 10px 0 8px; font: 700 21px/1.3 var(--font-heading); color: var(--hs-heading); }
.hs-blog-product-cta p { margin-bottom: 14px; color: var(--hs-muted); font-size: 14px; line-height: 1.6; }
.hs-blog-product-img {
  margin: 14px 0 18px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(109, 74, 255, 0.18);
  background: var(--hs-surface);
}
.hs-blog-product-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

/* --- Pagination (Bootstrap customized) -------------------------------------------- */
.hs-blog-pagination { margin-top: 48px; }
.hs-blog-pagination .pagination { gap: 8px; margin: 0; }
.hs-blog-pagination .page-item .page-link {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-button);
  background: var(--hs-surface);
  color: var(--hs-muted);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition), opacity var(--hs-transition);
}
.hs-blog-pagination .page-item.active .page-link { background: var(--hs-primary); border-color: var(--hs-primary); color: #fff; }
.hs-blog-pagination .page-item:not(.active):not(.disabled) .page-link:hover { background: var(--hs-primary-light); border-color: var(--hs-primary); color: var(--hs-primary); }
.hs-blog-pagination .page-item.disabled .page-link { opacity: 0.45; }

/* --- Empty states ------------------------------------------------------------------ */
.hs-blog-empty {
  text-align: center;
  padding: 64px 24px;
  border: 1px dashed var(--hs-border);
  border-radius: var(--hs-radius-lg);
  background: var(--hs-bg-subtle);
}
.hs-blog-empty i { font-size: 34px; color: var(--hs-primary); opacity: 0.7; }
.hs-blog-empty h3 { margin: 14px 0 8px; font: 700 22px/1.3 var(--font-heading); color: var(--hs-heading); }
.hs-blog-empty p { margin-bottom: 20px; color: var(--hs-muted); font-size: 15px; }

/* --- Final CTA decoration -------------------------------------------------------------- */
.hs-final-cta { position: relative; overflow: hidden; }
.hs-cta-deco {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  color: rgba(109, 74, 255, 0.16);
  pointer-events: none;
  z-index: 0;
}

/* --- Mobile search (full-width block, order per spec) -------------------------------- */
.hs-blog-mobile-search .blog-sidebar-card { padding: 20px; }

/* --- Dark mode ------------------------------------------------------------------------ */
[data-theme="dark"] .hs-blog-stack { background: var(--hs-dark-surface); border-color: var(--hs-dark-border); }
[data-theme="dark"] .hs-blog-card { background: var(--hs-dark-surface); border-color: var(--hs-dark-border); }
[data-theme="dark"] .hs-blog-card:hover { border-color: rgba(109, 74, 255, 0.45); }
[data-theme="dark"] .hs-blog-card-meta { border-top-color: var(--hs-dark-border); }
[data-theme="dark"] .hs-blog-badge { background: rgba(109, 74, 255, 0.16); color: #C9BCFF; }
[data-theme="dark"] .hs-category-pill { background: var(--hs-dark-surface); border-color: var(--hs-dark-border); color: var(--hs-dark-muted); }
[data-theme="dark"] .hs-category-pill:hover { border-color: rgba(109, 74, 255, 0.6); color: #B79EFF; }
[data-theme="dark"] .hs-category-pill.active { background: rgba(109, 74, 255, 0.16); border-color: rgba(109, 74, 255, 0.5); color: #C9BCFF; }
[data-theme="dark"] .hs-blog-search-input { background: var(--hs-dark-surface); border-color: var(--hs-dark-border); color: var(--hs-dark-text); }
[data-theme="dark"] .hs-blog-widget-title { border-bottom-color: var(--hs-dark-border); }
[data-theme="dark"] .hs-recent-item + .hs-recent-item { border-top-color: var(--hs-dark-border); }
[data-theme="dark"] .hs-recent-thumb { background: var(--hs-dark-surface-secondary); }
[data-theme="dark"] .hs-blog-product-cta { background: linear-gradient(135deg, rgba(109, 74, 255, 0.18), rgba(109, 74, 255, 0.06)); border-color: rgba(109, 74, 255, 0.3); }
[data-theme="dark"] .hs-blog-product-cta h3 { color: var(--hs-dark-text); }
[data-theme="dark"] .hs-blog-pagination .page-item .page-link { background: var(--hs-dark-surface); border-color: var(--hs-dark-border); color: var(--hs-dark-muted); }
[data-theme="dark"] .hs-blog-pagination .page-item:not(.active):not(.disabled) .page-link:hover { background: rgba(109, 74, 255, 0.16); color: #C9BCFF; }
[data-theme="dark"] .hs-blog-empty { background: var(--hs-dark-surface-secondary); border-color: var(--hs-dark-border); }
[data-theme="dark"] .hs-blog-noimage { background: linear-gradient(135deg, rgba(109, 74, 255, 0.18), var(--hs-dark-surface-secondary)); }
[data-theme="dark"] .hs-cta-deco { color: rgba(109, 74, 255, 0.28); }

/* --- Responsive ------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .hs-blog-hero-visual { height: 400px; }
}

@media (max-width: 991.98px) {
  .hs-blog-sidebar { position: static; }
  .hd-blog-main { padding-top: 32px; }
}

@media (max-width: 767.98px) {
  .hd-blog-hero { padding: 96px 0 72px; }
  .hd-blog-featured { padding: 56px 0 48px; }
  .hs-blog-card-title { font-size: 19px; }
  .hs-blog-card .blog-list-card-body { padding: 20px; }
  .hs-category-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 32px;
  }
  .hs-category-pill { flex-shrink: 0; }
  .hs-cta-deco { display: none; }
}

@media (max-width: 575.98px) {
  .hs-blog-hero-visual { height: 340px; }
  .hs-blog-widget-title { font-size: 17px; }
}

/* --- Reduced motion ----------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hs-blog-stack,
  .hs-blog-stack:hover,
  .hs-blog-stack-2:hover,
  .hs-featured-card,
  .hs-featured-media img,
  .hs-featured-link .bi-arrow-right,
  .hs-blog-card,
  .hs-blog-card:hover,
  .hs-blog-card .blog-list-card-image img,
  .hs-blog-read-more .bi-arrow-right,
  .hs-blog-search-btn,
  .hs-recent-thumb img,
  .hs-sidebar-cat .hs-sidebar-cat-arrow,
  .hs-blog-product-cta,
  .hs-blog-pagination .page-item .page-link,
  .hs-category-pill,
  .hs-blog-badge {
    transition: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   ARTICLE PAGE — Premium Single Post
   ========================================================================== */

/* --- Article Hero ----------------------------------------------------------- */
.hs-article-hero {
  padding: 48px 0 32px;
  background: var(--hs-surface);
  border-bottom: 1px solid var(--hs-border);
}

.hs-article-hero-inner {
  animation: none; /* GSAP handles entrance */
}

/* Category Badge */
.hs-article-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: #F1EEFF;
  color: #6D4AFF;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background var(--hs-transition), color var(--hs-transition);
}
.hs-article-category-badge:hover {
  background: #E5E0FF;
  color: #5B3DD9;
}
[data-theme="dark"] .hs-article-category-badge {
  background: rgba(109, 74, 255, 0.16);
  color: #C9BCFF;
}
[data-theme="dark"] .hs-article-category-badge:hover {
  background: rgba(109, 74, 255, 0.24);
}

/* Article Title */
.hs-article-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--hs-heading);
  margin: 0 0 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Article Meta */
.hs-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  font-size: 14px;
  color: #667085;
  margin-bottom: 24px;
}
[data-theme="dark"] .hs-article-meta {
  color: #98A2B3;
}
.hs-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hs-meta-item svg {
  flex-shrink: 0;
  color: #667085;
}
[data-theme="dark"] .hs-meta-item svg {
  color: #98A2B3;
}

/* Share Bar */
.hs-article-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hs-border);
}
.hs-share-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hs-share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.hs-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--hs-border);
  border-radius: 10px;
  background: var(--hs-surface);
  color: var(--hs-muted);
  transition: background var(--hs-transition), color var(--hs-transition), border-color var(--hs-transition), transform var(--hs-transition);
}
.hs-share-btn:hover {
  background: #F1EEFF;
  color: #6D4AFF;
  border-color: #E5E0FF;
  transform: translateY(-2px);
}
[data-theme="dark"] .hs-share-btn:hover {
  background: rgba(109, 74, 255, 0.16);
  color: #C9BCFF;
  border-color: rgba(109, 74, 255, 0.3);
}
.hs-share-copy {
  cursor: pointer;
}
.hs-share-copy.copied .hs-copy-tooltip {
  opacity: 1;
  transform: translateY(0);
}
.hs-copy-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  background: var(--hs-heading);
  color: var(--hs-surface);
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--hs-transition), transform var(--hs-transition);
  z-index: 10;
}
.hs-share-copy {
  position: relative;
}

/* Featured Image */
.hs-article-featured-image-wrap {
  margin-top: 40px;
  animation: none; /* GSAP handles entrance */
}
.hs-article-featured-image {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-lg);
  overflow: hidden;
  background: var(--hs-bg-soft);
}
.hs-article-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* --- Article Main Layout ---------------------------------------------------- */
.hs-article-main {
  padding: 48px 0 80px;
  background: var(--hs-surface);
}
.hs-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1199.98px) {
  .hs-article-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hs-article-sidebar {
    position: static !important;
  }
}

/* --- Article Content Column ------------------------------------------------- */
.hs-article-content-column {
  min-width: 0;
}

/* Article Body Typography */
.hs-article-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: #344054;
  max-width: 800px;
}
[data-theme="dark"] .hs-article-body {
  color: #E4E7EC;
}
@media (max-width: 767.98px) {
  .hs-article-body {
    font-size: 16px;
    line-height: 1.8;
  }
}

.hs-article-body p {
  margin-bottom: 20px;
}

.hs-article-body h2,
.hs-article-body h3,
.hs-article-body h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  color: var(--hs-heading);
  margin-top: 0;
}
.hs-article-body h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 20px;
}
.hs-article-body h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-top: 36px;
  margin-bottom: 16px;
}
.hs-article-body h4 {
  font-size: 20px;
  line-height: 1.45;
  margin-top: 28px;
  margin-bottom: 12px;
}
.hs-article-body h2:first-child,
.hs-article-body h3:first-child,
.hs-article-body h4:first-child {
  margin-top: 0;
}

.hs-article-body ul,
.hs-article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.hs-article-body li {
  margin-bottom: 8px;
}
.hs-article-body li:last-child {
  margin-bottom: 0;
}

.hs-article-body a {
  color: #6D4AFF;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--hs-transition);
}
.hs-article-body a:hover {
  color: #5B3DD9;
}
[data-theme="dark"] .hs-article-body a {
  color: #B79EFF;
}
[data-theme="dark"] .hs-article-body a:hover {
  color: #C9BCFF;
}

.hs-article-body blockquote {
  border-left: 4px solid #6D4AFF;
  background: #F8F6FF;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  line-height: 1.7;
  color: #344054;
  margin: 24px 0;
}
[data-theme="dark"] .hs-article-body blockquote {
  background: rgba(109, 74, 255, 0.12);
  border-left-color: #B79EFF;
  color: #E4E7EC;
}
.hs-article-body blockquote p:last-child {
  margin-bottom: 0;
}

.hs-article-body pre {
  background: #111318;
  color: #F5F7FA;
  border-radius: 14px;
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
}
.hs-article-body pre code {
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
[data-theme="dark"] .hs-article-body pre {
  background: #0D1017;
}

.hs-article-body code:not(pre code) {
  background: #F3F4F6;
  color: #5B3DD9;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
[data-theme="dark"] .hs-article-body code:not(pre code) {
  background: rgba(109, 74, 255, 0.18);
  color: #C9BCFF;
}

.hs-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.hs-article-body table th,
.hs-article-body table td {
  padding: 12px 16px;
  border: 1px solid var(--hs-border);
  text-align: left;
}
.hs-article-body table th {
  background: var(--hs-bg-soft);
  font-weight: 600;
  color: var(--hs-heading);
}
.hs-article-body table tr:nth-child(even) td {
  background: var(--hs-bg-subtle);
}
.hs-article-body .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hs-article-body img {
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid var(--hs-border);
  margin: 24px 0;
}
.hs-article-body figure {
  margin: 24px 0;
}
.hs-article-body figcaption {
  text-align: center;
  font-size: 13px;
  color: #667085;
  margin-top: 8px;
}
[data-theme="dark"] .hs-article-body figcaption {
  color: #98A2B3;
}

/* --- Article Navigation (Prev/Next) ----------------------------------------- */
.hs-article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--hs-border);
}
@media (max-width: 767.98px) {
  .hs-article-nav {
    grid-template-columns: 1fr;
  }
}
.hs-article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border: 1px solid var(--hs-border);
  border-radius: 16px;
  background: var(--hs-surface);
  text-decoration: none;
  color: inherit;
  transition: transform var(--hs-card-transition), border-color var(--hs-card-transition), box-shadow var(--hs-card-transition);
}
.hs-article-nav-link:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 74, 255, 0.35);
  box-shadow: var(--hs-shadow-md);
}
.hs-article-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-muted);
}
.hs-article-nav-label svg {
  transition: transform var(--hs-transition);
}
.hs-article-nav-prev .hs-article-nav-label svg {
  margin-right: 2px;
}
.hs-article-nav-next .hs-article-nav-label svg {
  margin-left: 2px;
}
.hs-article-nav-link:hover .hs-article-nav-label svg {
  transform: translateX(-3px);
}
.hs-article-nav-next .hs-article-nav-link:hover .hs-article-nav-label svg {
  transform: translateX(3px);
}
.hs-article-nav-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hs-heading);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hs-article-nav-placeholder {
  visibility: hidden;
}

/* --- Author Box ------------------------------------------------------------- */
.hs-author-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--hs-border);
  border-radius: 16px;
  background: var(--hs-surface);
  box-shadow: var(--hs-shadow-sm);
  margin-top: 48px;
}
.hs-author-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
}
.hs-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hs-author-info {
  flex: 1;
  min-width: 0;
}
.hs-author-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-muted);
  margin-bottom: 4px;
}
.hs-author-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--hs-heading);
  margin: 0 0 8px;
}
.hs-author-bio {
  color: var(--hs-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.hs-author-socials {
  display: flex;
  gap: 12px;
}
.hs-author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hs-border);
  border-radius: 10px;
  color: var(--hs-muted);
  transition: background var(--hs-transition), color var(--hs-transition), border-color var(--hs-transition), transform var(--hs-transition);
}
.hs-author-socials a:hover {
  background: #F1EEFF;
  color: #6D4AFF;
  border-color: #E5E0FF;
  transform: translateY(-2px);
}
[data-theme="dark"] .hs-author-socials a:hover {
  background: rgba(109, 74, 255, 0.16);
  color: #C9BCFF;
  border-color: rgba(109, 74, 255, 0.3);
}

/* --- Sidebar ----------------------------------------------------------------- */
.hs-article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1199.98px) {
  .hs-article-sidebar {
    position: static;
  }
}

.hs-sidebar-card {
  border: 1px solid var(--hs-border);
  border-radius: 16px;
  background: var(--hs-surface);
  box-shadow: var(--hs-shadow-sm);
  padding: 24px;
}

.hs-sidebar-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--hs-heading);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hs-border);
}
.hs-sidebar-title svg {
  color: #6D4AFF;
  flex-shrink: 0;
}

/* TOC Card */
.hs-toc-card {
  padding: 20px;
}
.hs-toc-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hs-muted);
  margin: 0 0 12px;
}
.hs-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 60vh;
  overflow-y: auto;
}
.hs-toc-link {
  display: block;
  padding: 6px 12px;
  border-left: 2px solid transparent;
  color: var(--hs-muted);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 0 8px 8px 0;
  transition: color var(--hs-transition), background var(--hs-transition), border-color var(--hs-transition);
}
.hs-toc-link:hover {
  color: #6D4AFF;
  background: #F1EEFF;
}
[data-theme="dark"] .hs-toc-link:hover {
  background: rgba(109, 74, 255, 0.12);
  color: #C9BCFF;
}
.hs-toc-link.active {
  color: #6D4AFF;
  border-left-color: #6D4AFF;
  font-weight: 600;
  background: #F1EEFF;
}
[data-theme="dark"] .hs-toc-link.active {
  background: rgba(109, 74, 255, 0.12);
  color: #C9BCFF;
  border-left-color: #B79EFF;
}
.hs-toc-h3 {
  padding-left: 24px !important;
  font-size: 13px !important;
}

/* Search Form */
.hs-blog-search-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hs-blog-search-input {
  height: 52px;
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid var(--hs-border);
  border-radius: 10px;
  background: var(--hs-bg);
  color: var(--hs-heading);
  font-size: 14px;
  transition: border-color var(--hs-transition), box-shadow var(--hs-transition);
}
.hs-blog-search-input::placeholder {
  color: var(--hs-muted);
}
.hs-blog-search-input:focus {
  outline: none;
  border-color: #6D4AFF;
  box-shadow: 0 0 0 3px rgba(109, 74, 255, 0.10);
}
.hs-blog-search-btn {
  height: 52px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  background: #6D4AFF;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--hs-transition), transform var(--hs-transition);
}
.hs-blog-search-btn:hover {
  background: #5B3DD9;
  transform: translateY(-1px);
}

/* Recent Items */
.hs-sidebar-recent {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hs-recent-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--hs-border);
}
.hs-recent-item:first-child {
  border-top: none;
  padding-top: 0;
}
.hs-recent-item:last-child {
  padding-bottom: 0;
}
.hs-recent-thumb {
  width: 64px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--hs-bg-soft);
}
.hs-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.hs-recent-item:hover .hs-recent-thumb img {
  transform: scale(1.03);
}
.hs-recent-body {
  min-width: 0;
}
.hs-recent-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--hs-heading);
  margin: 0 0 3px;
  transition: color var(--hs-transition);
}
.hs-recent-item:hover .hs-recent-title {
  color: #6D4AFF;
}
.hs-recent-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--hs-muted);
}

/* Categories */
.hs-sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hs-sidebar-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 6px;
  color: var(--hs-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--hs-transition), background var(--hs-transition);
  border-radius: 8px;
}
.hs-sidebar-cat:hover {
  color: #6D4AFF;
  background: #F1EEFF;
}
[data-theme="dark"] .hs-sidebar-cat:hover {
  background: rgba(109, 74, 255, 0.12);
  color: #C9BCFF;
}
.hs-sidebar-cat.active {
  color: #6D4AFF;
  font-weight: 600;
}
.hs-sidebar-cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hs-sidebar-cat-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hs-sidebar-cat-count {
  font-size: 12px;
  color: var(--hs-muted);
}

/* Product CTA in Sidebar */
.hs-product-cta {
  padding: 24px;
  border: 1px solid rgba(109, 74, 255, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, #F6F3FF 0%, #EDE7FF 55%, #F1EEFF 100%);
  box-shadow: var(--hs-shadow-sm);
  text-decoration: none;
  transition: transform var(--hs-card-transition), box-shadow var(--hs-card-transition);
}
.hs-product-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--hs-shadow-md);
}
[data-theme="dark"] .hs-product-cta {
  background: linear-gradient(135deg, rgba(109, 74, 255, 0.18), rgba(109, 74, 255, 0.06));
  border-color: rgba(109, 74, 255, 0.3);
}
.hs-cta-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6D4AFF;
  margin-bottom: 10px;
}
.hs-cta-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--hs-heading);
  margin: 0 0 8px;
}
.hs-cta-desc {
  color: var(--hs-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.hs-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #6D4AFF;
  transition: color var(--hs-transition), gap var(--hs-transition);
}
.hs-cta-link:hover {
  color: #5B3DD9;
  gap: 10px;
}
[data-theme="dark"] .hs-cta-link {
  color: #B79EFF;
}
[data-theme="dark"] .hs-cta-link:hover {
  color: #C9BCFF;
}

/* --- Related Articles ------------------------------------------------------- */
.hs-related-articles {
  padding: 80px 0;
  background: var(--hs-surface);
}
.hs-resource-card {
  display: block;
  height: 100%;
  border: 1px solid var(--hs-border);
  border-radius: 16px;
  background: var(--hs-surface);
  box-shadow: var(--hs-shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--hs-card-transition), border-color var(--hs-card-transition), box-shadow var(--hs-card-transition);
}
.hs-resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 74, 255, 0.25);
  box-shadow: var(--hs-shadow-md);
}
.hs-resource-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--hs-bg-soft);
}
.hs-resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.hs-resource-card:hover .hs-resource-card-image img {
  transform: scale(1.03);
}
.hs-resource-card-body {
  padding: 20px;
}
.hs-resource-category {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  background: #F1EEFF;
  color: #6D4AFF;
  margin-bottom: 10px;
}
[data-theme="dark"] .hs-resource-category {
  background: rgba(109, 74, 255, 0.16);
  color: #C9BCFF;
}
.hs-resource-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hs-heading);
  margin: 0 0 8px;
  transition: color var(--hs-transition);
}
.hs-resource-card:hover .hs-resource-title {
  color: #6D4AFF;
}
.hs-resource-date {
  display: block;
  font-size: 13px;
  color: var(--hs-muted);
  margin-bottom: 12px;
}
.hs-resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #6D4AFF;
  transition: gap var(--hs-transition);
}
.hs-resource-link svg {
  transition: transform var(--hs-transition);
}
.hs-resource-card:hover .hs-resource-link {
  gap: 10px;
}
.hs-resource-card:hover .hs-resource-link svg {
  transform: translateX(3px);
}

/* Swiper overrides for related articles */
.hs-related-swiper {
  padding-bottom: 40px;
}
.hs-related-swiper .swiper-slide {
  height: auto;
}
.hs-related-swiper .swiper-button-next,
.hs-related-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-sm);
  color: #6D4AFF;
  transition: background-color var(--hs-transition), color var(--hs-transition), transform var(--hs-transition), box-shadow var(--hs-transition);
}
.hs-related-swiper .swiper-button-next::after,
.hs-related-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}
.hs-related-swiper .swiper-button-next:hover,
.hs-related-swiper .swiper-button-prev:hover {
  background: #6D4AFF;
  color: #fff;
  box-shadow: 0 8px 20px rgba(109, 74, 255, 0.24);
}
.hs-related-swiper .swiper-button-prev:hover {
  transform: translateX(-3px);
}
.hs-related-swiper .swiper-button-next:hover {
  transform: translateX(3px);
}
@media (max-width: 767.98px) {
  .hs-related-swiper .swiper-button-next,
  .hs-related-swiper .swiper-button-prev {
    display: none;
  }
}

/* --- Final CTA -------------------------------------------------------------- */
.hs-final-cta {
  position: relative;
  overflow: clip;
  padding: 100px 0;
  background: linear-gradient(135deg, #F8F6FF 0%, #F1EEFF 46%, #ECE6FF 100%);
  border-top: 1px solid var(--hs-border);
}
[data-theme="dark"] .hs-final-cta {
  background: linear-gradient(135deg, #12131A 0%, #171223 50%, #1A1430 100%);
}
.hs-final-cta-inner {
  position: relative;
  z-index: 1;
}
.hs-final-cta .section-badge {
  display: inline-block;
  margin-bottom: 16px;
}
.hs-final-cta-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--hs-heading);
  margin: 0 0 16px;
}
.hs-final-cta-desc {
  color: var(--hs-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hs-final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Animations: Reduced Motion for Article Page --------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hs-article-hero-inner,
  .hs-article-featured-image-wrap,
  .hs-article-body,
  .hs-author-box,
  .hs-toc-card,
  .hs-sidebar-card,
  .hs-related-articles .hs-resource-card,
  .hs-final-cta-inner {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .hs-share-btn,
  .hs-recent-thumb img,
  .hs-author-socials a,
  .hs-product-cta,
  .hs-resource-card,
  .hs-article-nav-link {
    transition: none !important;
    transform: none !important;
  }
}