@charset "UTF-8";
:root {
  --blue: #075bea;
  --orange: #f98125;
  --dark: #071b3d;
  --text: #10244a;
  --muted: #68758a;
  --light: #f5f8fd;
  --border: #e3e9f2;
  --white: #fff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.public-site {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: #00051a;
  background-color: #f8f8f8;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.public-site h1,
body.public-site h2,
body.public-site h3,
body.public-site h4,
body.public-site h5,
body.public-site h6,
body.public-site .h1,
body.public-site .h2,
body.public-site .h3,
body.public-site .h4,
body.public-site .h5,
body.public-site .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  color: #353f4f;
}

body.public-site a {
  color: inherit;
  text-decoration: none;
}

body.public-site img {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.position-relative {
  position: relative;
}

.text-center {
  text-align: center !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  /* Match original fixed-top navbar: transparent until sticky so peach glow shows through */
  background: transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-sticky,
body.nav-open .site-header {
  background: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: auto;
}

.navbar-brand {
  display: block;
  margin: 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

.navbar-brand img {
  width: 172px;
  height: 33px;
  display: block;
  position: relative;
  z-index: 2;
}

.navbar__left {
  display: flex;
  align-items: center;
  flex: 0 0 15%;
}

.menu {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.menu__inner {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu__item {
  position: static;
  display: inline-block;
  padding: 35px 35px 35px 0;
}

.site-header.is-sticky .menu__item {
  padding: 20px 35px 20px 0;
}

.menu__item:last-child {
  padding-right: 0;
}

.menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  transition: 0.25s;
  padding: 0;
  gap: 6px;
}

.menu__chevron {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 2px;
  transition: transform 0.35s ease;
}

.menu__dropdown:hover .menu__chevron {
  transform: rotate(180deg);
}

.menu__link:hover,
.menu__item:hover > .menu__link {
  color: #f98125 !important;
}

.menu__dropdown {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  z-index: 100;
  top: 95%;
  left: 0;
  min-width: 280px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 0.25rem;
  border-top: 2px solid #f98125;
  box-shadow: 0 16px 40px rgba(15, 38, 71, 0.12);
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.1));
}

.menu__dropdown:hover .submenu,
.menu__dropdown:focus-within .submenu {
  display: block;
}

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

.submenu__list a {
  display: inline-block;
  padding: 5px 0;
  line-height: 1.4;
  font-size: 14px;
  color: #000;
  text-transform: capitalize;
  transition: 0.25s ease-in-out;
}

.submenu__list a:hover {
  color: #f98125;
}

.menu-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu .menu__inner .menu__item a.freetrial-btn,
.menu .menu__inner .menu__item a.getdemo-btn {
  padding: 10px 25px;
  font-size: 16px !important;
  text-transform: capitalize;
  font-weight: 300;
}

.btn,
.getdemo-btn,
.freetrial-btn,
.button-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  overflow: hidden !important;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem !important;
  line-height: 1.25;
  vertical-align: middle;
}

.getdemo-btn,
.button-btn {
  font-weight: 300 !important;
  transition: 0.3s ease-in-out;
}

.getdemo-btn {
  top: 0;
  color: #fff !important;
  border: 1px solid #000;
  border-radius: 50px;
  background: #000;
  padding: 10px 25px;
}

.freetrial-btn {
  top: 0;
  color: #fff !important;
  border: 1px solid #f98125;
  border-radius: 50px;
  background: #f98125;
  padding: 10px 25px;
  font-weight: 400 !important;
  transition: 0.3s ease-in-out;
}

.button-btn {
  top: 0;
  color: #000 !important;
  border: 1px solid #f98125;
  border-radius: 50px;
  background: #f98125;
  padding: 20px 75px;
  font-size: 1.1rem !important;
}

.button-btn::before,
.freetrial-btn::before,
.getdemo-btn::before {
  content: "";
  width: 0%;
  display: block;
  background: #fff;
  position: absolute;
  transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: -1px;
  bottom: -1px;
  z-index: -12;
  transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
}

.button-btn::after,
.freetrial-btn::after,
.getdemo-btn::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #000;
  position: absolute;
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  transition: 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
}

