:root {
  --clr-primary: #6355FF;
  --clr-secondary: #14151D;
  --clr-text: #7E7F8A;
  --clr-text-secondary: #61636C;
  --clr-bg: #ffffff;
  --clr-blue: #797AFF;
  --clr-silver: #7E7F8A;
  --clr-lavender-mist: #E5E7F3;
  --clr-bg-light: #F4F6FD;
  --font-base: "Plus Jakarta Sans", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "ivypresto-display", serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* Utilites */
/* =====================================================
   UTITILIES CLASSES
===================================================== */
.u-hidden {
  display: none !important;
}

.u-text-center {
  text-align: center;
}

.u-color-secondary {
  color: var(--clr-secondary);
}

.u-spacing-inline {
  padding-inline: clamp(1rem, 1.5038vw + .6476rem, 2rem);
}

.u-spacing-block-lg {
  padding-top: clamp(2rem, 3.7594vw + 1.1189rem, 4.5rem);
  padding-bottom: clamp(2rem, 3.7594vw + 1.1189rem, 4.5rem);
}

.u-spacing-block-md {
  padding-top: clamp(2rem, 2.2556vw + 1.4713rem, 3.5rem);
  padding-bottom: clamp(2rem, 2.2556vw + 1.4713rem, 3.5rem);
}

.u-spacing-block-md.cc-top-0,
.u-spacing-block-lg.cc-top-0 {
  padding-top: 0;
}

.u-spacing-block-md.cc-bottom-0,
.u-spacing-block-lg.cc-bottom-0 {
  padding-bottom: 0;
}

.u-text-muted {
  color: var(--clr-muted);
}

.u-text-white {
  color: var(--clr-bg);
}

.u-weight-500 {
  font-weight: 500;
}

.u-weight-600 {
  font-weight: 600;
}

.u-weight-700 {
  font-weight: 700;
}

.u-text-uppercase {
  text-transform: uppercase;
}

.u-overflow-clip {
  overflow: clip;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.u-line-clamp-2 {
  -webkit-line-clamp: 2;
}

.u-line-clamp-1,
.u-line-clamp-2,
.u-line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Base */
/* =====================================================
  MODERN RESET / BASE
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
}

img,
video,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  list-style: none;
  padding-left: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

figure {
  margin: 0;
}

.wp-block-quote,
blockquote {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 40px;
  margin-inline-end: 40px;
  unicode-bidi: isolate;
}

/* =====================================================
  TYPOGRAPHY
===================================================== */

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--clr-secondary);
  margin: 0;
}

p {
  margin: 0;
}

.display-xl {
  font-size: clamp(2.5rem, 3.7594vw + 1.6189rem, 5rem);
  line-height: 1.2;
  letter-spacing: 0.00625em;
}

.display-lg {
  font-size: clamp(2.5rem, 3.0075vw + 1.7951rem, 4.5rem);
  line-height: 1.11;

  @media (width < 480px) {
    line-height: 1.2;
    letter-spacing: 0.0125em;
  }
}

.text-xl {
  font-size: clamp(1rem, .7519vw + .8238rem, 1.5rem);
  line-height: 1.5;
}

.text-lg {
  font-size: clamp(1rem, .188vw + .9559rem, 1.125rem);
  line-height: 1.5;
}

.text-md {
  font-size: clamp(.875rem, .188vw + .8309rem, 1rem);
  line-height: 1.5;
}

.text-sm {
  font-size: clamp(.75rem, .188vw + .7059rem, .875rem);
  line-height: 1.5;
}

