:root {
  --primary-color: #6a2135;
  --text-color: #051634;
  --bg-color: #fff;
  --white: #ffffff;
  --container-width: 1640px;
  --hero-bg: #faf5f1;
  --pricing-bg: #f9f5f5;
  --footer-bg: #051634;
  --sub-color: #96a0ce;
  --gold-color: #f5ece0;
  --bg-grey-color: #eaecf5;
  --border-color: #c2c8d2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Добавляем стили для заголовков с шрифтом Reaktif */
h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.section-title {
  font-family: "Reaktif", "Montserrat", system-ui, sans-serif;
  font-weight: 700;
}

.btn,
.nav__list a,
.footer__nav-column h3 {
  font-family: "Reaktif", "Montserrat", system-ui, sans-serif;
}


body {
  font-family: "Montserrat";
  color: var(--text-color);
  line-height: 1.5;
  background: var(--bg-color);
  font-display: swap;
  font-synthesis: none;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-200 {
  margin-bottom: 200px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-150 {
  padding-bottom: 150px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Menu mobile */

.mm-panels {
  background: #fff;
  border: 1px solid hsba(231, 40%, 41%, 1);
}

.mm-navbar {
  display: none;
}

.menu-footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.mm-panel:after {
  display: none;
}

.header-menu-mob {
  background: #fff;
  list-style-type: none;
  padding: 16px;
  border-radius: 16px 0px 0px 16px;
}

.header-menu-mob .header-menu-item {
  padding: 10px 12px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: var(--text-color);
}

.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
  color: var(--text-color);
  justify-content: center;
}

.header-menu-mob:nth-child(2) {
  margin-top: 55px;
}

.header-menu-mob .header-menu-item:nth-child(2) {
  margin-top: 54px;
}

.header-menu-mob .header-menu-item .header-menu-item-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
}

.header-burger {
  color: var(--text-color);
}

.header-menu-mob .header-menu-item .header-menu-item-link svg {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 16px;
}

.header-menu-mob .header-menu-item .header-menu-item-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-menu-mob .header-menu-item.active svg path {
  fill: var(--accent);
}

.header-menu-mob .header-menu-item:hover svg path {
  fill: var(--accent);
}

.header-menu-mob .header-menu-item:not(:last-child) {
  margin-bottom: 16px;
}

.header-menu-mob .btn {
  width: 100%;
  margin-bottom: 32px;
}

.mm-panel {
  background-color: #fff;
}

.close-menu {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 15px;
  top: 24px;
  color: #222222;
}

.header-burger {
  display: none;
}

/* Menu mobile */

/* Header Styles */
.header {
  padding: 22px 0;
  position: fixed;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.header-ads-line {
  background: #43974a;
  padding: 8px 0px;
  position: fixed;
  z-index: 100;
  width: 100%;
}

/* Позиционирование header относительно рекламной строки */
.header-ads-line+.header {
  top: 55px;
}

/* Когда рекламная строка скрыта, header должен быть наверху */
.header-ads-line.hidden+.header {
  top: 0px;
}

/* Скрытие рекламной строки */
.header-ads-line.hidden {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Адаптация header при sticky рекламной строке */
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Когда рекламная строка sticky, header должен быть под ней */
.header.sticky.with-ads-line {
  top: 55px;
  /* Высота рекламной строки */
}

/* Когда рекламная строка не sticky или скрыта */
.header.sticky.without-ads-line {
  top: 0px;
}

/* Добавляем hover эффект для кнопки закрытия */
.header-ads-line-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
}

/* Добавляем hover эффект для кнопки в рекламной строке */
.header-ads-line-btn:hover {
  background: #f5ece0;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.header-ads-line-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-ads-line-text {
  display: inline-block;
  color: #eef0f8;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

.header-ads-line-price {
  display: inline-block;
  margin-right: 20px;
  color: #eef0f8;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.header-ads-line-btn {
  border-radius: 12px;
  background: #fff;
  padding: 10px 27px;
  color: #c42d54;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
}

.header-ads-line-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-ads-line-close svg {
  width: 15px;
  height: 15px;
}

.header-burger {
  display: none;
}

.header-menu-mob {
  display: none;
}

.header.sticky {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav__list a {
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: var(--text-color);
}

.header__buttons {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.btn {
  padding: 20px 20px;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
}

.cta-block__content .btn {
  padding: 20px 64px;
  color: var(--gold-color);
}

.btn--primary {
  background: var(--primary-color);
  color: var(--white);
}

.login-link {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.login-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-color);
  transition: width 0.3s ease;
}

.login-link:hover::after {
  width: 100%;
}

.btn--get-started {
  background: var(--primary-color);
  color: var(--gold-color);
  border-radius: 12px;
  padding: 10px 27px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  height: 40px;
  text-transform: capitalize;
}

.btn--get-started:hover {
  background: #9c3b56;
  color: var(--gold-color);
}

/* Hero Section */
.hero {
  background: var(--hero-bg);
  padding: 100px 0 70px;
  border-radius: 0 0 50px 50px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  transition: padding-top 0.3s ease;
}

/* Hero с рекламной строкой */
.hero.with-ads-line {
  padding-top: 160px;
}

/* Hero без рекламной строки */
.hero.without-ads-line {
  padding-top: 100px;
}

.hero .container {
  position: relative;
}

.hero__title {
  font-family: "Reaktif", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  max-width: 1345px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  color: var(--primary-color);
  /* opacity: 0; */
}

.hero__title-mobile {
  display: none;
}

.hero-images-wrap svg path {
  /* opacity: 0; */
}

.hero__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 15px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  /* opacity: 0; */
}

.hero__button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .btn--primary {
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 8px;
  background: var(--primary-color);
  color: var(--white);
  display: inline-block;
  font-weight: 500;
  /* opacity: 0; */
}

.hero .btn--primary:hover {
  background: #9c3b56;
}

.hero-images-wrap {
  position: relative;
  width: 100%;
  height: 510px;
}

.hero-tooltip-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.hero-tooltip {
  background: var(--white);
  border: 1px solid #051634;
  border-radius: 22px;
  width: 300px;
  position: absolute;
  /* opacity: 0; */
}

.hero-tooltip-1 {
  right: 0;
  top: -10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 30px 0px 30px;
  flex-wrap: wrap;
}

.hero-tooltip-2 {
  top: 200px;
  right: 60px;
  padding: 5px 30px 20px 20px;
}

.hero-tooltip-2::before {
  content: "";
  display: block;
  background-image: url(/wp-content/themes/skrooge/src/img/message.svg);
  width: 20px;
  background-repeat: no-repeat;
  height: 20px;
  bottom: -9px;
  left: -6px;
  position: absolute;
  z-index: 2;
}

.hero-tooltip-2-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}

.hero-tooltip-2-logo img {
  width: 30px;
  height: 30px;
}

.hero-tooltip-2-logo__text {
  font-family: Reaktif;
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 0%;
  color: var(--primary-color);
}

.hero-tooltip-2-content {}

.hero-tooltip-2-content p {
  font-family: "Montserrat Italic", "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.hero-tooltip-2-content img {
  position: absolute;
  bottom: 17px;
  right: 20px;
}

.hero-tooltip-3 {
  bottom: 76px;
  left: 250px;
  width: 330px;
  padding: 24px 20px 16px 20px;
}

.profit-percent-wrap {
  width: 64px;
  height: 64px;
  background: #43974a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profit-percent-wrap__percent {
  font-weight: 700;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
}

.hero-tooltip-1__content {
  display: flex;
  align-items: center;
  gap: 21px;
  width: 100%;
}

.profit-percent {}

.profit-percent__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 115%;
  letter-spacing: 0%;
  margin-bottom: 2px;
  display: block;
  width: 100%;
  text-transform: uppercase;
}

.profit-percent__value {
  font-weight: 600;
  font-size: 36px;
  line-height: 115%;
  letter-spacing: 0%;
  margin-bottom: 2px;
}

.hero-chart {
  width: 100%;
}

.hero-chart img {
  width: 100%;
}

.hero-chart-mobile {
  display: none;
}

/* Stats Section */
.stats {
  background: var(--bg-color);
}

.stats__grid {
  display: flex;
  gap: 100px;
  text-align: center;
  width: 100%;
  align-items: initial;
  justify-content: center;
  padding-left: 100px;
  padding-right: 100px;
}

.stat-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  flex-direction: column;
}

.stat-item h2 {
  font-family: Reaktif;
  font-weight: 700;
  font-size: 125px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  width: 100%;
  color: var(--primary-color);
  margin-bottom: 10px;
  -webkit-text-stroke: 1px var(--sub-color);
  -webkit-text-fill-color: white;
  letter-spacing: -1px;
}

.stat-item:nth-child(1) h2 {
  min-width: 227px;
}

.stat-item:nth-child(2) h2 {
  min-width: 492px;
}

.stat-item p {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  width: 100%;
}

.uae-map {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.uae-map img {
  width: 235px;
  height: 185px;
  object-fit: contain;
}

.hero-tooltip-3-content-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 13px;
}

.hero-tooltip-3-content-item:not(:last-child) {
  margin-bottom: 10px;
}

.hero-tooltip-3-content-item__icon {
  width: 22px;
  height: 23px;
}

.hero-tooltip-3-content-item__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
}