.button-btn:hover::before,
.freetrial-btn:hover::before,
.getdemo-btn:hover::before {
  opacity: 1;
  width: 116%;
}

.button-btn:hover::after,
.freetrial-btn:hover::after,
.getdemo-btn:hover::after {
  opacity: 1;
  width: 120%;
}

.getdemo-btn:hover {
  border: 1px solid #000;
  color: #000 !important;
}

.button-btn:hover,
.freetrial-btn:hover {
  border: 1px solid #f98125;
  color: #f98125 !important;
}

.btn:focus,
.btn:hover,
.button-btn:focus,
.button-btn:hover,
.freetrial-btn:focus,
.freetrial-btn:hover,
.getdemo-btn:focus,
.getdemo-btn:hover {
  transform: translateY(-3px);
}

.menu .menu__inner .menu__item a.freetrial-btn,
.menu .menu__inner .menu__item a.getdemo-btn {
  padding: 10px 25px;
  font-size: 16px !important;
  text-transform: capitalize;
  font-weight: 300;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f98125;
  color: #fff !important;
  padding: 12px 19px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}

.primary-btn:hover {
  background: #004fd4;
  transform: translateY(-2px);
}

.burger {
  display: none;
  position: relative;
  width: 25px;
  height: 20px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 15px;
  background: #000;
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 8px;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 16px;
}

.page-hero {
  position: relative;
}

.page-hero--detail {
  padding: 5.5rem 0 0;
  min-height: 1px;
}

/* Match original style.css + extracted-buttons-hero.css body-bg */
.body-bg-img {
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  text-align: right;
  pointer-events: none;
}

.body-bg-img img,
.body-bg-img img.img-fluid {
  height: auto;
  width: 100%;
  display: block;
  max-width: 100%;
}

.detail-hero-bg {
  position: relative;
  /* Clears fixed header; image absolute top:0 still paints behind transparent nav */
  padding-top: 103px;
  min-height: 1px;
}

.page-hero-listing {
  position: relative;
  padding-top: 103px;
}

@media (max-width: 992px) {
  .detail-hero-bg,
  .page-hero-listing {
    padding-top: 72px;
  }
}
.header-offset {
  height: 103px;
  width: 100%;
  background: transparent;
}

/* Match Bootstrap display classes used on blog.php */
body.public-site h1.display-4,
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  body.public-site h1.display-4,
  .display-4 {
    font-size: 3.5rem;
  }
}
body.public-site h1.display-6,
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  body.public-site h1.display-6,
  .display-6 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  body.public-site h1.display-6,
  .display-6 {
    font-size: calc(0.7rem + 1.5vw);
  }
}
.featured-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -5px;
}

.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border: 1px solid #e2e8f1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(15, 45, 90, 0.07);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s;
}

.featured:hover {
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(15, 45, 90, 0.12);
}

.featured-image {
  min-height: 430px;
  background: center/cover no-repeat;
}

.featured-content-part {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.featured-content {
  padding: 38px;
}

.featured-label {
  display: inline-block;
  background: #f98125;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}

.meta {
  color: #7c8798;
  font-size: 14px;
  margin-bottom: 12px;
}

.featured h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.featured p {
  color: #68758a;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-section {
  padding: 48px 0 0;
  background: transparent;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: 25px;
  letter-spacing: -0.5px;
}

.search-box {
  width: 255px;
  height: 43px;
  border: 1px solid #dfe6ef;
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  background: #fff;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 11px;
  color: #333;
  background: transparent;
  font-family: inherit;
}

.search-icon {
  font-size: 18px;
  color: #f98125;
}

.categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.category {
  border: 1px solid #e5e5e5;
  background: #f7f7f7;
  color: #263b5b;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s;
}

.category:hover,
.category.active {
  background: #f98125;
  border-color: #f98125;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin: 36px 0 8px;
}

.blog-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination .page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e2e8f1;
  border-radius: 8px;
  background: #fff;
  color: #263b5b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.blog-pagination .page-item .page-link:hover {
  border-color: #f98125;
  color: #f98125;
}

.blog-pagination .page-item.active .page-link {
  background: #f98125;
  border-color: #f98125;
  color: #fff;
}

.blog-pagination .page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f1;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.25s;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 50, 100, 0.1);
}

