/* Peace of Mind Journey - Scoped Styles */
/* Smooth scroll target offset for fixed header */
.pomj [id] {
  scroll-margin-top: 120px;
}

.pomj {
  --pomj-navy: #072639;
  --pomj-navy-light: #0F2F43;
  --pomj-gold: #A58743;
  --pomj-gold-light: #cfbf9b;
  --pomj-beige: #F9F8F5;
  --pomj-cream: #FFFDF8;
  --pomj-white: #ffffff;
  --pomj-text: #072639;
  --pomj-text-muted: #546878;
  --pomj-spring-beige: #f1ede5;
}

/* Hero Section */
.pomj-hero {
  color: var(--pomj-white);
  padding: 180px 0 0;
  position: relative;
  overflow: hidden;
  /* min-height: 500px; */
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
}

.pomj-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pomj-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: pomjHeroImageReveal 1.5s ease forwards;
}

@keyframes pomjHeroImageReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.pomj-hero__overlay {
  position: absolute;
  inset: 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.pomj-hero .container {
  position: absolute;
  top: calc(50% - 190px);
  left: calc(50% - 270px);
  z-index: 1;
  max-width: 540px;
  padding: 60px 50px;
}

@media (max-width: 580px) {
  .pomj-hero .container {
    top: calc(50% - 200px);
    left: 50%;
    transform: translateX(-50%);
  }
}
.pomj-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pomj-gold-light), transparent);
  z-index: 1;
}

.pomj-hero__title {
  color: #072639;
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: pomjFadeUp 0.8s ease forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 980px) {
  .pomj-hero__title {
    font-size: 62px;
  }
}
.pomj-hero__intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px !important;
  max-width: 640px;
  opacity: 0;
  transform: translateY(30px);
  animation: pomjFadeUp 0.8s ease 0.15s forwards;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.pomj-hero__cta {
  position: relative;
  opacity: 0;
  animation: pomjFadeUp 0.8s ease forwards;
  animation-delay: 0.5s;
  transform: translateY(30px);
}

.pomj-hero__cta .btn {
  padding: 20px 56px;
  font-size: 13px;
  letter-spacing: 0.15em;
  background: #A58743;
  border-color: #A58743;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pomj-hero__cta .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.pomj-hero__cta .btn:hover {
  background: #b8954d;
  border-color: #b8954d;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(165, 135, 67, 0.4);
}

.pomj-hero__cta .btn:hover::before {
  transform: translateX(100%);
}

@keyframes pomjFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Journey Label (shared) */
.pomj-journey__label {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(165, 135, 67, 0.15);
  border: 1px solid rgba(165, 135, 67, 0.3);
  border-radius: 100px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pomj-gold);
}

.pomj-journey__label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(165, 135, 67, 0.2) 40%, rgba(185, 160, 100, 0.35) 50%, rgba(165, 135, 67, 0.2) 60%, transparent 100%);
  animation: pomjShimmer 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes pomjShimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
/* Content Sections */
.pomj-section {
  padding: 100px 0;
  position: relative;
}

.pomj-section--light {
  background: var(--pomj-white);
}

.pomj-section--cream {
  background: var(--pomj-cream);
}

.pomj-section--navy {
  background: var(--pomj-navy);
  color: var(--pomj-white);
}

.pomj-section__grid {
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 980px) {
  .pomj-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .pomj-section__grid--reverse {
    direction: rtl;
  }
  .pomj-section__grid--reverse > * {
    direction: ltr;
  }
}
.pomj-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pomj-gold);
  margin-bottom: 16px;
}

.pomj-section__title {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  color: var(--pomj-navy);
  margin-bottom: 24px;
}

.pomj-section--navy .pomj-section__title {
  color: var(--pomj-white);
}

@media (min-width: 980px) {
  .pomj-section__title {
    font-size: 36px;
  }
}
.pomj-section__text {
  font-size: 17px;
  line-height: 1.8;
}

.pomj-section--navy .pomj-section__text {
  color: rgba(255, 255, 255, 0.8);
}

.pomj ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.pomj ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--pomj-text);
}

.pomj ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--pomj-gold);
  border-radius: 50%;
}

/* Image Placeholders */
.pomj-image {
  position: relative;
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pomj-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(165, 135, 67, 0.2);
}