.whatsapp-btn {
  border-radius: 8px;
  background: #3cd30e;
  padding: 7px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
  margin-left: 16px;
  height: 48px;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background: #29b200;
}

.whatsapp-btn svg {
  height: 25px;
  width: 25px;
}

.header-phone-link {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-style: normal;
  font-family: Montserrat;
  font-weight: 600;
  line-height: 160%;
  padding: 5px 11px;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 12px;
  border: 1.5px solid #6A2135;
  background: #F9F6F2;
  transition: all .5s;
}

.header-phone-link:hover {
  text-decoration: none;
  background: #6A2135;
  color: #F9F6F2;
}

.header-phone-link svg {
  transition: all .5s;
}

.header-phone-link:hover svg path {
  stroke: #F9F6F2;
}

/* Build For Section */
.build-for {
  padding: 80px 0;
}

.section-title {
  font-size: 62px;
  line-height: 115%;
  text-align: center;
  margin-bottom: 4px;
}

.section-subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.card {
  flex: 0 0 calc(50% - 15px);
  height: 600px;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card:nth-child(2) {
  margin-top: 100px;
}

.card:nth-child(3),
.card:nth-child(5) {
  margin-top: -100px;
}

.card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 30px 20px 60px;
  background: linear-gradient(to top,
      rgba(5, 22, 52, 0.8) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0) 100%);
  color: white;
}

.card h3 {
  font-family: Reaktif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 3px;
  color: var(--gold-color);
}

.card__quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
}

.card__feature {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0%;
  color: var(--gold-color);
}

