/* Our Services Component Styles */
.our-services__overlay {
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.our-services {
  background-size: cover;
}

.our-services .container {
  margin: 0 auto;
  width: 100%;
}

.our-services__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Left Column - Intro */
.our-services__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.our-services__title {
  color: #ffffff;
  margin: 0;
  font-weight: 550;
  font-size: 54px;
  font-family: var(--font-family-title);
}

.our-services__title--two-part {
  display: flex;
  gap: 0.5rem;
}

.our-services__title--two-part .title-gold {
  background: var(--gradient-on-brand-gold, linear-gradient(315deg, #DBB172 20.73%, #F5E0BA 73.39%, #EBCC96 87.72%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-services__title--two-part .title-white {
  color: #ffffff;
}

.our-services__description {
  font-size: 18px;
  color: var(--text-default-inverted);
  padding: 40px 0;
  width: 425px;
  line-height: 24px;
  margin: 0;
}

/* Right Column - Services List */
.our-services__list {
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
}

.service-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
}

.service-item:first-child {
  padding-top: 0;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item__title {
  font-weight: 550;
  color: #ffffff;
  line-height: 48px;
  font-size: 40px;
  font-family: var(--font-family-title);
  margin: 0 0 8px 0;
}

.service-item__description {
  color: var(--text-default-inverted-secondary);
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

/* Responsive Design */
@media screen and (max-width: 1040px) {
  .our-services__description {
    width: unset;
    padding: 12px 0 0 0;
  }

  .our-services {
    min-height: auto;
  }

  .our-services__overlay {
    padding: 60px 0;
  }

  .our-services__wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .our-services__title {
    font-size: 34px;
  }

  .our-services__list {
    gap: 0;
  }

  .service-item {
    padding: 28px 0 !important;
  }

  .service-item:first-child {}

  .service-item__title {
    margin-bottom: 12px;
  }

  .service-item__title {
    font-size: 28px;
    line-height: 32px;
  }

  .service-item__description {
    font-size: 15px;
    line-height: 20px;
  }
}

@media (max-width: 640px) {
  .our-services__overlay {
    padding: 56px 0;
  }

  .our-services__title {
    font-size: 32px;
  }

  .our-services__description {
    font-size: 15px;
  }

  .service-item__title {
    font-size: 22px;
  }

  .service-item__description {
    font-size: 14px;
  }

  .service-item {
    padding: 20px 0 !important;
  }

  .our-services__wrapper {
    gap: 20px;
  }
}