:root {
  /* Colors */
  --Light-BG: #f4eeea;
  --Primary-Rust: #955431;
  --Primary-Rust-Hover: #763b19;
  --Text-Dark: #1e110a;
  --Text-Light: #706560;
  --Subtext: #3c2214;
  --White: #ffffff;
  --White-Trans: rgba(255, 255, 255, 0.7);
  --Border-Color: rgba(142, 74, 39, 0.15);
  --Text-Black: #000000;
  --Card-BG: #f8f5f2;
  --Card-Border: #e2d8d2;

  /* Fonts */
  --font-satoshi: "Satoshi", sans-serif;
  --font-space-grotesk: "Space Grotesk", sans-serif;

  /* Layout */
  --site-container-max-width: 1288px;
  --site-container-padding: var(--site-space-24);

  /* Spacing */
  --site-space-0: 0;
  --site-space-5: 5px;
  --site-space-6: 6px;
  --site-space-8: 8px;
  --site-space-10: 10px;
  --site-space-12: 12px;
  --site-space-14: 14px;
  --site-space-15: 15px;
  --site-space-16: 16px;
  --site-space-20: 20px;
  --site-space-22: 22px;
  --site-space-24: 24px;
  --site-space-25: 25px;
  --site-space-27: 27px;
  --site-space-28: 28px;
  --site-space-30: 30px;
  --site-space-32: 32px;
  --site-space-36: 36px;
  --site-space-40: 40px;
  --site-space-48: 48px;
  --site-space-50: 50px;
  --site-space-56: 56px;
  --site-space-60: 60px;
  --site-space-64: 64px;
  --site-space-72: 72px;
  --site-space-80: 80px;
  --site-space-90: 90px;
  --site-space-100: 100px;
  --site-space-120: 120px;
  --site-space-160: 160px;

  /* Border radius */
  --site-radius-xs: 10px;
  --site-radius-sm: 12px;
  --site-radius-sl: 15px;
  --site-radius-md: 16px;
  --site-radius-content: 20px;
  --site-radius-lg: 24px;
  --site-radius-card: 28px;
  --site-radius-xl: 32px;
  --site-radius-section: 40px;
  --site-radius-pill: 9999px;
  --site-radius-round: 50%;

  /* font-size */
  --site-font-size-2xs: 0.75rem;
  /* 12px */
  --site-font-size-xs: 0.875rem;
  /* 14px */
  --site-font-size-sm: 1rem;
  /* 16px */
  --site-font-size-md: 1.0625rem;
  /* 17px */
  --site-font-size-base: 1.125rem;
  /* 18px */
  --site-font-size-copy-lg: 1.1875rem;
  /* 19px */
  --site-font-size-lg: 1.25rem;
  /* 20px */
  --site-font-size-xl: 1.5rem;
  /* 24px */
  --site-font-size-ml: 1.625rem;
  /* 26px */
  --site-font-size-1xl: 1.75rem;
  /* 28px */
  --site-font-size-2xl: 1.875rem;
  /* 30px */
  --site-font-size-32: 2rem;
  /* 32px */
  --site-font-size-3xl: 2.25rem;
  /* 36px */
  --site-font-size-38: 2.375rem;
  /* 38px */
  --site-font-size-42: 2.625rem;
  /* 42px */
  --site-font-size-46: 2.875rem;
  /* 46px */
  --site-font-size-4xl: 3rem;
  /* 48px */
  --site-font-size-54: 3.375rem;
  /* 54px */
  --site-font-size-56: 3.5rem;
  /* 56px */
  --site-font-size-5xl: 3.75rem;
  /* 60px */
  --site-font-size-6xl: 4rem;
  /* 64px */
  --site-font-size-7xl: 4.5rem;
  /* 72px */
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: var(--site-space-0);
  padding: var(--site-space-0);
}

html {
  font-size: var(--site-font-size-sm);
}

body {
  background-color: var(--Light-BG);
  font-family: var(--font-space-grotesk);
  color: var(--Text-Dark);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open section,
body.menu-open footer {
  opacity: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Containers */
.starter-container {
  max-width: var(--site-container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-container-padding);
  padding-right: var(--site-container-padding);
  width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-satoshi);
  font-weight: 500;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--site-space-12) var(--site-space-22);
  border-radius: var(--site-radius-pill);
  font-family: var(--font-satoshi);
  font-weight: 500;
  font-size: var(--site-font-size-base);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  height: 48px;
}