/* Marquee Styles */
.marquee-container {
  width: 100vw;
  margin: 40px 0;
  overflow: hidden;
  position: relative;
}

.marquee {
  width: fit-content;
  display: flex;
  position: relative;
  user-select: none;
  gap: 80px;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 80px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee-content span {
  font-family: Reaktif;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--sub-color);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.marquee-content span::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sub-color);
  z-index: 1;
}

.marquee-content span:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Card CTA Variant */
.card--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  color: var(--text-color);
}

.card--cta:hover {
  transform: none;
  background: none;
}

.card--cta::after {
  display: none;
}

.card--cta .card__content {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 500px;
  object-fit: contain;
  background: none;
  padding: 0;
}

.card--cta img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.card--cta h3 {
  color: var(--text-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.card--cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.card--cta .btn--primary {
  background: var(--primary-color);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  width: 100%;
}

.cta-block {
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.cta-block__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-block__content h3 {
  font-family: Reaktif;
  font-weight: 700;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 4px;
}

.cta-block__content p {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 24px;
}

.cta__image img {
  height: 100%;
  width: 100%;
  display: block;
}

/* Needs Covered Section */
.needs-covered {
  padding: 80px 0;
  background: var(--hero-bg);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: initial;
  justify-content: center;
  gap: 20px;
  margin-top: 102px;
}

.services-grid .service-card {
  overflow: visible;
}

.service-card {
  background: var(--white);
  padding: 30px 25px 33px 25px;
  border-radius: 30px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
  width: calc(33.33% - 15px);
}

.service-card__top-gradient {
  position: absolute;
  top: -40px;
  left: 100px;
}

.service-card__top-gradient:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -100px;
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 30px 0px;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 68px;
  margin-top: -40px;
  background: var(--bg-grey-color);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: Reaktif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 5px;
}

.service-card p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0%;
  margin-bottom: 80px;
  max-width: 450px;
}

.service-card:last-child p {
  margin-bottom: 0;
}

.btn--secondary {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background: transparent;
}

.service-card--coming-soon {
  opacity: 0.8;
}

.coming-soon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: -20px;
}

/* Meet Skrooge Section */
.meet-skrooge {
  padding: 80px 0 0 0;
}

.quote {
  text-align: center;
  max-width: 700px;
  margin: 60px auto;
  position: relative;
}

.quote__marks {
  font-size: 120px;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.quote blockquote {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.quote cite {
  color: #666;
  font-style: normal;
}

.team-grid {
  display: flex;
  align-items: initial;
  justify-content: space-between;
  gap: 2px;
  margin-top: 60px;
  position: relative;
}

/* .team-slider.team-slider {
    display: none;
} */

.slick-next {
  right: 5px;
  width: 30px;
  height: 30px;
  top: 50%;
  z-index: 2;
  transform: translateY(-100px);
}

.slick-prev {
  left: 5px;
  width: 30px;
  height: 30px;
  top: 50%;
  z-index: 2;
  transform: translateY(-100px);
}

.slick-prev:before,
.slick-next:before {
  font-size: 30px;
}

.old-team-member {
  transition: transform 0.3s ease;
  width: calc(20% - 10px);
  display: none;
}

.team-member-image {
  background: var(--bg-grey-color);
  height: 400px;
}

.old-team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.slick-slide {
  margin-left: 2px;
  margin-right: 2px;
}

.slick-slider {
  transition: opacity 0.5s;
  opacity: 0 !important;
}

.slick-slider.slick-initialized {
  opacity: 1 !important;
}

/* .team-member--ai {
    background: var(--bg-grey-color);
} */

.team-member--ai img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.team-member-content {
  padding: 16px 18px;
  background: var(--white);
}

.team-member-content h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0%;
  margin-bottom: 3px;
}

.team-member-content p {
  font-weight: 300;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0%;
}

.meet-skrooge__content {
  display: flex;
  align-items: initial;
  justify-content: space-between;
  margin-top: 45px;
}

.meet-skrooge__left {
  width: calc(50% - 51px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.divider {
  width: 1px;
  height: initial;
  background: var(--border-color);
  margin-left: 50px;
  margin-right: 50px;
  display: block;
}

.meet-skrooge__left-content {
  max-width: 520px;
  position: relative;
  text-align: right;
}

.meet-skrooge__left p {
  text-align: left;
  font-family: Reaktif;
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
}

.meet-skrooge__left span {
  font-size: 22px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: right;
  display: inline-block;
  margin-top: 17px;
  margin-left: auto;
}

.meet-skrooge__left img {
  position: absolute;
  top: 0px;
  z-index: -1;
  left: -160px;
}

.meet-skrooge__link img {
  margin-left: 10px;
}

.meet-skrooge__right {
  width: calc(50% - 50px);
}

.meet-skrooge__right h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 6px;
}

.meet-skrooge__right-content p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0%;
  margin-bottom: 30px;
}

.meet-skrooge__right-content p:last-child {
  margin-bottom: 0px;
}

.meet-skrooge__right-content {
  margin-bottom: 17px;
}

.meet-skrooge__right a {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
}

.link {
  position: relative;
}

.link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.link:hover::after {
  width: 100%;
}

/* Skrooge Advantage Section */
.skrooge-advantage {
  padding: 100px 0px;
  background: var(--white);
  position: relative;
}

.tabs {
  margin-top: 32px;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 65px;
}

.tab-btn {
  padding: 17px 22px;
  border-radius: 12px;
  background: #f3f4f6;
  border: none;
  color: #949ba8;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: rgba(5, 22, 52, 0.05);
}

.tab-btn.active {
  background: var(--primary-color);
  color: var(--gold-color);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
  align-items: center;
}

.tab-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 512px;
  width: calc(50% - 60px);
}