.blog-card-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #eef2f7;
  flex-shrink: 0;
}

.blog-card-image,
body.public-site img.blog-card-image,
body.public-site .blog-card-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card-content {
  padding: 17px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.blog-tag {
  display: inline-block;
  background: #f8f1e6;
  color: #f98125;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.blog-card h3 {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  min-height: 2.7em;
}

.blog-card p {
  color: #68758a;
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 13px;
}

.read-more {
  color: #f98125 !important;
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
}

.cta {
  margin-top: 55px;
  margin-bottom: 0;
  border-radius: 13px;
  padding: 0;
  color: #ffffff;
  background: linear-gradient(105deg, #c35500, #ff8a31);
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(220px, 34%);
  align-items: stretch;
  overflow: hidden;
}

.cta-content {
  max-width: none;
  width: 100%;
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: center;
}

body.public-site .cta h2,
.cta h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cta-white {
  background: #ffffff;
  color: #f98125 !important;
}

.cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff !important;
}

body.public-site .cta p,
.cta p {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
}

body.public-site .cta-image,
.cta-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 1;
  display: block;
  align-self: stretch;
}

.blog-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 16px;
  color: #68758a;
}

.breadcrumb-bar,
.breadcrumb {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #f7f9fc;
  border-bottom: 1px solid #edf0f5;
  border-top: 0;
  padding: 13px 0;
  margin: 0 0 28px;
}

.breadcrumb-inner {
  font-size: 14px;
  color: #00051a;
  font-weight: 300;
  line-height: 1.5;
}

/* Original Bootstrap --bs-primary is #f98125 — breadcrumb links use that */
.breadcrumb-inner a,
.breadcrumb a {
  color: #f98125;
}

.breadcrumb-inner a:hover,
.breadcrumb a:hover {
  color: #e06e14;
}

.breadcrumb span,
.breadcrumb-inner span {
  margin: 0 7px;
  color: #a3adbb;
}

.blog-wrapper {
  position: relative;
  z-index: 1;
  padding: 0 0 70px;
  margin-top: 0;
}

body.public-site h1.article-title,
.article-title {
  font-size: 43px;
  line-height: 1.13;
  letter-spacing: -1.6px;
  color: #0c2148;
  max-width: 820px;
  margin-bottom: 15px;
  font-weight: 700;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 38px;
  align-items: start;
}

.article-category,
body.public-site a.article-category {
  display: inline-block;
  background: #f8f1e6;
  color: var(--orange);
  border: 1px solid #ffcea8;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  text-decoration: none;
}

.article-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.article-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #778398;
  font-size: 10px;
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.article-meta .dot {
  color: #bdc5d1;
}

.author {
  color: #3d506f;
  font-weight: 600;
}

.share {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6f7c91;
  font-size: 10px;
  flex: 0 0 auto;
  margin-left: auto;
}

.share a {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  border: 1px solid #dce4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d607e;
  font-size: 10px;
  transition: 0.2s;
}