.pomj-image__placeholder {
  text-align: center;
  padding: 40px;
  color: var(--pomj-text-muted);
}

.pomj-image__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  opacity: 0.4;
}

.pomj-image__desc {
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  max-width: 280px;
}

.pomj-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* CTA Blocks */
.pomj-cta {
  background: var(--pomj-spring-beige);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Diagonal lines + gradient sweep */
.pomj-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%), repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(255, 255, 255, 0.015) 10px, rgba(255, 255, 255, 0.015) 11px);
  pointer-events: none;
}

/* Override .pomj-cta background if inside section */
.pomj-section .pomj-cta {
  background: transparent;
  padding-bottom: 0;
}

.pomj-cta__title {
  /* font-family: "Merriweather", serif; */
  font-weight: 700;
  font-size: 24px;
  color: var(--pomj-navy);
  margin-bottom: 16px;
}

@media (min-width: 980px) {
  .pomj-cta__title {
    font-size: 36px;
  }
}
.pomj-cta__text {
  font-size: 20px;
  color: var(--pomj-text);
  margin-bottom: 32px !important;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.pomj-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--pomj-gold);
  color: var(--pomj-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pomj-cta__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.15) 60%, transparent 100%);
  pointer-events: none;
}

.pomj-cta__btn:hover {
  transform: translateY(-2px);
  color: var(--pomj-beige);
}

.pomj-cta__btn:hover::after {
  animation: pomjBtnShimmer 0.6s ease-out forwards;
}

@keyframes pomjBtnShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}
.pomj-cta__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.pomj-cta__btn:hover svg {
  transform: translateX(4px);
}

/* ========================================
   Family Office Network Diagram
   A refined, web-native visualization
   ======================================== */
.pomj-network {
  padding: 0 0 100px;
  margin-top: -30px;
  background: linear-gradient(180deg, var(--pomj-white) 0%, var(--pomj-beige) 100%);
  position: relative;
  overflow: hidden;
}

.pomj-custom-divider::after,
.pomj-network::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pomj-gold-light), transparent);
}

.pomj-network__header {
  text-align: center;
  margin-bottom: 90px;
}

.pomj-network__title {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--pomj-navy);
  margin: 0;
}

@media (min-width: 980px) {
  .pomj-network__title {
    font-size: 28px;
  }
}
/* Main Layout: Center hub with two wings */
.pomj-network__layout {
  display: grid;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

@media (min-width: 980px) {
  .pomj-network__layout {
    grid-template-columns: 1fr 200px 1fr;
    gap: 40px;
    align-items: center;
  }
}
/* Central Hub - Compact Circle */
.pomj-network__hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--pomj-navy);
  position: relative;
  order: -1;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(7, 38, 57, 0.2);
  z-index: 1;
}

/* Decorative outer ring - static */
.pomj-network__hub::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--pomj-gold-light);
  opacity: 0.5;
}

/* Radiating pulse rings */
.pomj-network__hub::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--pomj-gold);
  opacity: 0;
  animation: hubPulse 3s ease-out infinite;
  z-index: -1;
}

.pomj-network__hub-pulse {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--pomj-gold);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.pomj-network__hub-pulse:nth-child(1) {
  animation: hubPulse 3s ease-out infinite;
}

.pomj-network__hub-pulse:nth-child(2) {
  animation: hubPulse 3s ease-out infinite 1s;
}

.pomj-network__hub-pulse:nth-child(3) {
  animation: hubPulse 3s ease-out infinite 2s;
}

@keyframes hubPulse {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (min-width: 980px) {
  .pomj-network__hub {
    order: 0;
    margin-top: 20px; /* Align with wing content area */
  }
}
.pomj-network__hub-icon {
  width: 44px;
  min-height: 44px;
  margin-bottom: 12px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: #264861;
  border-radius: 50%;
}

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

.pomj-network__hub-title {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--pomj-white);
  margin: 0 0 6px;
  line-height: 1.3;
}

.pomj-network__hub-subtitle {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pomj-gold-light);
  margin: 0;
}

/* Service Wings */
.pomj-network__wing {
  position: relative;
  z-index: 2;
}

.pomj-network__wing-header {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid;
  position: relative;
}

.pomj-network__wing--left .pomj-network__wing-header {
  border-color: var(--pomj-navy);
}