.tab-text {
  width: calc(50% - 60px);
  max-width: 736px;
}

.tab-illustration .svg-illustration {
  width: 100%;
  max-width: 600px;
  height: auto;
  transition: all 0.5s ease;
}

.tab-illustration svg path {
  opacity: 0;
}

.tab-content:not(.active) .tab-illustration .svg-illustration {
  opacity: 0;
  transform: translateY(20px);
}

.tab-content.active .tab-illustration .svg-illustration {
  opacity: 1;
  transform: translateY(0);
}

.tab-text h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 30px;
  opacity: 0;
}

.tab-text p {
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 24px;
  opacity: 0;
}

.tab-text p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  position: relative;
  background: var(--pricing-bg);
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  /* background-image: url(../images/pat_bottom.svg); */
  background-image: url(/wp-content/themes/skrooge/src/img/pat_top.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 15px;
  z-index: 2;
}

.pricing__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing__title {
  text-align: center;
  font-family: Reaktif;
  font-weight: 700;
  font-size: 62px;
  line-height: 115%;
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
}

.pricing__title::before {
  content: "###";
  position: absolute;
  top: 16px;
  left: -120px;
  color: #d3c3c3;
  font-family: Reaktif;
  font-weight: 500;
  font-size: 32px;
  line-height: 115%;
  width: 90px;
}

.pricing__title::after {
  content: "###";
  position: absolute;
  top: 16px;
  right: -120px;
  color: #d3c3c3;
  font-family: Reaktif;
  font-weight: 500;
  font-size: 32px;
  line-height: 115%;
  width: 90px;
}

.highlight {
  color: var(--primary-color);
  opacity: 0.5;
}

.pricing__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  margin-bottom: 35px;
  display: block;
}

.pricing__calculator {
  max-width: 762px;
  margin: 0 auto;
}

