.hero-container {
  --primary-color: #437eeb;
  --text-main: #475569;
  --text-muted: #475569;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
  --white: #ffffff;
  width: 100%;
  color: var(--text-main);
}

.hero-search-wrapper {
  display: flex;
  max-width: 1024px;
  margin: 0 auto;
  padding: 12px;
  gap: 12px;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-search-input-container {
  display: flex;
  flex: 1;
  align-items: center;
  min-height: 64px;
  padding: 0 20px;
  border-radius: 16px;
  background: var(--bg-light);
}

.hero-search-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: #94a3b8;
  flex: 0 0 auto;
}

.hero-search-input {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: none !important;
  outline: none;
  background: transparent !important;
  color: var(--text-main);
  font-size: 16px;
  box-shadow: none !important;
}

.hero-search-input::placeholder {
  color: #999;
  opacity: 1;
}

.hero-search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 64px;
  padding: 0 32px;
  border: none;
  border-radius: 16px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hero-search-button:hover {
  opacity: 0.9;
}

.hero-results-section {
  max-width: 1152px;
  margin: 48px auto;
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: 32px;
  background: var(--white);
}

.hero-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-section-tag {
  display: block;
  margin-bottom: 12px;
  color: #64748b;
  font-size: 14px;
  text-transform: uppercase;
}

.hero-results-title {
  color: var(--text-main);
  font-size: 24px !important;
  line-height: 1.3;
}

.hero-results-count {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-filter-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 600px;
  gap: 12px;
}

.hero-filter-select {
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: #334155;
  font-size: 14px;
}

.hero-article-list {
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.hero-article-item {
  display: grid;
  grid-template-columns: 1fr 220px 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text-main);
  text-decoration: none;
}

.hero-article-item:hover {
  color: var(--primary-color);
}

.hero-article-item:last-child {
  border-bottom: none;
}

.hero-article-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-article-title {
  margin: 0 0 8px;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.35;
}

.hero-article-summary,
.sesen-kb-result__summary {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-article-audience {
  color: #64748b;
  font-size: 14px;
}

.hero-article-arrow {
  color: var(--primary-color);
  text-align: right;
}

.sesen-kb-template {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 20px;
}

.sesen-kb-template__meta {
  margin-bottom: 12px;
  color: #607080;
}

.sesen-kb-template__content {
  margin-top: 24px;
}

.sesen-kb-template__list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .hero-search-wrapper {
    flex-direction: column;
  }

  .hero-search-button {
    width: 100%;
  }

  .hero-results-section {
    margin: 32px auto;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .hero-filter-group {
    grid-template-columns: 1fr;
    min-width: 100%;
    width: 100%;
  }

  .hero-article-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-article-arrow {
    display: none;
  }
}

.sesen-kb-article-template {
  --primary-color: #437eeb;
  --primary-color-soft: rgba(67, 126, 235, 0.1);
  --primary-color-border: rgba(67, 126, 235, 0.2);
  --primary-color-dashed: rgba(67, 126, 235, 0.35);
  --primary-hover-bg: #3869c9;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --white: #ffffff;
  color: var(--slate-700);
}

.sesen-kb-article-template a {
  text-decoration: none;
}

.sesen-kb-article-template [id] {
  scroll-margin-top: 110px;
}

.sesen-kb-article-template .hero-icon {
  display: block;
  flex-shrink: 0;
}

.sesen-kb-article-template .hero-top {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  background: var(--white);
}

.sesen-kb-article-template .hero-top-blur-left,
.sesen-kb-article-template .hero-top-blur-right {
  position: absolute;
  border-radius: 9999px;
  filter: blur(48px);
  pointer-events: none;
}

.sesen-kb-article-template .hero-top-blur-left {
  left: 0;
  top: 0;
  width: 288px;
  height: 288px;
  background: var(--primary-color-soft);
}

.sesen-kb-article-template .hero-top-blur-right {
  right: 0;
  bottom: 0;
  width: 320px;
  height: 320px;
  background: rgba(226, 232, 240, 0.5);
}

.sesen-kb-article-template .hero-top-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  gap: 40px;
}