.pomj-network__wing--right .pomj-network__wing-header {
  border-color: var(--pomj-gold);
}

@media (min-width: 980px) {
  .pomj-network__wing--left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .pomj-network__wing--left .pomj-network__wing-header {
    flex-direction: row-reverse;
    text-align: right;
  }
  /* Extending lines that fade toward center */
  .pomj-network__wing-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 40px;
  }
  .pomj-network__wing--left .pomj-network__wing-header::after {
    right: -40px;
    background: linear-gradient(90deg, var(--pomj-navy) 0%, transparent 100%);
  }
  .pomj-network__wing--right .pomj-network__wing-header::after {
    left: -40px;
    background: linear-gradient(90deg, transparent 0%, var(--pomj-gold) 100%);
  }
}
.pomj-network__wing-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pomj-network__wing--left .pomj-network__wing-icon {
  background: var(--pomj-navy);
  color: var(--pomj-white);
}

.pomj-network__wing--right .pomj-network__wing-icon {
  background: var(--pomj-gold);
  color: var(--pomj-white);
}

.pomj-network__wing-icon svg {
  width: 24px;
  height: 24px;
}

.pomj-network__wing-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--pomj-navy);
  margin: 0 0 4px;
}

.pomj-network__wing-subtitle {
  font-size: 12px;
  color: var(--pomj-text-muted);
  margin: 0;
}

/* Service Items - 2-Column Grid */
.pomj-network__services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 600px) {
  .pomj-network__services {
    grid-template-columns: 1fr 1fr;
  }
}
.pomj-network__service {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 16px;
  background: var(--pomj-white);
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  text-align: center;
}

.pomj-network__wing--left .pomj-network__service {
  border-color: rgba(7, 38, 57, 0.1);
}

.pomj-network__wing--right .pomj-network__service {
  border-color: rgba(165, 135, 67, 0.2);
}

.pomj-network__service:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pomj-network__wing--left .pomj-network__service:hover {
  border-color: var(--pomj-navy);
  background: var(--pomj-navy);
  color: var(--pomj-white);
}

.pomj-network__wing--left .pomj-network__service:hover .pomj-network__service-text {
  color: var(--pomj-white);
}

.pomj-network__wing--right .pomj-network__service:hover {
  border-color: var(--pomj-gold);
  background: var(--pomj-gold);
  color: var(--pomj-white);
}

.pomj-network__wing--right .pomj-network__service:hover .pomj-network__service-text {
  color: var(--pomj-white);
}

.pomj-network__service-dot {
  display: none;
}

.pomj-network__service-text {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--pomj-navy);
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Mobile order adjustment */
@media (max-width: 979px) {
  .pomj-network__wing--left {
    order: 1;
  }
  .pomj-network__wing--right {
    order: 2;
  }
}
/* Scroll animations */
.pomj-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.pomj-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pomj-reveal--delay-1 {
  transition-delay: 0.1s;
}

.pomj-reveal--delay-2 {
  transition-delay: 0.2s;
}

.pomj-reveal--delay-3 {
  transition-delay: 0.3s;
}

.pomj-reveal--delay-4 {
  transition-delay: 0.5s;
}

.pomj-reveal--delay-5 {
  transition-delay: 0.7s;
}

.pomj-reveal--delay-6 {
  transition-delay: 0.9s;
}

/* ========================================
   STEP HEADER - Background Watermark Style
   ======================================== */
.pomj-step-header {
  position: relative;
  margin-bottom: 32px;
}

.pomj-step-header__bg-num {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Merriweather", serif;
  font-size: 140px;
  font-weight: 400;
  line-height: 1;
  color: var(--pomj-gold);
  opacity: 0.12;
  letter-spacing: -0.05em;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
}

@media (min-width: 980px) {
  .pomj-step-header__bg-num {
    font-size: 220px;
    left: -60px;
  }
}
.pomj-step-header__content {
  position: relative;
  z-index: 1;
}

.pomj-step-header__label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pomj-gold);
  margin-bottom: 12px;
}

.pomj-step-header__title {
  /* font-family: "Merriweather", serif; */
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--pomj-navy);
  margin: 0;
}

@media (min-width: 980px) {
  .pomj-step-header__title {
    font-size: 36px;
  }
}
/* Centered variant (for Step Three) */
.pomj-step-header--centered {
  display: inline-block;
}