.heading-h2 {
  font-size: clamp(1.75rem, 1.1278vw + 1.4857rem, 2.5rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.title-xl {
  font-size: clamp(2rem, 1.5038vw + 1.6476rem, 3rem);
  line-height: 1.16;
  letter-spacing: 0.016666666666666666em;
}

.title-md {
  font-size: clamp(1.25rem, .7519vw + 1.0738rem, 1.75rem);
  line-height: 1.16;
}

.heading-h3 {
  font-size: clamp(1.5rem, .7519vw + 1.3238rem, 2rem);
  line-height: 1.3;
  letter-spacing: 0.025em;
}

.author-info-wrapper .title-md {
  text-transform: capitalize;
}

.blog-post_content {
  &.cc-bg {
    background-color: var(--clr-bg-light);
    padding: clamp(1rem, 1.5038vw + .6476rem, 2rem);
    border-radius: 1rem;
  }

  &.cc-inline {
    padding-inline: clamp(0rem, 3.0075vw + -.7049rem, 2rem);
  }

  &.cc-blog-quote {
    background-color: var(--clr-bg-light);
    padding: clamp(1rem, 1.5038vw + .6476rem, 2rem);
    border-left: 2px solid var(--clr-primary);
  }

  .blog-post-title {
    color: var(--clr-primary);
    margin-bottom: clamp(1rem, .3759vw + .9119rem, 1.25rem);
  }

  .blog-post-text {
    margin-bottom: clamp(.75rem, .3759vw + .6619rem, 1rem);

    &:last-child {
      margin-bottom: 0;
    }

    a {
      color: var(--clr-primary);
      text-decoration: underline;
    }
  }

  .blog-post-figure {
    border-radius: 0.938rem;
  }

  .blog-social li a {
    margin-top: 1rem;
    display: flex;
    gap: 0.375rem;
    color: var(--clr-primary);
    text-decoration: underline;
  }

  @media (width < 768px) {
    &.cc-blog-quote {
      margin: 0;
    }
  }
}

.blog-post-aside {
  width: 100%;
  max-width: 17.5rem;

  @media (width < 980px) {
    max-width: 100%;
  }
}

/* Comparison Table */
.comparison_wrapper {
  background: var(--clr-bg-light);
  border: 1px solid #ffffff;
  border-radius: 16px;
  overflow: hidden;
}

/* Table Reset */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  color: var(--clr-secondary);
}

/* Table Header */
.comparison-table thead th {
  text-align: left;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ffffff;
}

.comparison-table thead th:not(:last-child) {
  border-right: 1px solid #ffffff;
}

/* Table Body */
.comparison-table tbody td {
  vertical-align: top;
  padding: 1rem 1.25rem;
  line-height: 1.6;
  color: var(--clr-text-secondary);
}

.comparison-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #ffffff;
}

.comparison-table tbody td:not(:last-child) {
  border-right: 1px solid #ffffff;
}

/* First column emphasis */
.comparison-table tbody td:first-child {
  font-weight: 500;
  color: var(--clr-secondary);
  width: 26%;
}

.comparison-table tbody td:last-child {
  width: 30%;
}


/*Blog Aside Newsletter*/
.newsletter-card {
  padding: 1.25rem;
  background: var(--clr-bg-light);
  border-radius: 0.5rem
}