.sesen-kb-article-template .hero-breadcrumb {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--slate-500);
}

.sesen-kb-article-template .hero-breadcrumb a {
  color: var(--primary-color);
}

.sesen-kb-article-template .hero-breadcrumb a:hover {
  color: var(--primary-color);
}

.sesen-kb-article-template .hero-breadcrumb-sep {
  display: inline-flex;
  color: var(--slate-300);
}

.sesen-kb-article-template .hero-breadcrumb-current {
  color: var(--slate-800);
}

.sesen-kb-article-template .hero-pill-row {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sesen-kb-article-template .hero-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  padding: 4px 12px;
  font-size: 14px;
  color: var(--slate-700);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.sesen-kb-article-template .hero-title {
  max-width: 896px;
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
  color: var(--slate-950);
  letter-spacing: 0;
}

.sesen-kb-article-template .hero-lede {
  margin-top: 28px;
  max-width: 896px;
  font-size: 18px;
  line-height: 32px;
  color: var(--slate-700);
}

.sesen-kb-article-template .hero-cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sesen-kb-article-template .hero-btn-primary,
.sesen-kb-article-template .hero-btn-secondary {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.sesen-kb-article-template .hero-btn-primary {
  background: var(--primary-color);
  color: var(--white) !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  border: none;
}

.sesen-kb-article-template .hero-btn-primary:hover {
  background: var(--primary-hover-bg);
}

.sesen-kb-article-template .hero-btn-secondary {
  border: 1px solid var(--slate-300);
  background: var(--white);
  color: var(--slate-900);
}

.sesen-kb-article-template .hero-btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.sesen-kb-article-template .hero-aside-card {
  border-radius: 24px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.5);
}

.sesen-kb-article-template .hero-aside-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 10px;
}

.sesen-kb-article-template .hero-icon-box {
  display: flex;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--primary-color-soft);
  color: var(--primary-color);
}

.sesen-kb-article-template .hero-aside-head-title,
.sesen-kb-article-template .hero-aside-item-label {
  margin: 0 !important;
  font-size: 14px;
  color: var(--slate-950);
}

.sesen-kb-article-template .hero-aside-head-sub,
.sesen-kb-article-template .hero-aside-item-text {
  margin: 4px 0 0 !important;
  font-size: 14px;
  line-height: 24px;
  color: var(--slate-600);
}

.sesen-kb-article-template .hero-aside-list {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sesen-kb-article-template .hero-aside-item {
  display: flex;
  gap: 12px;
}

.sesen-kb-article-template .hero-aside-item-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-color);
}

.sesen-kb-article-template .hero-body-wrap {
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
  overflow: visible;
}

.sesen-kb-article-template .hero-body-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  gap: 40px;
  overflow: visible;
}

.sesen-kb-article-template .hero-toc-border {
  border-left: 2px solid var(--slate-200);
  padding-left: 20px;
}

.sesen-kb-article-template .hero-toc-label {
  margin: 0 0 20px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--slate-500);
}

.sesen-kb-article-template .hero-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sesen-kb-article-template .hero-toc-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 0 16px 16px 0;
  padding: 10px 12px 10px 0;
  font-size: 14px;
  color: var(--slate-600);
  transition: color 0.2s ease;
}

.sesen-kb-article-template .hero-toc-link:hover,
.sesen-kb-article-template .hero-toc-link-active,
.sesen-kb-article-template .hero-toc-link.hero-active {
  color: var(--primary-color);
}

.sesen-kb-article-template .hero-toc-link-active,
.sesen-kb-article-template .hero-toc-link.hero-active {
  margin-left: -22px;
  border-left: 2px solid var(--primary-color);
  padding-left: 20px;
}