.calculator__input {
  margin-bottom: 40px;
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.calculator__input::before {
  content: "";
  position: absolute;
  top: 0;
  background-image: url(/wp-content/themes/skrooge/src/img/dash.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

.calculator__input::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url(/wp-content/themes/skrooge/src/img/dash.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

.calculator__input-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.calculator__input label {
  font-size: 20px;
  line-height: 160%;
}

.calculator__input #transactions {
  padding: 12px 15px;
  text-align: left;
  font-weight: 700;
  font-size: 22px;
  line-height: 115%;
  border-radius: 12px;
  /* border: 1px solid #EADADA; */
  background: transparent;
  width: 125px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

.price-btn {
  width: 100%;
  display: block;
  border-radius: 18px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  color: #f5ece0;
  padding: 20px;
}

.calculator__slider {
  margin-top: 20px;
}

.custom-slider-container {
  position: relative;
  width: 100%;
  height: 20px;
  padding: 10px 0;
  cursor: pointer;
  touch-action: none;
  margin: 20px 0;
  display: flex;
  align-items: center;
  margin-top: 72px;
}

.custom-slider-track {
  position: relative;
  width: 100%;
  height: 7px;
  background-color: #ded8d8;
  border-radius: 9px;
}

.custom-slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--text-color);
  border-radius: 4px;
  pointer-events: none;
  width: 0%;
}

.custom-slider-thumb {
  position: absolute;
  top: -30px;
  left: 0%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  cursor: grab;
  transition: box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* .custom-slider-thumb::after {
    content: '';
    display: block;
    background-image: url(/wp-content/themes/skrooge/src/img/arrow-left.svg);
} */

/* Custom slider markers for pricing calculator */
.custom-slider-marker {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 32px;
  background: transparent;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-slider-marker span {
  display: block;
  font-size: 16px;
  color: #949ba8;
  font-weight: 500;
  margin-top: 8px;
  white-space: nowrap;
  transition: color 0.2s, font-weight 0.2s;
  position: relative;
  z-index: 3;
}

.custom-slider-marker.active span {
  color: #051634;
}

.custom-slider-marker.current span {
  color: #051634;
  font-weight: 700;
  font-size: 20px;
  text-shadow: 0 1px 0 #fff, 0 0 2px #dedede;
}

.custom-slider-marker::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transform: translateY(-7.5px);
  border-radius: 50%;
  margin-bottom: 2px;
  transition: background 0.2s;
  position: absolute;
  background: #ded8d8;
}

.custom-slider-marker.active::before {
  background: #051634;
}

.custom-slider-marker.current::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  transform: translateY(-4px);
  border-radius: 50%;
  transition: background 0.2s;
  position: absolute;
  background: #faf5f5;
}

.custom-slider-marker {}

.custom-slider-marker.active::before {
  background: #051634;
}

.slider {
  width: 100%;
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.pricing__result {
  text-align: center;
  margin-bottom: 40px;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox+label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-checkbox+label::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: 0.5em;
  border-radius: 6px;
  border: 1px solid #d3c3c3;
  background: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked+label::after {
  border-color: #6a2135;
  background-color: #6a2135;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: rgba(0, 0, 255, 0.33);
}

.custom-checkbox:not(:disabled):active+label::before {
    background-color: rgba(0, 0, 255, 0.66);
}

.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #c3c3c3;
}

.custom-checkbox:disabled+label::before {
    background-color: black;
} */

.price__label {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
}

.price__subtitle {
  font-size: 20px;
  line-height: 160%;
  display: block;
  margin-bottom: 21px;
}

.price__amount {
  font-family: Reaktif;
  display: block;
  font-weight: 700;
  font-size: 62px;
  line-height: 62px;
  color: var(--primary-color);
  margin-bottom: 23px;
}

.price__period {
  font-size: 37px;
  font-weight: 700;
  vertical-align: super;
  position: relative;
}

.price__note {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

.pricing__features {
  position: relative;
  padding-top: 40px;
}

.pricing__features::before {
  content: "";
  position: absolute;
  top: 0px;
  background-image: url(/wp-content/themes/skrooge/src/img/dash.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

.pricing__features h3,
.pricing__addons h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 160%;
}

.pricing__features h3 {
  margin-bottom: 8px;
}

.feature-group {
  margin-bottom: 35px;
}

.feature-group:last-child {
  margin-bottom: 0;
}

.feature-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: #96a0ce;
  margin-bottom: 2px;
}

.addons-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.addons-title-wrap__button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.addons-title-wrap__button.active {
  transform: rotate(0deg);
}

.features-list {}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.feature-name {
  font-size: 20px;
  line-height: 200%;
  position: relative;
  background-color: #f9f5f5;
  padding-right: 10px;
  z-index: 1;
}

.feature-text span {
  display: none;
}

.feature-name img {
  display: none;
}

.feature-value {
  font-size: 20px;
  line-height: 200%;
  position: relative;
  background-color: #f9f5f5;
  padding-left: 10px;
  z-index: 1;
}

.feature-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6em;
  height: 2px;
  background-image: radial-gradient(circle,
      var(--text-color) 2px,
      transparent 2px);
  background-size: 10px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
  z-index: 0;
}

.feature-value img {
  width: 15px;
  height: 11px;
  object-fit: contain;
}

.feature-separator {
  font-family: Reaktif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: #d3c3c3;
  height: 15px;
}

.pricing__addons {
  margin-top: 40px;
}

.addons-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.pricing__addons_second {
  margin-bottom: 60px;
}

.pricing__addons_second .addons-list {
  overflow: visible;
  opacity: 1;
  padding-bottom: 130px;
}

.addons-list.active {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}

.addons-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.addon-name {
  font-size: 20px;
  line-height: 200%;
  position: relative;
  background-color: #f9f5f5;
  padding-right: 10px;
  z-index: 1;
}

.addon-price {
  font-size: 20px;
  line-height: 200%;
  position: relative;
  background-color: #f9f5f5;
  padding-left: 10px;
  z-index: 1;
}

.addons-list li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6em;
  height: 2px;
  background-image: radial-gradient(circle,
      var(--text-color) 2px,
      transparent 2px);
  background-size: 15px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
  z-index: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.testimonials__grid-mobile {
  display: none;
}

.testimonial-card {
  background: var(--bg-color);
}

.testimonial__author {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 16px;
}

.author__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author__image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author__info-testimonial {
  margin-top: 17px;
}

.author__info {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.author__info h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
}

.author__info p {
  font-size: 20px;
  line-height: 160%;
}

.testimonial__text {
  font-size: 20px;
  line-height: 160%;
}

.testimonial__rating {
  color: var(--text-color);
  margin-bottom: 12px;
}

/* CTA Section */
.cta {
  background: var(--primary-color);
  color: var(--white);
}

.cta__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
  padding-top: 28px;
}

.cta__text {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
}

.cta__text h2 {
  font-family: Reaktif;
  font-weight: 600;
  font-size: 52px;
  line-height: 115%;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.cta__text p {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: var(--gold-color);
  margin-bottom: 40px;
}

.cta .btn--primary {
  background: var(--gold-color);
  color: var(--primary-color);
  border-radius: 18px;
  padding: 20px 57px;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  display: block;
  max-width: 300px;
  transition: all 0.3s ease;
}

.cta .btn--primary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: var(--white);
  border-radius: 0 0 50px 50px;
  position: relative;
  z-index: 2;
}

.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.faq__title-wrap {
  max-width: 485px;
  width: 100%;
  margin-right: auto;
}

.faq h2 {
  font-family: Reaktif;
  font-weight: 700;
  font-size: 62px;
  line-height: 115%;
  margin-bottom: 15px;
}

.faq__contact {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
}

.faq__contact a {
  color: var(--primary-color);
  text-decoration: none;
}

.faq__contact a img {
  width: 11px;
  height: 11px;
  object-fit: contain;
  margin-left: 5px;
}

.faq__list {
  width: calc(100% - 600px);
}

.faq-item {
  border-bottom: 1px solid rgba(5, 22, 52, 0.1);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: var(--text-color) !important;
  padding-top: 18px;
  padding-bottom: 18px;
}

.faq-item__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(0deg);
}

.faq-item__content {
  display: none;
  font-size: 20px;
  line-height: 160%;
  padding-bottom: 7px;
  max-width: 760px;
}

.faq-item.active .faq-item__content {
  display: block;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 200px 0 40px;
  margin-top: -120px;
}

.footer__content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 120px;
  margin-bottom: 56px;
}

.footer__brand .logo {
  margin-bottom: 11px;
  display: inline-block;
}

.footer__tagline {
  font-family: Reaktif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 22px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #fffaf4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #37445a;
  border: 1px solid #37445a;
}