.share a:hover,
.share a.is-copied {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.article-hero {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 11px;
  margin-bottom: 25px;
}

.article-content {
  max-width: 850px;
}

.article-content p {
  font-size: 14px;
  color: #00051a;
  line-height: 1.85;
  margin-bottom: 19px;
}

body.public-site .article-content h2,
.article-content h2 {
  color: #102650;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin-top: 31px;
  margin-bottom: 11px;
  font-weight: 500;
}

body.public-site .article-content h3,
.article-content h3 {
  color: #102650;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 8px;
  font-weight: 500;
}

.article-content ul {
  margin: 10px 0 20px 20px;
}

.article-content ol {
  margin: 10px 0 20px 20px;
}

.article-content li {
  color: #526178;
  font-size: 13px;
  margin-bottom: 8px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0 20px;
}

.article-content a {
  color: #075bea;
}

.article-content blockquote,
.takeaway {
  background: #eef6ff;
  border: 1px solid #d6e7ff;
  border-radius: 8px;
  padding: 13px 16px;
  margin: 16px 0 23px;
  color: #38577f;
  font-size: 11px;
}

.takeaway strong {
  display: block;
  color: var(--blue);
  font-size: 11px;
  margin-bottom: 2px;
}

.preview-banner {
  background: #10244a;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
}

.author-box {
  margin-top: 38px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8faff;
  display: flex;
  align-items: center;
  gap: 18px;
}

.author-avatar {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
}

.author-box h3 {
  margin: 0 0 4px;
  font-size: 14px;
  color: #10244a;
}

.author-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #718096;
}

.post-navigation {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 23px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.post-nav-item {
  display: block;
}

.post-nav-item.next {
  text-align: right;
}

.post-nav-label {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 5px;
}

.post-nav-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #203758;
}

.sidebar-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 19px;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 45, 90, 0.06);
}

.sidebar-box h3 {
  font-size: 16px;
  color: #10244a;
  margin-bottom: 11px;
  font-weight: 500;
}

.sidebar-box p {
  color: #6e7c91;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.sidebar-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  color: var(--orange) !important;
  font-size: 10px;
  font-weight: 700;
  background: #fff;
}

.sidebar-button:hover {
  background: #f98125;
  border-color: #f98125;
  color: #fff !important;
}

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

.category-list li {
  border-bottom: 1px solid #edf0f5;
}

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

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 12px;
  color: #344969;
}

.category-list a:hover {
  color: var(--blue);
}

