:root {
  --blog-heading: #0a1426;
  --blog-text: #535559;
  --blog-primary: #2f75ff;
  --blog-purple: #4a2593;
  --blog-gutter-x: 1.5rem;
  --blog-gutter-y: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blog-heading);
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.blog-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  color: var(--blog-heading);
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0 0 15px;
  line-height: 1.86;
}

ul,
ol {
  margin-top: 0;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}

.row {
  --blog-gutter-x: 1.5rem;
  --blog-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--blog-gutter-y));
  margin-right: calc(-0.5 * var(--blog-gutter-x));
  margin-left: calc(-0.5 * var(--blog-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-top: var(--blog-gutter-y);
  padding-right: calc(var(--blog-gutter-x) * 0.5);
  padding-left: calc(var(--blog-gutter-x) * 0.5);
}

.col { flex: 1 0 0%; }
.col-6 { width: 50%; }
.col-12 { width: 100%; }
.g-4 { --blog-gutter-x: 1.5rem; --blog-gutter-y: 1.5rem; }
.gy-5 { --blog-gutter-y: 3rem; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }
.w-100 { width: 100% !important; }
.order-last { order: 6 !important; }
.p-rel { position: relative; }
.p-abs { position: absolute; }
.border { border: 1px solid #dee2e6 !important; }
.rounded-3 { border-radius: 0.5rem !important; }
.list-unstyled { padding-left: 0; list-style: none; }
.ms-0 { margin-left: 0 !important; }
.ms-3 { margin-left: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.p-4 { padding: 1.5rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-10 { margin-bottom: 10px; }
.mb-30 { margin-bottom: 30px; }
.mb-45 { margin-bottom: 45px; }
.mb-50 { margin-bottom: 50px; }
.mb-55 { margin-bottom: 55px; }
.mt-70 { margin-top: 70px; }
.pt-25 { padding-top: 25px; }
.pt-30 { padding-top: 30px; }
.pt-90 { padding-top: 90px; }
.pt-110 { padding-top: 110px; }
.pt-150 { padding-top: 150px; }
.pb-30 { padding-bottom: 30px; }
.pb-50 { padding-bottom: 50px; }
.pb-80 { padding-bottom: 80px; }
.pb-100 { padding-bottom: 100px; }
.pb-115 { padding-bottom: 115px; }
.pb-120 { padding-bottom: 120px; }
.pt-115 { padding-top: 115px; }
.ml-25 { margin-left: 25px; }
.mr-35 { margin-right: 35px; }

@font-face {
  font-family: "LandGoose Blog Icons";
  src: url("../fonts/fa-blog-light-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: block;
}

@font-face {
  font-family: "LandGoose Blog Brands";
  src: url("../fonts/fa-blog-brands-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

.fal,
.fab {
  display: inline-block;
  min-width: 1em;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.fal {
  font-family: "LandGoose Blog Icons";
  font-weight: 300;
}

.fab {
  font-family: "LandGoose Blog Brands";
  font-weight: 400;
}

.fa-user::before { content: "\f007"; }
.fa-tachometer-alt::before { content: "\f3fd"; }
.fa-times::before { content: "\f00d"; }
.fa-clock::before { content: "\f017"; }
.fa-sync::before { content: "\f021"; }
.fa-book-open::before { content: "\f518"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-arrow-left::before { content: "\f060"; }
.fa-expand::before { content: "\f065"; }
.fa-facebook-f::before { content: "\f39e"; }
.fa-twitter::before { content: "\f099"; }
.fa-linkedin-in::before { content: "\f0e1"; }

/* Header and mobile navigation */
.header-transparent {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1000;
}

.sasup-logo img {
  width: 180px;
  height: 29px;
}

.sasup-header ul {
  margin: 0;
  padding: 0;
}

.sasup-header ul li {
  position: relative;
  display: inline-block;
  margin-right: 45px;
  list-style: none;
}

.sasup-header ul li a {
  display: inline-block;
  padding: 29px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.sasup-header ul li a:hover,
.sasup-transparent-btn:hover {
  color: #ff6600;
}

.sasup-header-action-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sasup-transparent-btn {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.sasup-transparent-btn i {
  margin-right: 9px;
}

.sasup-theme-btn,
.sasup-theme-btn-2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  color: #fff;
  background: var(--blog-primary);
  box-shadow: 0 10px 20px rgba(6, 44, 120, 0.14);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.sasup-theme-btn-2 {
  min-height: 50px;
  padding: 0 25px;
}

.sasup-theme-btn-2.style-2 {
  padding: 0 33px;
}

.sasup-theme-btn.style-2 {
  background: #ff4e80;
}

.sasup-theme-btn.style-white {
  color: var(--blog-heading);
  background: #fff;
}

.sasup-theme-btn:hover {
  color: #fff;
  background: var(--blog-primary);
}

.sasup-theme-btn-2:hover {
  color: #fff;
  background: #ff6600;
}

.sasup-theme-btn.style-white:hover {
  color: #fff;
  background: var(--blog-primary);
}

.sasup-border-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 28px;
  border: 2px solid var(--blog-primary);
  border-radius: 4px;
  color: var(--blog-primary);
  font-size: 15px;
  font-weight: 500;
}

.sasup-border-btn:hover {
  border-color: transparent;
  color: #fff;
  background: #ff6600;
}

.mobile-bar-control {
  margin-left: 20px;
  cursor: pointer;
  vertical-align: middle;
}

.mobile-bar-control:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

.mobile-bar-control .line {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  background: #fff;
}

.responsive-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  z-index: 10000;
  width: min(320px, 88vw);
  height: 100%;
  overflow-y: auto;
  background: #fff;
  box-shadow: -12px 0 32px rgba(10, 20, 38, 0.2);
  transition: right 0.25s ease;
}

.responsive-sidebar-inner {
  padding: 30px;
}

.responsive-sidebar-visible {
  right: 0;
}

.responsive-logo {
  width: auto;
  max-height: 25px;
}

.responsive-sidebar-close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1.5px solid var(--blog-primary);
  border-radius: 50%;
  color: #222;
  background: transparent;
  cursor: pointer;
}

.responsive-sidebar-close:hover {
  color: #fff;
  background: var(--blog-primary);
}

.resposive-sidebar-menu {
  max-height: 450px;
  overflow-y: auto;
}

.mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu li + li {
  border-top: 1px solid #e6e7eb;
}

.mobile-menu a {
  display: block;
  padding: 13px 2px;
  color: var(--blog-heading);
  font-size: 15px;
  font-weight: 500;
}

.responsive-sidebar-actions {
  display: grid;
  gap: 8px;
}

/* Blog index hero */
.hero-area {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #4f5dd3;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-inner {
  z-index: 1;
}

.hero-shapes > * {
  z-index: -1;
}

.hero-shapes .shape1 { bottom: -100px; left: 100px; }
.hero-shapes .shape2 { bottom: -60px; left: 262px; }
.hero-shapes .shape3 { right: -40px; bottom: 235px; }
.hero-shapes .shape4 { right: 55px; bottom: -62px; }

.sasup-hero-content-sub {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
}

.sasup-hero-content-main {
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 600;
  line-height: 1.08;
}

.sasup-hero-content p {
  font-size: 17px;
}

/* Blog cards */
.sasup-blog-box-4 {
  height: calc(100% - 30px);
  padding: 23px;
  border: 1.5px solid rgba(19, 15, 64, 0.08);
  border-radius: 10px;
  background: #fff;
}

.sasup-blog-box-img-4 {
  overflow: hidden;
  aspect-ratio: 484 / 366;
  border-radius: 10px;
  background: #eef1f7;
}

.sasup-blog-box-img-4 > a {
  display: block;
  height: 100%;
}

.sasup-blog-box-img-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sasup-blog-box-img-4:hover img {
  transform: scale(1.05);
}

.blog-card-text-cover {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(26px, 3vw, 34px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.34) 0 4%, transparent 5%),
    radial-gradient(circle at 18% 84%, rgba(65, 209, 255, 0.46), transparent 34%),
    linear-gradient(135deg, #315fe4 0%, #6746dd 54%, #d94a99 100%);
}

.blog-card-text-cover::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  content: "";
}

.blog-card-text-cover-kicker,
.blog-card-text-cover strong {
  position: relative;
  z-index: 1;
}

.blog-card-text-cover-kicker {
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card-text-cover strong {
  display: -webkit-box;
  flex-shrink: 0;
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(25px, 2.5vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sasup-blog-box-category-4 {
  display: inline-block;
  height: 25px;
  padding: 0 13px;
  border-radius: 4px;
  color: #6a55ff;
  background: rgba(106, 85, 255, 0.08);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
}

.sasup-blog-box-title-4 {
  margin-bottom: 0;
  color: #130f40;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.27;
}

.sasup-blog-box-title-4 a:hover {
  color: var(--blog-primary);
}

.sasup-blog-box-meta-4 {
  margin-top: 25px;
  margin-bottom: -9px;
  padding-top: 15px;
  border-top: 1px solid rgba(19, 15, 64, 0.08);
}

.sasup-blog-box-meta-4 span {
  display: inline-block;
  color: #4d5765;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.sasup-blog-box-meta-4 span:not(:last-child) {
  position: relative;
  margin-right: 20px;
}

.sasup-blog-box-meta-4 span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 1px;
  height: 12px;
  background: #c4c4c4;
  content: "";
  transform: translateY(-50%);
}

/* Article hero and reading layout */
.blog-article-hero {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  padding-top: 130px;
  background:
    radial-gradient(circle at 22% 88%, rgba(76, 206, 255, 0.34) 0%, rgba(76, 206, 255, 0) 20%),
    radial-gradient(circle at 70% 80%, rgba(120, 60, 255, 0.42) 0%, rgba(120, 60, 255, 0) 24%),
    radial-gradient(circle at 58% 10%, rgba(190, 66, 194, 0.42) 0%, rgba(190, 66, 194, 0) 18%),
    radial-gradient(circle at 94% 4%, rgba(218, 157, 137, 0.36) 0%, rgba(218, 157, 137, 0) 16%),
    linear-gradient(135deg, #4969d8 0%, #5965d4 38%, #655ad7 66%, #5662d3 100%);
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.service-breadcrumb-subtitle {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.service-breadcrumb-title {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.16;
}

.service-breadcrumb-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
}

.service-breadcrumb-meta-single {
  color: #fff;
  font-size: 14px;
}

.service-breadcrumb-meta-single i {
  margin-right: 9px;
  font-size: 13px;
}

.blog-article-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.blog-article-hero-actions .sasup-theme-btn {
  min-height: 50px;
  padding: 0 24px;
}

.blog-article-hero-secondary-link,
a.blog-article-cta-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.blog-article-hero-secondary-link:hover,
a.blog-article-cta-secondary-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-article-copy p,
.blog-article-copy ul,
.blog-article-copy ol,
.blog-article-copy li {
  color: var(--blog-text);
  font-size: 17px;
  line-height: 28px;
}

.blog-article-copy p {
  margin-bottom: 40px;
}

.blog-article-copy .blog-article-lead {
  margin-bottom: 36px;
  padding: 22px 0;
  color: #263041;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.blog-article-copy ul,
.blog-article-copy ol {
  margin: 0 0 40px;
  padding-left: 26px;
  list-style-position: outside;
}

.blog-article-copy ul { list-style-type: disc; }
.blog-article-copy ol { list-style-type: decimal; }

.blog-article-copy ul li,
.blog-article-copy ol li {
  display: list-item;
  margin-bottom: 12px;
  padding-left: 4px;
}

.blog-article-copy li > ul,
.blog-article-copy li > ol {
  margin-top: 12px;
  margin-bottom: 12px;
}

.blog-content-title {
  margin-bottom: 18px;
  color: var(--blog-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  scroll-margin-top: 24px;
}

.blog-article-copy p + .blog-content-title,
.blog-article-copy ul + .blog-content-title,
.blog-article-copy ol + .blog-content-title,
.blog-article-copy div + .blog-content-title {
  margin-top: 44px;
}

.blog-article-copy p a,
.blog-article-copy li a,
.blog-article-copy blockquote a,
.blog-article-copy td a {
  color: var(--blog-primary);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.blog-article-copy p a:hover,
.blog-article-copy li a:hover,
.blog-article-copy blockquote a:hover,
.blog-article-copy td a:hover {
  color: #ff6600;
}

.blog-article-copy strong {
  color: var(--blog-heading);
  font-weight: 600;
}

.blog-article-toc {
  color: var(--blog-heading);
  background: #f8f9fb;
}

.blog-article-toc ol {
  margin-bottom: 0;
}

.blog-article-toc li {
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.5;
}

.blog-article-toc a {
  color: var(--blog-purple);
}

.blog-article-media img,
.img-fluid {
  width: 100%;
  border-radius: 0.375rem;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--blog-text);
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  vertical-align: middle;
  text-align: left;
}

.blog-article-cta {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-subtitle-1 {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.cta-title-1 {
  margin-bottom: 0;
  color: #f8f8f9;
  font-size: clamp(27px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.22;
}

.blog-article-cta-actions {
  display: flex;
}

a.blog-article-cta-secondary-link {
  max-width: none;
  color: #fff;
  line-height: 1.4;
  white-space: nowrap;
}

.sasup-s-subtitle {
  display: block;
  margin-bottom: 14px;
  color: var(--blog-primary);
  font-size: 15px;
  font-weight: 500;
}

.blog-related-articles > .d-flex > a {
  color: var(--blog-primary);
  font-weight: 400;
}

.meta-sm-title {
  display: inline-block;
  margin-right: 8px;
  font-size: 16px;
  font-weight: 600;
}

.flex-blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.has-border-top-1 {
  border-top: 1px solid #e6e7eb;
}

.tagcloud span {
  display: inline-block;
  min-height: 30px;
  margin: 0 2px 10px 0;
  padding: 0 13px;
  border: 2px solid #e6e7eb;
  border-radius: 4px;
  color: var(--blog-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
}

.social-follow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 6px;
  border: 2px solid #e6e7eb;
  border-radius: 4px;
  color: var(--blog-heading);
  font-size: 13px;
}

.social-follow a:hover {
  color: #fff;
  border-color: var(--blog-primary);
  background: var(--blog-primary);
}

.single-post-navigation {
  display: flex;
  flex-wrap: wrap;
}

/* Advertorial example gallery */
.advertorial-template-gallery-area {
  padding: 38px;
  border: 1px solid rgba(10, 20, 38, 0.08);
  border-radius: 22px;
  background: #f6f7fb;
}

.advertorial-template-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.advertorial-template-gallery-header .blog-content-title {
  margin: 8px 0 12px;
}

.advertorial-template-gallery-header p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--blog-text);
  font-size: 17px;
  line-height: 28px;
}

.advertorial-gallery-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid rgba(10, 20, 38, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(10, 20, 38, 0.08);
}

.advertorial-gallery-note strong {
  color: var(--blog-heading);
  font-size: 20px;
  line-height: 1.3;
}

.advertorial-gallery-note span {
  color: #707276;
  font-size: 15px;
  line-height: 24px;
}

a.advertorial-gallery-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--blog-purple);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

a.advertorial-gallery-cta-link:hover { color: #fff; background: #351870; }

a.advertorial-gallery-home-link {
  color: var(--blog-purple);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.advertorial-template-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.advertorial-template-filter-btn {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(74, 37, 147, 0.12);
  border-radius: 999px;
  color: var(--blog-purple);
  background: #f2effc;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.advertorial-template-filter-btn:hover,
.advertorial-template-filter-btn.active {
  color: #fff;
  border-color: var(--blog-purple);
  background: var(--blog-purple);
}

.advertorial-template-gallery-grid {
  align-items: stretch;
}

.advertorial-template-gallery-item {
  display: flex;
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.advertorial-template-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(10, 20, 38, 0.08);
  border-radius: 18px;
  color: inherit;
  background: #fff;
  box-shadow: 0 18px 46px rgba(10, 20, 38, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.advertorial-template-card:focus-visible {
  outline: 3px solid rgba(74, 37, 147, 0.32);
  outline-offset: 3px;
}

.advertorial-template-card:hover {
  color: inherit;
  border-color: rgba(74, 37, 147, 0.22);
  box-shadow: 0 26px 60px rgba(10, 20, 38, 0.13);
  transform: translateY(-4px);
}

.advertorial-template-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef1f7;
}

.advertorial-template-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: transform 0.25s ease;
}

.advertorial-template-card:hover .advertorial-template-card-media img {
  transform: scale(1.03);
}

.advertorial-template-card-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 20, 38, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.advertorial-template-card:hover .advertorial-template-card-open,
.advertorial-template-card:focus-visible .advertorial-template-card-open {
  opacity: 1;
  transform: translateY(0);
}

.advertorial-template-card-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px 24px;
}

.advertorial-example-card-label,
.advertorial-template-preview-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--blog-purple);
  background: #f2effc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.advertorial-example-card-label {
  min-height: 34px;
  padding: 6px 12px;
  font-size: 13px;
}

.advertorial-template-card-copy h3 {
  margin: 0;
  color: var(--blog-heading);
  font-size: 21px;
  line-height: 1.3;
}

.advertorial-template-card-copy > span:last-child {
  color: #707276;
  font-size: 15px;
  line-height: 25px;
}

/* Lightweight modal, replacing the page-wide Bootstrap JavaScript dependency. */
.modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: none;
  overflow: auto;
  padding: 24px;
  background: rgba(10, 20, 38, 0.72);
}

.modal.is-visible {
  display: block;
}

.modal-dialog {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.modal-dialog-centered {
  min-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(10, 20, 38, 0.3);
}

.modal-header,
.modal-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
}

.modal-header { border-bottom: 1px solid rgba(10, 20, 38, 0.08); }
.modal-footer { align-items: center; border-top: 1px solid rgba(10, 20, 38, 0.08); }

.modal-title {
  margin: 6px 0 0;
  color: var(--blog-heading);
  font-size: 28px;
  line-height: 1.25;
}

.modal-body {
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  padding: 26px;
  background: #eef1f7;
}

.btn-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.btn-close::before {
  color: var(--blog-heading);
  content: "\00d7";
  font-size: 30px;
  line-height: 1;
}

.btn-close:hover { background: #eef1f7; }

.advertorial-template-preview-frame {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 420px;
}

.advertorial-template-preview-frame img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(10, 20, 38, 0.18);
}

.modal-footer .sasup-theme-btn,
.modal-footer .sasup-theme-btn span {
  color: #fff;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blog-heading);
  font-size: 15px;
  font-weight: 500;
}

.news-read-more:hover {
  color: var(--blog-primary);
}

.news-read-more.style-2:hover {
  color: #ff4e80;
}

/* Footer */
.footer-area {
  color: #686b6f;
  background: #eeeff4;
}

.has-border-bottom {
  border-bottom: 1px solid #dedfe4;
}

.footer-widget h5,
.footer-widget h2.h5 {
  margin-bottom: 24px;
  color: var(--blog-heading);
  font-size: 20px;
  font-weight: 700;
}

.footer-widget li {
  list-style: none;
}

.footer-widget li + li {
  margin-top: 12px;
}

.footer-widget li a,
.widget-text,
.copyright-text {
  color: #686b6f;
  font-size: 15px;
}

.footer-widget li a:hover {
  color: var(--blog-primary);
}

.widget-text {
  line-height: 22px;
}

.copyright-text {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
  .col-sm-4 { width: 33.333333%; }
  .col-sm-8 { width: 66.666667%; }
  .d-sm-inline-block { display: inline-block !important; }
  .sasup-header-action-btn .site-header-trial-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
  .col-md-6 { width: 50%; }
  .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
  .d-lg-none { display: none !important; }
  .d-lg-inline-block { display: inline-block !important; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333333%; }
  .row-cols-lg-3 > * { width: 33.333333%; }
  .align-items-lg-start { align-items: flex-start !important; }
  .justify-content-lg-end { justify-content: flex-end !important; }
  .text-lg-start { text-align: left !important; }
  .text-lg-end { text-align: right !important; }
  .order-lg-first { order: -1 !important; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
  .d-xl-block { display: block !important; }
  .col-xl-3 { width: 25%; }
  .col-xl-4 { width: 33.333333%; }
  .col-xl-9 { width: 75%; }
  .col-xl-10 { width: 83.333333%; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .col-xxl-3 { width: 25%; }
  .col-xxl-4 { width: 33.333333%; }
  .col-xxl-9 { width: 75%; }
  .col-xxl-10 { width: 83.333333%; }
}

@media (max-width: 1199px) {
  .sasup-header ul li { margin-right: 23px; }
}

@media (max-width: 991px) {
  .header-main { padding: 20px 0; }
  .advertorial-template-gallery-header { grid-template-columns: 1fr; }
  .advertorial-gallery-note { margin-top: 20px; }
  .modal-body { max-height: calc(100vh - 190px); }
  .footer-widget br { display: none; }
}

@media (max-width: 767px) {
  .hero-shapes .shape1,
  .hero-shapes .shape2 { opacity: 0.4; }
  .pt-115 { padding-top: 75px; }
  .pb-115,
  .pb-120 { padding-bottom: 80px; }
  .pt-90 { padding-top: 65px; }
  .pb-80 { padding-bottom: 60px; }
  .blog-article-hero { min-height: 380px; }
  .flex-blog-meta { flex-direction: column; }
  .meta-social { text-align: left !important; }
}

@media (max-width: 575px) {
  .header-main { padding: 19px 0; }
  .sasup-logo img { width: 155px; height: 25px; }
  .hero-area { padding-top: 135px; padding-bottom: 80px; }
  .hero-shapes .shape1,
  .hero-shapes .shape2,
  .hero-shapes .shape3 { display: none; }
  .sasup-hero-content-main { margin-bottom: 20px; font-size: 36px; }
  .blog-article-hero { min-height: 360px; padding-top: 125px; }
  .service-breadcrumb-title { font-size: 28px; line-height: 1.3; }
  .service-breadcrumb-meta { gap: 8px 14px; }
  .service-breadcrumb-meta-single { font-size: 13px; }
  .blog-article-hero-actions { flex-direction: column; align-items: stretch; }
  .blog-article-hero-actions .sasup-theme-btn { width: 100%; }
  .blog-article-hero-secondary-link { justify-content: center; }
  .blog-content-title { font-size: 26px; }
  .blog-article-copy .blog-article-lead { font-size: 18px; line-height: 29px; }
  .blog-article-copy p,
  .blog-article-copy ul,
  .blog-article-copy ol,
  .blog-article-copy li { font-size: 16px; line-height: 27px; }
  .blog-article-cta > div { padding: 34px 24px !important; }
  .blog-article-cta-actions { flex-direction: column; align-items: flex-start !important; }
  .advertorial-template-gallery-area { padding: 20px; border-radius: 12px; }
  .advertorial-template-filter-btn { flex: 1 1 calc(50% - 8px); }
  .advertorial-template-card,
  .modal-content,
  .advertorial-template-preview-frame img { border-radius: 10px; }
  .advertorial-template-card-open { opacity: 1; transform: none; }
  .modal { padding: 0; }
  .modal-dialog-centered { min-height: 100vh; }
  .modal-header,
  .modal-footer { padding: 16px; }
  .modal-title { font-size: 22px; }
  .modal-body { max-height: calc(100vh - 180px); padding: 14px; }
  .modal-footer { flex-direction: column; align-items: stretch; }
  .modal-footer .sasup-theme-btn { width: 100%; }
  .tagcloud span { padding: 0 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