.btn-primary {
  background-color: var(--Primary-Rust);
  color: var(--White);
}

.btn-primary:hover {
  background-color: var(--Primary-Rust-Hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--Primary-Rust);
  color: var(--Primary-Rust);
}

.btn-outline:hover {
  background-color: var(--Primary-Rust);
  color: var(--White);
}

/* Reusable Premium Button Styling */
.btn-premium-dark {
  background-color: var(--Text-Dark);
  color: var(--White);
  padding: var(--site-space-10) var(--site-space-10) var(--site-space-10) var(--site-space-22);
  gap: var(--site-space-16);
  font-size: var(--site-font-size-sm);
}

.btn-premium-dark:hover {
  background-color: var(--Primary-Rust-Hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(142, 74, 39, 0.15);
}

.btn-icon-circle {
  width: 30px;
  height: 30px;
  border-radius: var(--site-radius-round);
  background-color: var(--White);
  color: var(--Text-Dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-icon-circle svg {
  width: 20px;
  height: 20px;
}

.btn-premium-dark:hover .btn-icon-circle {
  transform: rotate(45deg);
  background-color: var(--White);
  color: var(--Primary-Rust);
}

.white-btn {
  padding: var(--site-space-10) var(--site-space-32);
  border-radius: 30px;
  border: 2px solid var(--Text-Dark);
  color: var(--Text-Black);
  text-align: center;
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-sm);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 48px;
}

.white-btn:hover {
  background-color: var(--Primary-Rust-Hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(142, 74, 39, 0.15);
  border-color: var(--Primary-Rust-Hover);
}

.white-btn:hover span {
  color: #fff;
}

/*** button styling end ***/

/* Screen Reader Utility */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: var(--site-space-0);
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Spacers & Alignments */
.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  :root {
    --site-container-padding: var(--site-space-16);
  }
}

/*** global eyebrow,heading css ***/
.g_eybrow-text {
  color: var(--Primary-Rust);
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-xs);
  font-style: normal;
  font-weight: 700;
  line-height: 1.71;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.g_eybrow-text.white {
  color: var(--White);
}

.g_heading_text {
  color: var(--Text-Dark);
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-46);
  font-style: normal;
  font-weight: 500;
  line-height: 1.173;
  letter-spacing: -0.46px;
}

.g_description_text {
  color: var(--Subtext);
  font-family: var(--font-space-grotesk);
  font-size: var(--site-font-size-base);
  font-style: normal;
  font-weight: 400;
  line-height: 1.333;
}

.heading-text-lrg {
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-54);
  font-style: normal;
  font-weight: 500;
  line-height: 114.815%;
  letter-spacing: -1.62px;
}

.heading-text-lrg.white {
  color: var(--White);
}

.banner__content__right.description-text-base {
  max-width: 540px;
}

.description-text-base {
  font-family: var(--font-space-grotesk, "Space Grotesk", sans-serif);
  font-size: var(--site-font-size-base);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: var(--site-space-10);
  max-width: 620px;
}

.description-text-base.white {
  color: var(--White);
}

.our-team-over {
  max-width: 1240px;
  padding: 0px 20px;
  margin: auto;
}

.our-team-over img {
  object-position: 0px 0px;
  border-radius: 16px;
}

.custom-cover-block {
  padding: 0px 15px;
}

.legal-page__content {
  max-width: 1040px;
  margin: auto;
}

.page-template-template-legal-page .wp-block-heading.primary-txt {
  font-size: 26px;
}

.page-template-template-faq-page .faq-page-template__content .section-intro__description {
  max-width: 615px;
  margin: auto;
  font-size: 18px;
}

.page-template-template-faq-page .faq-page-template__content {
  max-width: 1030px;
  margin: auto;
}

.page-template-template-faq-page .faq-page-template__content .faq-section .starter-container {
  padding: 0px;
}

.page-template-template-faq-page .faq-page-template__content .wp-block-heading {
  color: #955431;
  opacity: 0.07;
  text-align: center;
  margin-bottom: 20px;
}

.align-items-end {
  align-items: end;
}

.custom-heading-80 {
  font-size: clamp(40px, 6vw, 80px);
}

.system-page-notes .wp-block-group__inner-container {
  max-width: 908px;
  margin: auto;
  padding: 0px 20px;
}

.system-page-notes .wp-block-group__inner-container p {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--Subtext);
}

.disclaimer-info {
  border-radius: 15px;
  border: 1px solid var(--Card-Border);
  background: var(--Card-BG);
  padding: 20px;
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 142.857%;
}