.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 90px;
  margin-left: auto;
}

.footer__nav-column h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 10px;
  color: #fffaf4;
}

.footer__nav-column ul {
  list-style: none;
}

.footer__nav-column a {
  font-size: 16px;
  line-height: 200%;
  text-decoration: none;
  color: #fffaf4;
  position: relative;
}

.footer__nav-column a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fffaf4;
  transition: width 0.3s ease;
}

.footer__nav-column a:hover::after {
  width: 100%;
}

.footer__nav-column a:hover {
  opacity: 1;
}

.footer__bottom {
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer__bottom p:nth-child(2) {
  display: none;
}

/* Go to top button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  cursor: pointer;
  border: none;
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top:hover {
  background: #7a2a3e;
  transform: translateY(-3px);
}

.go-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-phone-link {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 22px;
  color: #fffaf4;
  text-decoration: none;
  font-weight: 600;
}

/* .tab-illustration svg path {
    opacity: 0;
} */

/* Business Cards Styles */
.business-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.business-card {
  width: calc(50% - 12px);
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.business-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.business-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-card__content {
  padding: 24px;
  background-color: var(--white);
}

.business-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
}

.business-card__description {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.not-sure-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 24px;
}

.not-sure-block {
  text-align: center;
  max-width: 400px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
}

.not-sure-block h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.not-sure-block p {
  margin-bottom: 24px;
  color: #666;
}

.not-sure-block .btn--primary {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
}

/* Альтернативный метод создания обводки текста (можно использовать вместо -webkit-text-stroke) */
.stats-outline-alt {
  color: white;
  text-shadow: -1px -1px 0 var(--primary-color), 1px -1px 0 var(--primary-color),
    -1px 1px 0 var(--primary-color), 1px 1px 0 var(--primary-color);
}

.white-popup {
  position: relative;
  background: #fff;
  padding: 24px;
  width: auto;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 8px;
}

.new-popup {
  /* overflow: hidden; */
  border-radius: 20px;
  /* background: transparent; */
  padding: 0;
}

.new-popup iframe {
  height: 500px;
  width: 100% !important;
  border: none;
  border-radius: 17px;
  overflow: hidden;
}

.new-popup .mfp-close {
  color: #fff !important;
}

.mobile-hero-btn {
  display: none;
}

/* default page */

.default-page {
  padding-top: 100px;
  padding-bottom: 100px;
}

.default-page.with-ads-line {
  padding-top: 140px;
}

.entry-header {
  width: 100%;
}

.entry-header h1 {
  font-family: Reaktif;
  font-weight: 600;
  font-size: 62px;
  line-height: 114.99999999999999%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}

.default-page-wrapper {
  display: flex;
  align-items: initial;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #051634;
}

.default-page-wrapper article {
  width: calc(100% - 570px);
}

.default-page-wrapper article a {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #051634;
}

.default-page-sidebar {
  width: 385px;
  background: #fff;
  position: sticky;
  top: 100px;
  bottom: 30px;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}

.default-page-sidebar h2 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #111827;
  font-weight: 700;
}

.default-page-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 85vh;
  overflow-y: auto;
}

.default-page-sidebar li {
  margin-bottom: 25px;
}

.default-page-sidebar a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
  text-decoration: none;
  padding: 0 !important;
  color: #949ba8;
  transition: color 0.2s, color 0.2s;
}

.default-page-sidebar a.active {
  color: #051634;
}

.default-page-sidebar a:hover {
  color: #051634;
}

.default-page-sidebar ul {
  background: #f9f5f5;
  padding: 30px;
  border-radius: 20px;
}

.widget-area {
  display: none;
}

.default-page-wrapper article h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 0%;
  margin-top: 50px;
  margin-bottom: 10px;
}

.default-page-wrapper article p {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.default-page-wrapper article ol,
.default-page-wrapper article ul {
  list-style: initial;
  padding-left: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
}

.mm-page {
  border-radius: 0px 0px 100px 100px;
}

.breadcrumb {
  margin-bottom: 74px;
}

.breadcrumbs__link {
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-decoration: none;
  color: #949ba8;
}

.breadcrumbs__link:hover {
  text-decoration: underline;
}

.breadcrumbs__current {
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #051634;
}

.breadcrumbs__separator {
  margin-left: 10px;
  margin-right: 10px;
}

.talk-to-team {
  color: var(--primary-color);
  background-color: transparent;
  cursor: pointer;
}

/* default page */

/* 404 */

.not-found {
  padding-top: 30px;
  padding-bottom: 100px;
}

.error404 .mm-page {
  min-height: initial;
}

.not-found-page-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 100px;
}

.not-found .page-title {
  font-family: Reaktif;
  font-weight: 700;
  font-size: 90px;
  line-height: 114.99999999999999%;
  letter-spacing: 0%;
  color: #051634;
}

.not-found-page-wrap-image {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found-page-main-image {
  max-width: 440px;
  display: block;
}

.not-found-page-bg-image {
  position: absolute;
  top: 0px;
  z-index: -1;
  right: 0;
  width: 700px;
}

.not-found-page-wrap-content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0%;
  color: #051634;
  max-width: 570px;
}

.not-found-page-wrap-content p a {
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0%;
  color: var(--primary-color);
}

.not-found-page-wrap-content p span {
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0%;
  color: #051634;
}

/* 404 */

/* single blog styles */

.blog-container {
  padding-top: 180px;
}