.category-count {
  color: #8b98aa;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tag,
body.public-site a.sidebar-tag {
  display: inline-flex;
  align-items: center;
  background: #f8f1e6;
  color: #f98125;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.sidebar-tag:hover,
body.public-site a.sidebar-tag:hover {
  background: #f98125;
  color: #fff;
}

.popular {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.popular:hover {
  color: inherit;
  text-decoration: none;
}

.popular:hover h4 {
  color: var(--blue);
}

.popular img {
  width: 63px;
  height: 53px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.popular h4 {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.4;
  color: #203758;
  font-weight: 500;
}

.popular h4 a {
  color: inherit;
}

.popular h4 a:hover {
  color: var(--blue);
}

.popular small {
  color: #8995a8;
  font-size: 10px;
}

.sidebar-box.subscribe {
  background: linear-gradient(145deg, #075bea, #1649c9);
  color: #fff;
  border: 0;
}

.sidebar-box.subscribe h3 {
  color: #fff;
}

.sidebar-box.subscribe p {
  color: #dce8ff;
}

.sidebar-box.subscribe input {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 0 11px;
  outline: none;
  font-family: inherit;
  font-size: 10px;
  margin-bottom: 8px;
}

.sidebar-box.subscribe button {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}

.related-section {
  background: #eaeef3;
  padding: 55px 0;
}

.related-title {
  font-size: 25px;
  margin-bottom: 23px;
  color: #10244a;
  font-weight: 500;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
  transition: 0.25s;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30, 55, 90, 0.1);
}

.related-card img,
body.public-site .related-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-width: none;
  display: block;
}

.related-body {
  padding: 15px;
}

.related-tag {
  background: #f8f1e6;
  font-size: 8px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.related-body h3 {
  font-size: 15px;
  line-height: 1.35;
  margin: 6px 0 10px;
  font-weight: 500;
  color: #353f4f;
}

.related-body h3 a {
  color: inherit;
}

.related-link {
  color: var(--orange) !important;
  font-size: 10px;
  font-weight: 800;
}

.blog-section--cta {
  padding: 48px 0 20px !important;
  background: #fff;
}

/* =====================================================
   FOOTER — match original footer-blog.php + style.css
===================================================== */
.footer-spacer {
  display: block;
  height: 200px;
  background: #fff;
  width: 100%;
}

.footer,
.site-footer {
  position: relative;
  z-index: 0;
  padding-top: 150px;
  margin-top: 0;
  background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #353f4f;
}

.footer-join,
.ftco-section.footer-join {
  margin-top: -260px;
  border-radius: 15px;
  padding: 50px;
  background: #353f4f;
  color: #fff;
}

.footer-join-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}

.footer-join-logo-wrap {
  margin: 0 0 0.25rem;
}

.footer-join .logo-img img {
  display: block;
  width: 135px;
  height: auto;
}

.footer-join .display-5,
.footer-join h3.display-5 {
  margin: 0 0 0.5rem;
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff !important;
}

@media (min-width: 1200px) {
  .footer-join .display-5,
  .footer-join h3.display-5 {
    font-size: 2.5rem;
  }
}
.text-white {
  color: #fff !important;
}

.footer-join-copy {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 24px;
  color: #ffffff;
  max-width: 36rem;
}

.footer-subscribe {
  width: 100%;
}

.footer-subscribe-row {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-subscribe input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  font-family: inherit;
  padding: 20px 170px 20px 30px;
  border-radius: 36px;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
}

.footer-subscribe input::placeholder {
  color: #98a2b3;
}

/* Original uses .freetrial-btn.subscribe-btn → black text on orange */
.footer button.subscribe-btn,
.footer-subscribe .subscribe-btn {
  border: 2px solid transparent;
  padding: 14px 35px 12px;
  cursor: pointer;
  outline: none;
  font-size: 14px;
  font-weight: 400 !important;
  border-radius: 36px;
  position: absolute;
  right: 7px;
  top: 5px;
  margin-bottom: 0;
  transition: none !important;
  transform: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f98125 !important;
  color: #000 !important;
  border-color: #f98125;
  z-index: 2;
}

.footer button.subscribe-btn:hover,
.footer-subscribe .subscribe-btn:hover {
  border: 1px solid #f98125;
  color: #f98125 !important;
  background: #fff !important;
  transform: none !important;
}

.footer button.subscribe-btn::before,
.footer button.subscribe-btn::after,
.footer-subscribe .subscribe-btn::before,
.footer-subscribe .subscribe-btn::after {
  display: none !important;
}

.footer-links-wrap {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.85fr;
  gap: 24px 32px;
}

.footer-heding {
  position: relative;
  padding-bottom: 35px;
  margin: 0 0 8px;
  color: #353f4f;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-heding::before,
.footer-heding::after {
  content: "";
  position: absolute;
  left: 0;
  background: #f98125;
  height: 2px;
}

.footer-heding::before {
  width: 50px;
  bottom: 17px;
}

.footer-heding::after {
  width: 30px;
  bottom: 12px;
}

.footer-item--split {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.footer-item ul li {
  margin: 0;
  padding: 0;
}

.footer-item ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 15px;
  line-height: 30px;
  color: #353f4f;
  font-size: 0.9rem;
  font-weight: 300;
  transition: 0.5s;
}

.footer-item ul li a::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 2px;
  background: #353f4f;
  content: "";
}

.footer-item ul li a:hover {
  letter-spacing: 0.3px;
  color: #f98125;
}

.footer-item ul li a:hover::before {
  background: #f98125;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact > a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.5rem;
  line-height: 22px;
  color: #353f4f;
  font-size: 0.9rem;
  font-weight: 300;
  transition: 0.5s;
}

.footer-contact > a:hover {
  letter-spacing: 0.3px;
  color: #f98125;
}

.footer-contact-icon {
  flex: 0 0 auto;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  color: #353f4f;
}

.footer-contact > a:hover .footer-contact-icon {
  color: #f98125;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
}

.footer-social-share {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 0.25rem;
}

.btn-square {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f98125 !important;
  color: #000 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  padding: 0;
}

.btn-square:hover {
  background: #fff !important;
  color: #f98125 !important;
  box-shadow: 0 0 0 1px #f98125 inset;
}

.btn-square img,
.btn-square svg {
  display: block;
  max-width: 13px;
  height: auto;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #353f4f !important;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.copyright.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.copyright a,
.copyright span {
  color: #fff;
}

.copyright a:hover {
  color: #f98125;
}

.action-buttons {
  position: fixed;
  right: 25px;
  bottom: 95px;
  z-index: 99;
}

.back-to-top {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #075bea;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  box-shadow: 0 8px 20px rgba(7, 91, 234, 0.28);
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: #f98125;
}

@media (max-width: 992px) {
  .header-offset {
    height: 72px;
  }
  .burger {
    display: flex;
  }
  .navbar__left {
    flex: 0 0 auto;
    width: 100%;
    justify-content: space-between;
  }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: 0 16px 32px rgba(15, 38, 71, 0.12);
    justify-content: flex-start;
  }
  .menu.is-open {
    display: block;
  }
  .menu__inner,
  .menu-actions {
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    display: flex;
  }
  .menu__item,
  .site-header.is-sticky .menu__item {
    display: block;
    padding: 0 !important;
  }
  .menu__link {
    justify-content: flex-start;
    padding: 12px 0;
  }
  .submenu {
    position: static;
    box-shadow: none;
    border-top: 0;
    filter: none;
    padding: 0 0 0 12px;
    display: block;
    min-width: 0;
  }
  .footer-join,
  .ftco-section.footer-join {
    padding: 30px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-join-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-join .display-5,
  .footer-join h3.display-5 {
    font-size: 24px;
  }
  .footer-spacer {
    height: 140px;
  }
  .footer,
  .site-footer {
    padding-top: 100px;
  }
  .footer-subscribe-row {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-subscribe input {
    margin: 15px 0;
    padding: 20px 30px;
  }
  .footer button.subscribe-btn,
  .footer-subscribe .subscribe-btn {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    justify-content: center;
    transform: none !important;
  }
  .footer-item--split {
    flex-wrap: wrap;
  }
  .btn,
  .getdemo-btn,
  .freetrial-btn {
    font-size: 1rem !important;
  }
}
@media (max-width: 950px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .container {
    width: calc(100% - 28px);
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }
  .section-heading,
  .article-tools {
    display: block;
  }
  .article-meta {
    margin-bottom: 12px;
  }
  .share {
    margin-top: 4px;
  }
  .section-heading h2 {
    margin-bottom: 15px;
  }
  .search-box {
    width: 100%;
  }
  .featured {
    grid-template-columns: 1fr;
  }
  .featured-image {
    min-height: 230px;
  }
  .featured-content {
    padding: 25px;
  }
  .featured h2 {
    font-size: 23px;
  }
  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-media,
  .blog-card-image {
    height: 190px;
  }
  .blog-wrapper {
    padding-top: 30px;
  }
  .article-title {
    font-size: 33px;
    letter-spacing: -1px;
  }
  .article-hero {
    height: 260px;
    border-radius: 8px;
  }
  .article-content p {
    font-size: 13px;
  }
  .article-content h2 {
    font-size: 22px;
  }
  .sidebar {
    display: block;
  }
  .cta {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
  }
  .cta-content {
    padding: 30px 23px;
    text-align: center;
  }
  .cta h2 {
    font-size: 26px;
    color: #ffffff;
    font-weight: 600;
  }
  .cta-image {
    display: block;
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    object-fit: cover;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .post-nav-item.next {
    text-align: left;
    margin-top: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