.disclaimer-info svg {
  min-width: 30px;
}

ul.checkmark-list {
  list-style: none;
  margin-top: 15px;
}

ul.checkmark-list li {
  font-size: 16px;
  color: var(--Subtext);
  line-height: 150%;
  letter-spacing: -0.16px;
  font-weight: 500;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  font-family: var(--font-satoshi);
}

ul.checkmark-list li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  background-image: url("/wp-content/uploads/2026/06/tick-check.svg");
  width: 14px;
  height: 11px;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .g_heading_text {
    font-size: var(--site-font-size-32);
  }

  .heading-text-lrg {
    font-size: var(--site-font-size-42);
    line-height: 123.81%;
    letter-spacing: -1.26px;
  }

  .description-text-base {
    font-size: var(--site-font-size-sm);
    line-height: 162.5%;
    letter-spacing: -0.16px;
  }

  .g_description_text {
    font-size: var(--site-font-size-sm);
    line-height: 162.5%;
    letter-spacing: -0.16px;
  }

  br {
    /* display: none; */
  }

  .our-team-group {
    position: relative;
  }

  .our-team-group:before {
    content: "";
    position: absolute;
    top: 0px;
    width: calc(100% - 36px);
    height: 1px;
    background: #e2d8d2;
    margin: auto;
    left: 0;
    right: 0px;
  }

  .page-template-template-legal-page .wp-block-heading.primary-txt {
    font-size: 20px;
  }

  /******** fees pricing page ******/
  .page-id-714 section.journey-cta,
  .page-id-440 section.journey-cta,
  .page-id-631 section.journey-cta {
    padding-top: 0px;
  }

  .page-template-template-faq-page .faq-page-template__content .wp-block-heading {
    margin-bottom: 0px;
  }

  .page-template-template-faq-page .faq-section::before {
    display: none;
  }

  .page-template-template-faq-page .faq-page-template__content .faq-section {
    padding-top: 10px;
  }

  .full-banner__heading br {
    display: none;
  }
}

/*--------------------------------------------------------------
# Blog Listing Page Styles Start
--------------------------------------------------------------*/

.blog-listing-page {
  /* padding-bottom: 80px; */
  background-color: var(--Light-BG);
}

.blog-listing-page .blog-starter-container {
  max-width: var(--site-container-max-width, 1288px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-container-padding, 24px);
  padding-right: var(--site-container-padding, 24px);
  width: 100%;
}