/* Author page styles */

.author-page {
  background: #f8f9fa;
}

.author-header {
  background: #f9f5f5;
  padding: 60px 0 80px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.breadcrumb-section {
  margin-top: 100px;
  margin-bottom: 0;
}

.author-profile-section {
  margin-bottom: 60px;
}

.author-profile-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.author-image {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
}

.author-image .author-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
}

.author-image .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  font-weight: bold;
}

.author-info {
  flex: 1;
}

.author-profile-section .author-name {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;

  color: #1f2937;
  font-family: "Reaktif", sans-serif;
}

.author-position {
  font-size: 18px;
  font-weight: 500;
  color: #051634;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
}

.author-card-social {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.author-card-social a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  background-color: #051634;
  color: white;
}

.author-card-social a:hover {
  transform: translateY(-1px);
  opacity: 0.8;
}

.author-bio {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.author-bio-mobile {
  display: none;
}

.author-features-section {
  margin-bottom: 60px;
}

.author-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #1f2937;
  font-family: "Reaktif", sans-serif;
}

.feature-description-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #051634;
  font-family: "Montserrat", sans-serif;
}

.feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.feature-description strong,
.feature-description b {
  color: #051634;
  font-weight: 600;
}

.author-articles-section {
  margin-top: 80px;
  padding-bottom: 400px;
}

.author-name-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.author-name-title {
  font-size: 14px;

  font-family: "Montserrat", sans-serif;
}

.author-articles-section .section-title {
  font-size: 24px;
  text-align: left;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2937;
  font-family: "Reaktif", sans-serif;
}

/* BLOG LISTING STYLES - Copied from blog-listing.php */
.blog-listing-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-listing-post {
  background: transparent;
  overflow: hidden;
}

.blog-listing-post-image {
  width: 100%;

  overflow: hidden;
  border-radius: 30px;
}

.blog-listing-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-listing-post-content {
  padding: 20px 30px;
}

.blog-listing-post-title {
  font-family: "Reaktif", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: #051634;
  margin: 0 0 10px 0;
}

.blog-listing-post-excerpt {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #051634;
  margin-bottom: 15px;
}

.blog-listing-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-listing-post-meta .author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-listing-post-meta .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.post-author .author-name {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #051634;
  font-weight: 500;
}

.post-date {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #949ba8;
}

@media (max-width: 992px) {
  .blog-listing-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .author-header {
    padding: 70px 0 0px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .author-profile-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 12px;
  }

  .author-image {
    width: 74px;
    height: 74px;
  }

  .author-image .author-avatar {
    width: 74px;
    height: 74px;
  }

  .author-avatar-placeholder {
    width: 74px;
    height: 74px;
    font-size: 32px;
  }

  .author-name {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .author-position {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .author-bio-desktop {
    display: none;
  }

  .author-bio-mobile {
    display: block;
    margin-top: 12px;
  }

  .author-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-title {
    font-size: 20px;
  }

  .author-features-section {
    overflow: hidden;
    margin-bottom: 0px;
  }

  .author-features-grid.slick-initialized {
    display: block;
  }

  .author-features-grid.slick-initialized .feature-card {
    width: 70vw !important;
    max-width: 280px;
    margin: 0;
    margin-right: 10px;
    padding: 24px;
    box-sizing: border-box;
  }

  .slick-track {
    display: flex !important;
    align-items: stretch;
  }

  .slick-slide {
    height: inherit;
    overflow: hidden;
    padding: 0 5px;
    box-sizing: border-box;
  }

  .slick-slide>div {
    height: 100%;
  }

  .slick-slide .feature-card {
    margin: 0 5px;
  }

  .slick-list {
    overflow: hidden;
    margin: 0 -5px;
  }

  .slick-dots {
    display: none !important;
  }

  .author-features-grid.slick-initialized {
    grid-template-columns: none;
    gap: 0;
  }

  .blog-listing-posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-listing-post-content {
    padding: 11px 0 0 0;
  }

  .blog-listing-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .blog-listing-header-search {
    max-width: none;
  }
}

/* page-blog */

.blog-hero {
  padding: 160px 0 47px 0;
  background: #f9f6f2;
  border-end-end-radius: 100px;
  border-end-start-radius: 100px;
}

.container-breadcrumb .breadcrumb {
  margin-bottom: 0;
}

.blog-hero-title {
  font-size: clamp(24px, 8vw, 48px);
  line-height: 115px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-family: Reaktif, sans-serif;
}

.blog-hero-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #051634;
  font-family: Montserrat, sans-serif;
  line-height: 160%;
  margin-bottom: 30px;
  font-weight: 600;
  max-width: 1060px;
}

.featured-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #051634;
  line-height: 160%;
  font-family: Montserrat, sans-serif;
  margin-bottom: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: max(20px, 2vw);
  margin-bottom: 62px;
}

.featured-article {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #000;

  height: 100%;
}

.featured-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.featured-article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 10px 20px;
  color: white;
}

.featured-article-title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.2;
}

.featured-article-title a {
  color: white;
  text-decoration: none;
}

.featured-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  opacity: 0.8;
}

.featured-article-excerpt {
  margin-top: 12px;
  margin-bottom: 19px;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
  opacity: 0.9;
}

.secondary-articles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.secondary-article {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  max-height: 292px;
}

.secondary-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.secondary-article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 10px 20px;
  color: white;
}