.pomj-step-header--centered .pomj-step-header__bg-num {
  left: 50%;
  transform: translate(-50%, -50%);
}

.pomj-step-header--centered .pomj-step-header__label,
.pomj-step-header--centered .pomj-step-header__title {
  text-align: center;
}

/* Final CTA */
.pomj-final-cta {
  background: var(--pomj-white);
  padding: 100px 0;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}

/* Navy card background */
.pomj-final-cta::before {
  content: "";
  position: absolute;
  inset: 40px;
  background: linear-gradient(165deg, var(--pomj-navy) 0%, var(--pomj-navy-light) 100%);
  border: 7px solid var(--pomj-gold);
  pointer-events: none;
}

/* Diagonal lines + gradient sweep */
.pomj-final-cta::after {
  content: "";
  position: absolute;
  inset: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%), repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 11px);
  pointer-events: none;
}

.pomj-final-cta .container {
  position: relative;
  z-index: 1;
}

.pomj-final-cta__title {
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--pomj-white);
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .pomj-final-cta__title {
    font-size: 32px;
  }
}
@media (min-width: 980px) {
  .pomj-final-cta__title {
    font-size: 44px;
  }
}
.pomj-final-cta__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 40px !important;
  line-height: 1.7;
}

@media (min-width: 980px) {
  .guides-carousel h2 {
    font-size: 36px;
  }
}
.journey-timeline-container {
  width: 100%;
  margin-bottom: 50px;
}

.journey-timeline-container .journey-timeline-container-title {
  font-family: "Merriweather", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 130%;
  text-align: center;
  padding: 100px 32px 42px;
}

.journey-timeline-container-text {
  max-width: 600px;
  text-align: center;
  padding-bottom: 80px;
  margin: 0 auto;
}

.journey-timeline-container h3 {
  font-family: "Lato", sans-serif;
}

.journey-timeline-container .journey-timeline-carousel {
  width: 100%;
  display: flex;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item {
  width: 100%;
  border-right: 1px solid rgba(165, 135, 67, 0.25);
  border-bottom: 1px solid rgba(165, 135, 67, 0.25);
  border-top: 1px solid rgba(165, 135, 67, 0.25);
  position: relative;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item:last-child {
  border-right: none;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item:hover {
  z-index: 2;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content {
  text-decoration: none;
  padding: 100px 36px 42px;
  position: relative;
  background-color: #FFFDF8;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
  display: block;
  outline: none;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content:hover {
  text-decoration: none;
  background-color: #F9F8F5;
  box-shadow: 0 0 40px 1px rgba(0, 0, 0, 0.1);
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text {
  max-width: 550px;
  position: relative;
  z-index: 4;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .expand-button-container {
  position: relative;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text h3 {
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .date {
  color: #a58743;
  font-size: 80px;
  font-family: "Merriweather", serif;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .date:before {
  content: "keyboard_arrow_right";
  font-family: "Material Icons";
  font-size: 16px;
  color: #fff !important;
  line-height: 1.4;
  text-align: center;
  display: block;
  width: 22px;
  height: 22px;
  background: #a58743;
  border-radius: 50%;
  position: absolute;
  top: 28px;
  left: -28px;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .paragraph {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 12px;
}

.journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .excerpt {
  color: #072639;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  transition: font-size 0.3s ease-in-out;
  font-family: "Lato", sans-serif;
  margin-bottom: 10px;
}

@media (max-width: 1040px) {
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content {
    margin: 0;
  }
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text {
    max-width: 100%;
  }
  .journey-timeline-container .journey-timeline-container-title {
    font-size: 36px;
  }
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .date {
    color: #a58743;
    font-size: 72px;
  }
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .date:before {
    top: 25px;
    left: -25px;
  }
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .excerpt {
    font-size: 20px;
  }
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content .journey-timeline-carousel-item-content-text .extra {
    font-size: 14px;
  }
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content {
    padding: 60px 24px;
  }
}
@media (max-width: 800px) {
  .journey-timeline-container .journey-timeline-carousel {
    flex-direction: column;
  }
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item:not(:last-child) {
    width: 100%;
    border-bottom: none;
  }
  .journey-timeline-container .journey-timeline-carousel .journey-timeline-carousel-item .journey-timeline-carousel-item-content {
    padding: 24px;
  }
}