.sesen-kb-article-template .hero-toc-dot {
  margin-top: 8px;
  height: 6px;
  width: 6px;
  border-radius: 9999px;
  background: var(--slate-300);
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.sesen-kb-article-template .hero-toc-link-active .hero-toc-dot,
.sesen-kb-article-template .hero-toc-link.hero-active .hero-toc-dot,
.sesen-kb-article-template .hero-toc-link:hover .hero-toc-dot {
  background: var(--primary-color);
}

.sesen-kb-article-template .hero-article {
  max-width: 896px;
}

.sesen-kb-article-template .hero-article-content [id],
.sesen-kb-article-template .hero-related-section[id] {
  scroll-margin-top: 188px;
}

.admin-bar .sesen-kb-article-template .hero-article-content [id],
.admin-bar .sesen-kb-article-template .hero-related-section[id] {
  scroll-margin-top: 220px;
}

.sesen-kb-article-template .hero-intro-callout {
  margin-bottom: 48px;
  border-radius: 24px;
  border: 2px dashed var(--primary-color-dashed);
  background: var(--primary-color-soft);
  padding: 32px;
  text-align: left;
}

.sesen-kb-article-template .hero-intro-icon-wrap {
  margin-bottom: 16px;
  display: flex;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.sesen-kb-article-template .hero-h2,
.sesen-kb-article-template .hero-article-content h2,
.sesen-kb-article-template .hero-section-title {
  margin: 25px 0 0 !important;
  font-size: 30px !important;
  line-height: 1.2 !important;
  color: var(--slate-950);
}

.sesen-kb-article-template .hero-intro-callout .hero-h2,
.sesen-kb-article-template .hero-section-title {
  margin-top: 0 !important;
}

.sesen-kb-article-template .hero-intro-text,
.sesen-kb-article-template .hero-section-lede {
  margin: 16px 0 0;
  max-width: 672px;
  font-size: 16px;
  line-height: 28px;
  color: var(--slate-700);
}

.sesen-kb-article-template .hero-article-content p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 32px;
  color: var(--slate-700);
}

.sesen-kb-article-template .hero-article-content ul,
.sesen-kb-article-template .hero-article-content ol {
  margin: 24px 0 0 22px;
  padding: 0;
}

.sesen-kb-article-template .hero-article-content li {
  margin: 8px 0;
  font-size: 18px;
  line-height: 32px;
  color: var(--slate-700);
}

.sesen-kb-article-template .hero-takeaways {
  margin: 40px 0;
  border-radius: 24px;
  border: 1px solid var(--primary-color-border);
  background: var(--primary-color-soft);
  padding: 24px;
}

.sesen-kb-article-template .hero-h3 {
  margin: 0;
  font-size: 20px;
  color: var(--slate-950);
}

.sesen-kb-article-template .hero-takeaways-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sesen-kb-article-template .hero-takeaways-li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 28px;
  color: var(--slate-700);
}

.sesen-kb-article-template .hero-cards-grid {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.sesen-kb-article-template .hero-card {
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  padding: 20px;
}

.sesen-kb-article-template .hero-card-h3 {
  margin: 0;
  font-size: 18px;
  color: var(--slate-950);
}

.sesen-kb-article-template .hero-card-p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 28px;
  color: var(--slate-600);
}

.sesen-kb-article-template .hero-workflow-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sesen-kb-article-template .hero-workflow-li {
  display: flex;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 20px;
}

.sesen-kb-article-template .hero-workflow-num {
  display: flex;
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary-color);
  font-size: 14px;
  color: var(--white);
}

.sesen-kb-article-template .hero-workflow-text {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: var(--slate-700);
}

.sesen-kb-article-template .hero-dark-cta {
  margin: 40px 0;
  border-radius: 24px;
  background: var(--slate-950);
  padding: 28px;
  color: var(--white);
}

.sesen-kb-article-template .hero-dark-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sesen-kb-article-template .hero-dark-cta h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  color: var(--white);
}