.secondary-article-title {
  font-size: clamp(14px, 1.3vw, 18px);
  font-family: "Reaktif", sans-serif;
  font-weight: 600;
  margin-bottom: 11px;
  line-height: 1.2;
}

.secondary-article-title a {
  color: white;
  text-decoration: none;
}

.secondary-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  opacity: 0.8;
  justify-content: space-between;
}

.article-author {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  gap: 8px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 600;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 1;
}

@media (max-width: 768px) {
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-hero-title {
    font-size: 28px;
    line-height: 100%;
    text-align: center;
  }

  .featured-article,
  .secondary-article {
    background: transparent;
    border-radius: 0;
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    aspect-ratio: unset;
    max-height: unset;
  }

  .featured-article img,
  .secondary-article img {
    width: 100%;
    height: 200px;
    border-radius: 30px;
    opacity: 1;
    object-fit: cover;
  }

  .featured-article-overlay,
  .secondary-article-overlay {
    position: static;
    background: transparent;
    padding: 20px 0;
    color: #051634;
    text-align: left;
  }

  .featured-article-title,
  .secondary-article-title {
    font-family: "Reaktif", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #051634;
    margin: 0 0 10px 0;
  }

  .featured-article-title a,
  .secondary-article-title a {
    color: #051634;
    text-decoration: none;
  }

  .featured-article-excerpt {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #051634;
    margin-bottom: 15px;
    opacity: 1;
  }

  .featured-article-meta,
  .secondary-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    opacity: 1;
  }

  .article-author {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }

  .secondary-articles {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .blog-hero-container {
    text-align: center;
  }

  .blog-hero {
    padding-top: 200px;
  }

  .blog-hero-subtitle {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
  }

  .container-breadcrumb {
    display: none;
  }
}

.blog-listing-header {
  padding-top: 30px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.blog-listing-header-title {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 160%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #051634;
}

.blog-listing-header-search {
  width: 600px;
  display: flex;
  height: 56px;
  border: 1px solid #eee;
  border-radius: 28px;
  padding: 0 20px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.blog-listing-header-search input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.blog-listing-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.filter-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 22px;
  gap: 10px;
  height: 42px;
  background: #f3f4f6;
  color: #949ba8;
  border: none;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #6a2135;
  color: white;
}

.filter-btn.active {
  background: #6a2135;
  color: white;
}

.blog-listing-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-listing-post {
  background: transparent;
  overflow: hidden;
}

.blog-listing-post-image {
  width: 100%;
  max-height: 307px;
  aspect-ratio: 16 /9;
  overflow: hidden;
  border-radius: 30px;
}

.blog-listing-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-listing-post-content {
  padding: 20px 30px;
}

.blog-listing-post-title {
  font-family: "Reaktif", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: #051634;
  margin: 0 0 10px 0;
}

.blog-listing-post-excerpt {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #051634;
  margin-bottom: 15px;
}

.blog-listing-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-name {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #051634;
  font-weight: 500;
}

.post-date {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #949ba8;
}

.blog-listing-load-more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding-bottom: 60px;
}

.load-more-btn {
  padding: 12px 40px;
  background: transparent;
  border: 1px solid #6a2135;
  border-radius: 30px;
  color: #6a2135;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  border-color: #6a2135;
  color: #6a2135;
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.author-profile-section .author-title {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  line-height: 150%;
  color: #051634;
}

.author-divider {
  border-right: 1px solid #051634;
  height: 20px;
}

@media (max-width: 992px) {
  .blog-listing-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .author-profile-section .author-name {
    font-size: 18px;
    border-right: 0;
  }

  .author-profile-section .author-title {
    font-size: 14px;
  }

  .author-name-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .author-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .blog-listing-posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-listing-header {
    flex-direction: column;
    gap: 20px;
  }

  .blog-listing-header-search {
    width: 100%;
  }

  .blog-listing-post-content {
    padding: 11px 0 0 0;
  }

  .blog-listing-post-title {
    font-size: 18px;
  }

  .blog-listing-post-excerpt {
    display: none;
  }

  .blog-listing-post-meta {
    border: none;
  }

  .author-articles-section {
    padding-bottom: 60px;
  }
}

/* Remove underlines from converted anchor links */
.blog-post-link,
.recommended-post-link,
.author-info,
.author-link {
  text-decoration: none;
  color: inherit;
}

.blog-post-link:hover,
.blog-post-link:focus,
.recommended-post-link:hover,
.recommended-post-link:focus,
.author-info:hover,
.author-info:focus,
.author-link:hover,
.author-link:focus {
  text-decoration: none;
  color: inherit;
}

.author-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner {
  background: #FFF;
  box-shadow: 0 -1px 0 0 #6A2135, 0 -4px 12px 0 rgba(150, 160, 206, 0.20);
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.cookie-banner-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.cookie-banner-container svg {
  position: relative;
  left: 0;
  bottom: 0px;
  z-index: 2;
  top: -10px;
}

.cookie-banner-mobile-svg {
  display: none;
}

.cookie-banner-content {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-banner-content p {
  color: #051634;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.cookie-banner-content a {
  color: #6A2135;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.cookie-banner-content a:hover {
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-banner-btns button {
  min-width: 150px;
  border-radius: 8px;
  padding: 10px;
}

.cookie-banner-btns #accept-all-cookies {
  background: #6A2135;
  color: #EEF0F8;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.cookie-banner-btns #reject-all-cookies {
  background: #FFF;
  border: 1px solid #6A2135;
  color: #6A2135;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}