/* Eyebrow */
.newsletter-card_eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.063em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Title */
.newsletter-card_title {
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* FORM */
.newsletter-card__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-card_form input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

.newsletter-card_form input::placeholder {
  color: #9ca3af;
}

/* Button */
.newsletter-card_form .submit {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: none;

  background: var(--clr-primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;

  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-card_form .submit:hover {
  background: #534bf5;
}

/* CONSENT */
.newsletter-card_form .checkbox-wrapper,
.newsletter-card_consent {
  display: flex;
  gap: 0.5rem;
  font-size: 0.7rem;
  line-height: 1.5;
  color: #6b7280;
  margin-top: 0.5rem;
  align-items: start;
}

.newsletter-card_form .checkbox-wrapper input,
.newsletter-card_consent input {
  margin-top: 3px;
}

.newsletter-card_form .checkbox-wrapper a,
.newsletter-card_consent a {
  color: #635bff;
  text-decoration: underline;
}

/*Blog Post Aside*/
.blog-post-aside {
  top: 15px;
  position: sticky;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  height: calc(100vh - 30px);
  overflow-y: auto;
}

.author-info .author-info-image {
  border: 2px solid var(--clr-primary);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.author-social-list a img {
  opacity: 0.7;
  transition: all 0.3s;
}

.author-social-list a:hover img {
  opacity: 1;
}

.blog-post_toc {
  margin-bottom: 50px;
}

/*Blog Post Author*/
.blog-post_author {
  margin-top: clamp(2rem, .7519vw + 1.8238rem, 2.5rem);
  background-color: var(--clr-bg-light);
  padding: clamp(1.5rem, 2.2556vw + .9713rem, 3rem);
  max-width: 54rem;
  border-radius: 1rem;
  display: flex;
  gap: clamp(1rem, 3.0075vw + .2951rem, 3rem);

  .author-info {
    flex: none;
    display: flex;
    flex-direction: column;

    @media (width < 768px) {
      display: contents;
    }
  }

  .author-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .author-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .author-social-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;

    a {
      width: 2.5rem;
      height: 2.5rem;
      background: var(--clr-bg);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (width < 768px) {
      order: 1;
    }
  }

  .author-content {
    color: var(--clr-text-secondary);

    p:first-child {
      margin-bottom: 4px;
    }
  }

  @media (width < 768px) {
    flex-direction: column;
  }
}

.blog-post_author .know-more {
  gap: 5px;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
}

.blog-post_author .know-more svg {
  width: 12px;
  height: 12px;
}

.blog-post_author .know-more,
.blog-post_author .about-author {
  color: #14151D;
  stroke: #14151D;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.blog-post_author .author-bio {
  color: #61636C;
}

/*Table Of Contents*/
.blog-post_toc {
  .blog-post_toc_title {
    padding-block-end: 0.5rem;
    margin-block-end: 0.75rem;
    border-bottom: 1px solid #E5E7F3;
    font-size: 20px;
  }

  .blog-post_toc_links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

.blog-details_toc_link {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--clr-silver);
  cursor: pointer;
  text-align: left;
  padding-left: 15px;
  border-left: 1px solid transparent;

  &.cc-active {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
  }
}


.stan-blog-details p {
  font-size: 18px;
  color: #61636C;
}

.stan-blog-details>p {
  padding-bottom: 15px;
}

.stan-blog-details p a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.stan-blog-details h1,
.stan-blog-details h2,
.stan-blog-details h3,
.stan-blog-details h4,
.stan-blog-details h5,
.stan-blog-details h6 {
  font-weight: 400;
  color: #6355FF;
  letter-spacing: 0.8px;
}

.stan-blog-details h1 {
  font-size: 40px;
  line-height: 1;
  padding-bottom: 30px;
}

.stan-blog-details h2 {
  font-size: 32px;
  line-height: 1;
  padding-bottom: 20px;
}

.stan-blog-details h3 {
  font-size: 28px;
}

.stan-blog-details h4 {
  font-size: 24px;
}

.stan-blog-details h5 {
  font-size: 20px;
}

.stan-blog-details h6 {
  font-size: 18px;
}

.stan-blog-details table {
  border-radius: 16px;
  overflow: hidden;
  border-spacing: 0;
  font-size: 0.95rem;
  color: var(--clr-secondary);
  background-color: #f4f6fd;
  border: none;
}

.stan-blog-details table thead th {
  text-align: left;
  font-weight: 600;
  padding: 1rem 1.25rem !important;
  border-bottom: 2px solid #ffffff;
}

.stan-blog-details table thead th:not(:last-child) {
  border-right: 2px solid #ffffff;
}

.stan-blog-details table tbody td {
  vertical-align: top;
  padding: 1rem 1.25rem !important;
  line-height: 1.6;
  color: var(--clr-text-secondary);
}

.stan-blog-details table tbody tr:not(:last-child) td {
  border-bottom: 2px solid #ffffff;
}

.stan-blog-details table tbody td:not(:last-child) {
  border-right: 2px solid #ffffff;
}

.stan-blog-details table tbody td:first-child {
  font-weight: 500;
  color: var(--clr-secondary);
  width: 26%;
}

.stan-blog-details table tbody td:last-child {
  width: 30%;
}

.stan-blog-details table tr:first-child th,
.stan-blog-details table tr:first-child td {
  border-top: none;
}

.stan-blog-details table tr:last-child td {
  border-bottom: none;
}

.stan-blog-details table th:first-child,
.stan-blog-details table td:first-child {
  border-left: none;
}

.stan-blog-details table th:last-child,
table td:last-child {
  border-right: none;
}

.stan-blog-details table tfoot {
  border-top: 0;
}

.stan-blog-details table thead {
  border-bottom: 0;
}

.stan-blog-details table tfoot td {
  border-color: #fff !important;
}

.stan-blog-details ul {
  gap: 1rem;
  padding-left: 1.875rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.stan-blog-details li {
  list-style: disc;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #61636C;
}

.stan-blog-details li::marker {
  color: var(--clr-secondary);
}

.stan-blog-details strong {
  font-weight: 500;
  color: var(--clr-secondary);
}

.plr-30 {
  padding: 0 30px;
}

.plr-25 {
  padding: 0 25px;
}

.plr-20 {
  padding: 0 20px;
}

.pd-30 {
  padding: 30px;
}

.pd-25 {
  padding: 25px;
}

.pd-20 {
  padding: 20px;
}

.pd-15 {
  padding: 15px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-15 {
  padding-top: 15px;
}

.stan-blog-details .follow-social-media li {
  list-style: none;
}

.stan-blog-details ul.blog-social {
  gap: 0;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
}

.section-blog-article {
  padding-top: 80px;
  padding-bottom: 80px;
}

.follow-social-media .title-md {
  color: var(--clr-secondary);
}

.stan-social-share {
  gap: 15px;
  display: flex;
  align-items: flex-end;
  margin-top: 15px;
}

.stan-social-share p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #9C9EA8;
}

.stan-social-share ul {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stan-social-share svg {
  width: 1em;
  height: 1em;
}

.stan-social-share .copy-link-btn,
.stan-social-share a {
  font-size: 15px;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  fill: #7E7F8A;
  color: #7E7F8A;
}

.bdetails-hero-content.style-4 {
  border-bottom: 1px solid #D9DADF;
  padding-bottom: 22px;
  margin-bottom: 55px;
}

.bdetails-hero-content.style-4 ul li {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #14151D;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bdetails-hero-content.style-4 ul li a {
  text-decoration: underline;
}

.bdetails-hero-content.style-4 p {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bdetails-hero-content.style-4 ul li:not(:last-child)::after {
  display: none;
}

.stan-social-share .copy-link-btn {
  position: relative;
}

.stan-social-share .copy-tooltip {
  position: absolute;
  top: -20px;
  left: 80%;
  transform: translateX(-50%);
  color: #6355FF;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  line-height: 1;
}

.copy-link-btn.show-tooltip .copy-tooltip {
  opacity: 1;
}

.stan-blog-details .quotation {
  padding: 30px;
  background: #f4f6fd;
  border-radius: 16px;
}

.stan-blog-details blockquote {
  background: #f4f6fd;
  border-radius: 0 16px 16px 0;
  border-left: 2px solid #6355ff;
  padding: 30px;
}


@media (max-width: 1399px) {
  .stan-blog-details h1 {
    font-size: 36px;
    padding-bottom: 20px;
  }

  .stan-blog-details h2 {
    font-size: 30px;
    padding-bottom: 15px;
  }

  .stan-blog-details h3 {
    font-size: 25px;
  }

  .stan-blog-details h4 {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .stan-blog-details h1 {
    font-size: 30px;
  }

  .stan-blog-details h2 {
    font-size: 26px;
  }

  .stan-blog-details h3 {
    font-size: 22px;
  }

  .stan-blog-details h4 {
    font-size: 20px;
  }

  .stan-blog-details h5 {
    font-size: 18px;
  }

  .stan-blog-details h6 {
    font-size: 16px;
  }
}


@media (max-width: 991px) {
  .stan-blog-details h1 {
    font-size: 28px;
  }

  .stan-blog-details h2 {
    font-size: 24px;
  }

  .stan-blog-details h3 {
    font-size: 20px;
  }

  .stan-blog-details .wp-block-table,
  .comparison_wrapper {
    overflow-x: auto;
    max-width: calc(100vw - 30px);
  }

  .stan-blog-details table,
  .comparison-table {
    min-width: 720px;
  }

  .pd-30 {
    padding: 20px 15px;
  }

  .section-blog-article {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .blog-post_author {
    margin-left: 20px;
    margin-right: 20px;
  }

  .blog-post-aside {
    height: auto;
    position: static;
    order: 1;
  }

  .wp-block-quote,
  blockquote {
    margin-inline-start: 15px;
    margin-inline-end: 15px;
  }

  .bdetails-hero-content.style-4 ul li {
    font-size: 16px;
  }

  .bdetails-hero-content.style-4 ul li svg {
    width: 14px;
  }

  .blog-post_toc {
    display: none;
  }

  .stan-blog-details .quotation {
    padding: 20px 15px;
  }

  .stan-blog-details blockquote {
    padding: 20px 15px;
  }

  .newsletter-card.no-related-posts {
    display: none;
  }

}

@media (max-width: 767px) {

  .stan-blog-details li,
  .stan-blog-details p {
    font-size: 16px;
  }

  .stan-blog-details h1 {
    font-size: 26px;
  }

  .pd-m-0 {
    padding: 0 !important;
  }

  .section-blog-article {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .blog-post_author {
    margin-left: 0;
    margin-right: 0;
  }

  .stan-blog-details ul {
    padding-left: 20px;
  }

  .wp-block-quote,
  blockquote {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  .bdetails-hero-content.style-4 {
    padding-bottom: 20px;
    margin-bottom: 35px;
  }

  .stan-blog-details>.plr-30 {
    padding-left: 0;
    padding-right: 0;
  }

}