.blog-listing-page .blog-listing__wrapper {
  max-width: var(--site-container-max-width, 1288px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.blog-listing-page .blog-listing_wrap {
  max-width: var(--site-container-max-width, 1288px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.blog-listing-page__wrapper {
  padding-top: var(--site-space-160);
  padding-bottom: var(--site-space-120);
  text-align: center;
}

.blogTitles {
  font-size: var(--site-font-size-46);
  color: var(--Text-Dark);
  line-height: 126.087%;
  letter-spacing: -0.46px;
}

.blog-listing-page__intro {
  max-width: 896px;
  margin: 0 auto 40px auto;
}

.blog-listing-page__eyebrow {
  color: var(--Primary-Rust);
  font-family: var(--font-satoshi, sans-serif);
  font-size: var(--site-font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.blog-listing-page__heading br {
  /* display: none; */
}

.blog-listing-page__heading {
  color: var(--Text-Dark, #1e110a);
  font-family: var(--font-satoshi, sans-serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--site-space-16);
}

.blog-listing-page__description {
  color: var(--Subtext);
  font-family: var(--font-space-grotesk, sans-serif);
  font-size: var(--site-font-size-base, 18px);
  line-height: 1.5;
}

.blog-title-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--site-space-40);
}

.blog-listing-page__search {
  display: flex;
  justify-content: center;
  gap: var(--site-space-12);
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.search-button {
  position: absolute;
  right: var(--site-space-20);
  padding: 0;
  background: transparent;
  border: none;
  top: var(--site-space-14);
  cursor: pointer;
}

.blog-listing-page__search input[type="search"] {
  flex-grow: 1;
  padding: 15px 55px 15px 20px;
  border: 1px solid var(--Card-Border, #e2d8d2);
  border-radius: 50px;
  background-color: var(--Card-BG);
  color: var(--Text-Dark, #1e110a);
  font-family: var(--font-space-grotesk, sans-serif);
  font-size: var(--site-font-size-base);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  max-width: 350px;
  min-width: 350px;
  color: var(--Text-Dark);
  font-weight: 400;
}

.blog-listing-page__search input[type="search"]::placeholder {
  color: var(--Text-Dark);
}

.blog-listing-page__search input[type="search"]:focus {
  border-color: var(--Primary-Rust, #955431);
}

/* Featured Blog Card */
.blog-listing-page__featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--site-space-20);
  align-items: center;
  background-color: var(--Card-BG);
  border-radius: var(--site-radius-md);
  overflow: hidden;
  padding: var(--site-space-15);
  margin-bottom: var(--site-space-80);
}

.blog-listing-page__featured-image-link {
  display: block;
  border-radius: var(--site-radius-sm, 12px);
  overflow: hidden;
  height: 400px;
  background-color: #ffffff;
}

.blog-listing-page__featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-listing-page__featured-image-link:hover .page-template-template-blog-listing .blog-listing-page__featured-image {
  transform: scale(1.03);
}

.blog-listing-page__featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-listing-page__meta {
  color: var(--Text-Light, #706560);
  font-family: var(--font-space-grotesk, sans-serif);
  font-size: var(--site-font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--site-space-16);
}

.blog-listing-page__featured-title {
  color: var(--Text-Dark, #1e110a);
  font-family: var(--font-satoshi, sans-serif);
  font-size: var(--site-font-size-xl);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--site-space-20);
}

.blog-listing-page__featured-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-listing-page__featured-title a:hover {
  color: var(--Primary-Rust, #955431);
}

.blog-listing-page__excerpt {
  color: var(--Text-Light, #706560);
  font-family: var(--font-space-grotesk, sans-serif);
  font-size: var(--site-font-size-sm);
  line-height: 1.6;
  margin-bottom: var(--site-space-30);
}

/* Regular Card Grid */
.blog-listing-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--site-space-24, 24px);
  row-gap: var(--site-space-40, 40px);
  margin-bottom: var(--site-space-60);
}

.blog-listing-page__card {
  display: flex;
  flex-direction: column;
  background: var(--Card-BG);
  padding: var(--site-space-20);
  border-radius: var(--site-radius-md);
}

.blog-listing-page__image-container {
  width: 100%;
  max-width: 412px;
  height: 266px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: var(--Card-BG, #f8f5f2);
  margin-bottom: var(--site-space-20);
}

.blog-listing-page__image-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-listing-page__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-listing-page__image-container:hover .page-template-template-blog-listing .blog-listing-page__image {
  transform: scale(1.04);
}

.blog-listing-page__card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.blog-listing-page__card-content .blog-listing-page__link {
  position: absolute;
  bottom: 0px;
  color: var(--Primary-Rust, #955431);
  font-family: var(--font-satoshi, sans-serif);
  font-size: var(--site-font-size-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: underline;
  margin-top: auto;
  transition: color 0.3s ease;
}

/* Author Metadata Section */
.blog-listing-page__author-section {
  display: flex;
  align-items: center;
  gap: var(--site-space-12, 12px);
  margin-bottom: 21px;
  /* exact 21px gap after author section */
}

.blog-listing-page__author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-listing-page__author-avatar img,
.blog-listing-page__author-avatar svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-listing-page__author-avatar svg {
  padding: var(--site-space-6);
  background-color: var(--Card-BG, #f8f5f2);
}

.blog-listing-page__author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.blog-listing-page__author-name {
  color: var(--Text-Dark, #1e110a);
  font-family: var(--font-satoshi, sans-serif);
  font-size: var(--site-font-size-lg);
  font-weight: 700;
  line-height: 130%;
}

.blog-listing-page__meta-data {
  color: var(--Text-Dark);
  font-family: var(--font-space-grotesk, sans-serif);
  font-size: var(--site-font-size-sm);
  font-weight: 400;
  line-height: 137.5%;
}

/* Blog Title */
.blog-listing-page__card-title {
  color: var(--Text-Dark, #1e110a);
  font-family: var(--font-satoshi, sans-serif);
  font-size: var(--site-font-size-xl);
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 40px;
  /* exact 20px gap between title and link */
  margin-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-listing-page__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-listing-page__card-title a:hover {
  color: var(--Primary-Rust, #955431);
}

/* Learn More Link */
.blog-listing-page_readmore_link {
  display: inline-flex;
  align-items: center;
  color: var(--Primary-Rust, #955431);
  font-family: var(--font-satoshi, sans-serif);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: underline;
  margin-top: auto;
  transition: color 0.3s ease;
}

.blog-listing-page_readmore_link:hover {
  color: var(--Primary-Rust-Hover, #763b19);
}

/* Pagination */
.blog-listing-page__pagination {
  margin-top: 40px;
  text-align: center;
}

.blog-listing-page__pagination ul {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-listing-page__pagination a,
.blog-listing-page__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border-radius: var(--site-radius-xs, 10px);
  font-family: var(--font-space-grotesk, sans-serif);
  font-size: 16px;
  color: var(--Text-Dark, #1e110a);
  border: 1px solid var(--Card-Border, #e2d8d2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-listing-page__pagination span.current {
  background-color: var(--Primary-Rust, #955431);
  color: var(--White, #ffffff);
  border-color: var(--Primary-Rust, #955431);
}

.blog-listing-page__pagination a:hover {
  background-color: var(--Card-BG, #f8f5f2);
  border-color: var(--Primary-Rust, #955431);
}

.blog-listing-page__posts {
  padding-bottom: 100px;
}

/************* Blog Detail start *********/

.single-post__title {
  color: var(--Text-Dark);
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-46);
  font-style: normal;
  font-weight: 500;
  line-height: 126.087%;
  letter-spacing: -0.46px;
}

.post-detail-page-wrapper {
  padding-top: 178px;
}

.post-detail-page-wrapper .single-post__article {
  max-width: 1020px;
  margin: auto;
}

.single-post__header {
  margin-bottom: 60px;
}

.post-detail-page-wrapper .wp-block-image {
  margin-bottom: var(--site-space-40);
  border-radius: 15px;
  overflow: hidden;
  margin-top: var(--site-space-40);
}

.post-detail-page-wrapper .wp-block-paragraph.img-info {
  color: var(--Subtext);
  text-align: center;
  font-family: var(--font-space-grotesk);
  font-size: var(--site-font-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.post-detail-page-wrapper .wp-block-paragraph {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  color: var(--Subtext);
  margin-bottom: var(--site-space-0);
}

.post-detail-page-wrapper .wp-block-group .wp-block-paragraph {
  margin-bottom: var(--site-space-15);
}

.post-detail-page-wrapper .wp-block-paragraph.mb-27 {
  margin-bottom: var(--site-space-27);
}

.post-detail-page-wrapper .wp-block-paragraph.mb-40 {
  margin-bottom: var(--site-space-40);
}

.post-detail-page-wrapper .wp-block-paragraph.mb-0 {
  margin-bottom: 0px;
}

.post-detail-page-wrapper .wp-block-paragraph.mb-10 {
  margin-bottom: var(--site-space-10);
}

.post-detail-page-wrapper .wp-block-paragraph.mb-15 {
  margin-bottom: var(--site-space-15);
}

.post-detail-page-wrapper .wp-block-paragraph.mb-20 {
  margin-bottom: var(--site-space-20);
}

.post-detail-page-wrapper ul,
.post-detail-page-wrapper ol {
  padding-inline-start: var(--site-space-40);
}

.post-detail-page-wrapper ul li,
.post-detail-page-wrapper ol li {
  margin-inline-start: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.post-detail-page-wrapper a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 2px;
  color: inherit;
}

.post-detail-page-wrapper [data-breakout=normal],
.post-detail-page-wrapper .normal-breakout,
.post-detail-page-wrapper .wp-block-paragraph.normal-breakout {
  padding-inline-end: max(clamp(18px, 8vmin, 60px), calc((100% - 740px) / 2));
  padding-inline-start: max(clamp(18px, 8vmin, 60px), calc((100% - 740px) / 2));
  margin: 10px 0 20px 0;
}

.post-detail-page-wrapper .wp-block-group {
  margin-bottom: var(--site-space-40);
}

.post-blog-user-card {
  margin-top: var(--site-space-30);
}

.post-detail-page-wrapper h2.wp-block-heading {
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 133.333%;
  letter-spacing: -0.3px;
  margin-bottom: var(--site-space-15);
}

.post-detail-page-wrapper h3.wp-block-heading {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 133.333%;
  letter-spacing: -0.3px;
  margin-bottom: var(--site-space-15);
}

.related-posts_container__wrapper {
  width: 100%;
}

.related-posts__intro {
  display: grid;
  justify-items: center;
  gap: var(--site-space-10);
  margin-bottom: var(--site-space-80);
  text-align: center;
}

.related-posts__eyebrow {
  color: var(--Primary-Rust);
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-xs);
  font-style: normal;
  font-weight: 700;
  line-height: 1.71;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.related-posts__heading {
  color: var(--Text-Dark);
  text-align: center;
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-46);
  font-style: normal;
  font-weight: 500;
  line-height: 1.173;
  letter-spacing: -0.46px;
}

.related-posts__description {}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--site-space-24);
}

.related-post-card {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: var(--site-space-20);
  align-items: center;
  padding: var(--site-space-10);
  border-radius: var(--site-radius-content);
  background-color: var(--Card-BG);
  border: 1px solid var(--Card-Border);
}

.related-posts__image-link {
  display: block;
  overflow: hidden;
  border-radius: var(--site-radius-md);
  aspect-ratio: 300 / 300;
}

.related-posts__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.related-articles__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-posts__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0px;
}

.related-posts-articles__date {
  color: var(--Text-Dark);
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-xs);
  font-weight: 400;
  line-height: 125%;
  margin-bottom: var(--site-space-10);
}

.related-posts__introdata {
  color: var(--Text-Dark);
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-lg);
  line-height: 120%;
  font-weight: 500;
}

.related-posts__link {
  display: inline-flex;
  margin-top: var(--site-space-20);
  color: var(--Primary-Rust);
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-base);
  font-weight: 500;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 2px;
}

.related-posts {
  padding: 130px 0px;
}

/************ Blog detail End *******/

/* Responsive layout adjustments */
@media (max-width: 1024px) {

  .related-posts__grid,
  .related-post-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .blog-listing-page__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--site-space-20);
    row-gap: var(--site-space-30);
  }

  .blog-listing-page__featured-card {
    grid-template-columns: 1fr;
    padding: var(--site-space-20);
    margin-bottom: var(--site-space-60);
  }

  .blog-listing-page__featured-image-link {
    height: 320px;
  }

  .blog-listing-page__wrapper {
    padding-bottom: var(--site-space-80);
  }

  .blogTitles {
    font-size: var(--site-font-size-38);
  }

  .blog-title-header {
    margin-bottom: var(--site-space-30);
  }
}

@media (max-width: 767px) {
  .blog-listing-page__grid {
    grid-template-columns: 1fr;
    row-gap: var(--site-space-30);
  }

  .blog-listing-page__image-container {
    height: auto;
    aspect-ratio: 412 / 310;
    max-width: 100%;
  }

  .blog-listing-page__wrapper {
    padding-top: var(--site-space-120);
    padding-bottom: var(--site-space-20);
  }

  .blog-listing-page__featured-image-link {
    height: 240px;
  }

  .blog-listing-page__search {
    flex-direction: column;
    width: 100%;
  }

  .blogTitles {
    font-size: var(--site-font-size-2xl);
  }

  .single-post__title {
    font-size: var(--site-font-size-32);
  }

  .blog-title-header {
    margin-bottom: var(--site-space-25);
    flex-direction: column;
    gap: var(--site-space-20);
  }

  .blog-listing-page__card-title {
    font-size: var(--site-font-size-lg);
  }

  .blog-listing-page__card-content .blog-listing-page__link {
    font-size: var(--site-font-size-sm);
  }

  .related-posts__grid,
  .related-post-card {
    grid-template-columns: 1fr;
  }

  .related-posts__intro {
    margin-bottom: var(--site-space-50);
  }

  .related-posts__heading {
    font-size: var(--site-font-size-32);
  }

  .related-post-card {
    padding: var(--site-space-20);
  }

  .related-posts__date {
    font-size: var(--site-font-size-sm);
  }

  .related-posts__introdata {
    font-size: var(--site-font-size-base);
  }

  .coming-soon-wrapper {
    margin-top: var(--site-space-80);
    margin-bottom: var(--site-space-80);
  }

  .blog-listing-page__posts {
    padding-bottom: var(--site-space-60);
  }

  .post-detail-page-wrapper ul,
  .post-detail-page-wrapper ol {
    padding-inline-start: var(--site-space-5);
  }

  .btn-premium-dark.cta-block__button {
    padding: 15px 11px 15px 15px;
  }
}

/*--------------------------------------------------------------
# Blog Listing Page Styles End
--------------------------------------------------------------*/

.top-no-border:before {
  display: none;
}

section.before-after-comparison-wrapper {
  padding-bottom: 160px;
}

.before-after-comparison-wrapper div.coca-bais-container {
  margin: auto;
}

.before-after-comparison-wrapper div.coca-bais-container img {
  width: 100% !important;
  max-height: 526px;
}

.before-after-comparison-wrapper div.coca-bais-container {
  border-radius: 20px;
  overflow: hidden !important;
}

/* WP Before After Image Slider (coca-bais) Custom Styles */

/* 1. Hide the Before and After text labels */
.coca-bais-container [class*="label"],
.coca-bais-container [class*="before-label"],
.coca-bais-container [class*="after-label"],
.coca-bais-container .twentytwenty-before-label,
.coca-bais-container .twentytwenty-after-label {
  display: none !important;
}

/* 2. Style the handle (solid white circle, box shadow, no border) */
.coca-bais-container [class*="handle"],
.coca-bais-container [class*="drag"],
.coca-bais-container .twentytwenty-handle {
  background-color: #ffffff !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16) !important;
  width: 48px !important;
  height: 48px !important;
  margin-left: -24px !important;
  margin-top: -24px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* 3. Style the handle chevrons/arrows to be dark grey/black */
.coca-bais-container [class*="left-arrow"],
.coca-bais-container [class*="arrow-left"] {
  border-right-color: #1e110a !important;
}

.coca-bais-container [class*="right-arrow"],
.coca-bais-container [class*="arrow-right"] {
  border-left-color: #1e110a !important;
}

/* If the arrows are rendered as SVG paths */
.coca-bais-container [class*="handle"] svg,
.coca-bais-container [class*="drag"] svg,
.coca-bais-container [class*="handle"] svg path,
.coca-bais-container [class*="drag"] svg path,
.coca-bais-container .twentytwenty-handle svg,
.coca-bais-container .twentytwenty-handle svg path {
  fill: #1e110a !important;
  stroke: #1e110a !important;
}

/* If the arrows are rendered as icon font or elements */
.coca-bais-container [class*="arrow"],
.coca-bais-container [class*="chevron"],
.coca-bais-container [class*="handle"] i,
.coca-bais-container [class*="drag"] i {
  color: #1e110a !important;
}

.anchor-underline .image-repeater__cta-link {
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .before-after-comparison-wrapper div.coca-bais-container {
    max-width: 60% !important;
    width: 100%;
    max-height: 526px;
  }
}

@media screen and (max-width: 768px) {
  section.before-after-comparison-wrapper {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Blog Detail Comments Styles
--------------------------------------------------------------*/
.heading-bold-big {
  color: var(--Text-Dark);
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-2xl);
  font-style: normal;
  font-weight: 500;
  line-height: 133.333%;
  letter-spacing: -0.3px;
}

.comments-main-wrapper {
  max-width: 1020px;
  margin: auto;
}

.comments-area {
  margin-top: var(--site-space-60);
  border-top: 1px solid var(--Card-Border);
  padding-top: var(--site-space-60);
}

.comments-title {
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-ml);
  color: var(--Text-Dark);
  margin-bottom: var(--site-space-32);
  font-weight: 500;
}

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

.comment-list .comment {
  margin-bottom: var(--site-space-32);
}

.comment-body {
  position: relative;
  background-color: var(--Card-BG);
  border: 1px solid var(--Card-Border);
  border-radius: var(--site-radius-content);
  padding: var(--site-space-24);
  transition: box-shadow 0.3s ease;
}

.comment-body:hover {
  box-shadow: 0 4px 15px rgba(142, 74, 39, 0.05);
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: var(--site-space-16);
  margin-bottom: var(--site-space-12);
}

.comment-author .avatar {
  border-radius: var(--site-radius-round);
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.comment-metadata {
  font-family: var(--font-space-grotesk);
  font-size: var(--site-font-size-2xs);
  color: var(--Text-Light);
}

.comment-metadata a {
  color: inherit;
  transition: color 0.3s ease;
}

.comment-metadata a:hover {
  color: var(--Primary-Rust);
}

.comment-author .fn {
  font-family: var(--font-satoshi);
  font-weight: 700;
  color: var(--Text-Dark);
  font-size: var(--site-font-size-sm);
}

.comment-author .says {
  display: none;
}

.comment-content {
  font-family: var(--font-space-grotesk);
  font-size: var(--site-font-size-sm);
  color: var(--Subtext);
  line-height: 1.6;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.comment-body .reply {
  margin-top: var(--site-space-16);
  display: flex;
  justify-content: flex-end;
}

.comment-body .reply a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-xs);
  font-weight: 700;
  color: var(--Primary-Rust);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.comment-body .reply a:hover {
  color: var(--Primary-Rust-Hover);
}

/* Nested Comments */
.comment-list .children {
  list-style: none;
  margin: var(--site-space-20) 0 0 var(--site-space-48);
  padding: 0;
  border-left: 2px solid var(--Card-Border);
  padding-left: var(--site-space-24);
}

@media (max-width: 768px) {
  .comment-list .children {
    margin-left: 0;
    padding-left: var(--site-space-16);
  }
}

/* Comment Form Styling */
.comment-respond {
  margin-top: var(--site-space-60);
  background-color: var(--Card-BG);
  border: 1px solid var(--Card-Border);
  border-radius: var(--site-radius-content);
  padding: var(--site-space-40);
}

@media (max-width: 768px) {
  .comment-respond {
    padding: var(--site-space-24);
  }
}

.comment-reply-title {
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-ml);
  color: var(--Text-Dark);
  margin-bottom: var(--site-space-24);
  font-weight: 500;
}

.comment-reply-title a {
  font-size: var(--site-font-size-xs);
  color: var(--Primary-Rust);
  margin-left: var(--site-space-16);
  text-decoration: underline;
}

.comment-reply-title a:hover {
  color: var(--Primary-Rust-Hover);
}

.comment-form {
  display: grid;
  gap: var(--site-space-20);
}

.comment-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--site-space-8);
}

.comment-form-group label {
  font-family: var(--font-satoshi);
  font-size: var(--site-font-size-xs);
  font-weight: 700;
  color: var(--Text-Dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comment-form-group input[type="text"],
.comment-form-group input[type="email"],
.comment-form-group textarea {
  padding: var(--site-space-14) var(--site-space-20);
  border: 1px solid var(--Card-Border);
  border-radius: var(--site-radius-sm);
  background-color: var(--White);
  color: var(--Text-Dark);
  font-family: var(--font-space-grotesk);
  font-size: var(--site-font-size-sm);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.comment-form-group input[type="text"]:focus,
.comment-form-group input[type="email"]:focus,
.comment-form-group textarea:focus {
  border-color: var(--Primary-Rust);
}

.comment-form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.comment-form .form-submit {
  margin-top: var(--site-space-10);
  margin-bottom: 0;
}

.submit-comment-btn {
  border: none;
  cursor: pointer;
}

/* Comments Closed Message Box */
.comments-closed-message {
  margin-top: var(--site-space-40);
  background-color: var(--Card-BG);
  border: 1px dashed var(--Primary-Rust);
  border-radius: var(--site-radius-sm);
  padding: var(--site-space-24);
  text-align: center;
}

.comments-closed-message p {
  font-family: var(--font-space-grotesk);
  font-size: var(--site-font-size-sm);
  color: var(--Subtext);
  font-weight: 500;
  margin: 0;
}

/****** Comment styling end ****/
.coming-soon-wrapper {
  margin-top: 150px;
  margin-bottom: 150px;
}

/************** 404 Page **************/
.page-404 {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-404--with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-404__overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(30, 17, 10, 0.85); */
  /* using var(--Text-Dark) RGB overlay to match theme harmony */
  z-index: 1;
}

.page-404__content {
  position: relative;
  width: 100%;
  padding: var(--site-space-160) var(--site-space-24);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-404__title {
  margin: 0 0 var(--site-space-20);
  font-family: var(--font-satoshi);
  font-size: clamp(3rem, 8vw, 3.5rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1.5px;
}

.page-404__text {
  margin: 0 auto var(--site-space-32);
  font-family: var(--font-space-grotesk);
  font-size: var(--site-font-size-base);
  line-height: 1.6;
  color: var(--White-Trans);
  max-width: 520px;
}

.page-404__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.page-404 .btn--primary {
  background-color: var(--Primary-Rust);
  color: var(--White);
}

.page-404 .btn--primary:hover {
  background-color: var(--Primary-Rust-Hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(142, 74, 39, 0.2);
}

.page-404 .btn--primary .btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--site-space-8);
  transition: transform 0.3s ease;
}

.page-404 .btn--primary:hover .btn__icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .page-404 {
    min-height: 60vh;
  }

  .page-404__content {
    padding: var(--site-space-80) var(--site-space-16);
  }

  .page-404__title {
    font-size: clamp(2.5rem, 10vw, 2.5rem);
  }
}