/* ============================================================
   Nordic Trust Services — Services Page Styles
   ============================================================ */

.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url('/assets/services-bg.jpg') center 30% / cover no-repeat;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 74, 91, 0.88) 0%,
    rgba(8, 74, 91, 0.55) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero .hero__eyebrow,
.page-hero .hero__title,
.page-hero .hero__sub {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.page-hero .hero__eyebrow { animation-delay: 0.1s; }
.page-hero .hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  animation-delay: 0.2s;
}
.page-hero .hero__sub { animation-delay: 0.35s; }

/* ── SERVICES LIST ── */
.services-list {
  padding: 6rem 0;
  background: var(--white);
}
.service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.service-item:last-child { border-bottom: none; }
.service-item__icon { font-size: 2rem; padding-top: 0.2rem; }
.service-item__body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-item__body p {
  color: var(--grey);
  font-size: 0.875rem;
  max-width: 640px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.service-item__body ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-item__body ul li {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .service-item { grid-template-columns: 1fr; gap: 1rem; }
}