.sesen-kb-article-template .hero-dark-cta p {
  margin: 12px 0 0;
  max-width: 672px;
  font-size: 16px;
  line-height: 28px;
  color: var(--slate-300);
}

.sesen-kb-article-template .hero-btn-on-dark {
  display: inline-flex;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--white);
  padding: 12px 24px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--slate-950);
}

.sesen-kb-article-template .hero-related-section {
  background: var(--white);
}

.sesen-kb-article-template .hero-related-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.sesen-kb-article-template .hero-two-col {
  display: grid;
  gap: 40px;
}

.sesen-kb-article-template .hero-solutions-grid {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.sesen-kb-article-template .hero-articles-stack {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sesen-kb-article-template .hero-solution-link,
.sesen-kb-article-template .hero-article-link {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  padding: 20px;
  font-size: 16px;
  color: var(--slate-900);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.sesen-kb-article-template .hero-article-link {
  background: var(--slate-50);
}

.sesen-kb-article-template .hero-solution-link:hover,
.sesen-kb-article-template .hero-article-link:hover {
  border-color: var(--primary-color);
  background: var(--white);
  color: var(--primary-color);
}

.sesen-kb-article-template .hero-bottom-band {
  background: var(--slate-50);
}

.sesen-kb-article-template .hero-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.sesen-kb-article-template .hero-bottom-card {
  border-radius: 32px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  padding: 32px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.sesen-kb-article-template .hero-bottom-grid {
  display: grid;
  gap: 40px;
}

.sesen-kb-article-template .hero-link-cards {
  display: grid;
  gap: 20px;
}

.sesen-kb-article-template .hero-link-card {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  padding: 20px;
  color: var(--slate-900);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sesen-kb-article-template .hero-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.sesen-kb-article-template .hero-link-card-icon {
  margin-bottom: 16px;
  display: flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary-color-soft);
  color: var(--primary-color);
}

.sesen-kb-article-template .hero-link-card h3 {
  margin: 0;
  font-size: 16px;
  color: var(--slate-950);
}

.sesen-kb-article-template .hero-link-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--slate-600);
}

.sesen-kb-article-template .hero-link-card-footer {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary-color);
}

@media (min-width: 640px) {
  .sesen-kb-article-template .hero-solutions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sesen-kb-article-template .hero-link-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .sesen-kb-article-template .hero-title {
    font-size: 48px;
  }

  .sesen-kb-article-template .hero-lede {
    font-size: 20px;
    line-height: 36px;
  }

  .sesen-kb-article-template .hero-h2,
  .sesen-kb-article-template .hero-article-content h2,
  .sesen-kb-article-template .hero-section-title {
    font-size: 36px !important;
  }

  .sesen-kb-article-template .hero-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sesen-kb-article-template .hero-dark-cta {
    padding: 32px;
  }

  .sesen-kb-article-template .hero-dark-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .sesen-kb-article-template .hero-bottom-card {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .sesen-kb-article-template .hero-top-inner {
    padding: 96px 32px;
    grid-template-columns: 1fr 360px;
    align-items: start;
  }

  .sesen-kb-article-template .hero-body-grid {
    padding: 64px 32px;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  .sesen-kb-article-template .hero-toc-sticky {
    position: sticky !important;
    top: 120px;
    align-self: start;
    height: max-content;
    z-index: 1;
    overflow: visible;
  }

  .admin-bar .sesen-kb-article-template .hero-toc-sticky {
    top: 152px;
  }

  .sesen-kb-article-template .hero-related-inner {
    padding: 80px 32px;
  }

  .sesen-kb-article-template .hero-two-col {
    grid-template-columns: 1fr 1fr;
  }

  .sesen-kb-article-template .hero-bottom-inner {
    padding: 80px 32px;
  }

  .sesen-kb-article-template .hero-bottom-card {
    padding: 48px;
  }

  .sesen-kb-article-template .hero-bottom-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
}
