


.services-editorial,
.services-editorial * {
  box-sizing: border-box;
}

.services-editorial {
  position: relative;
  overflow: hidden;
  padding: 84px 28px 94px;
  font-family: Montserrat, Arial, sans-serif;
  color: #203f4d;
  background:
    radial-gradient(circle at 88% 12%, rgba(17,147,212,.055), transparent 26%),
    linear-gradient(180deg, #f7fcff 0%, #eef8fd 100%);
}

.services-editorial::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(32,63,77,.06);
}

.services-editorial-wrap {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.services-editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  column-gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.services-editorial-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  color: var(--euroasia-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.services-editorial-head h2 {
  margin: 0;
  max-width: 730px;
  color: #203f4d;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.038em;
}

.services-editorial-head p {
  margin: 0 0 3px;
  color: var(--euroasia-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}

.services-editorial-body {
  display: grid;
  grid-template-columns: minmax(380px, .88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: stretch;
}

/* One large visual, not four cards */
.services-stage {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #dfeef5;
}

.services-stage-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.services-stage-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition:
    opacity 360ms ease,
    transform 700ms cubic-bezier(.2,.7,.2,1);
}

.services-stage-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.services-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,31,42,.02) 45%, rgba(7,34,48,.62) 100%);
  pointer-events: none;
}

.services-stage-caption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 6px;
  color: #fff;
}

.services-stage-caption span {
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.services-stage-caption strong {
  max-width: 360px;
  color: #fff;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.025em;
}

/* Capability index */
.services-editorial-list {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-top: 1px solid rgba(32,63,77,.14);
}

.services-editorial-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) 34px;
  gap: 18px;
  align-items: center;
  min-height: 122px;
  padding: 22px 2px;
  border-bottom: 1px solid rgba(32,63,77,.14);
  color: inherit;
  text-decoration: none;
  transition:
    padding-left 180ms ease,
    background 180ms ease;
}

.services-editorial-index {
  align-self: start;
  padding-top: 5px;
  color: #9aabb4;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .10em;
}

.services-editorial-copy {
  min-width: 0;
}

.services-editorial-copy h3 {
  margin: 0;
  color: #294652;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.025em;
  transition: color 180ms ease;
}

.services-editorial-copy p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--euroasia-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.62;
}

.services-editorial-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  justify-self: end;
  color: var(--euroasia-accent);
  font-size: 18px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.services-editorial-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 3px;
  background: var(--euroasia-accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.services-editorial-item:hover,
.services-editorial-item:focus-visible,
.services-editorial-item.is-active {
  padding-left: 16px;
  background: rgba(255,255,255,.52);
}

.services-editorial-item:hover::before,
.services-editorial-item:focus-visible::before,
.services-editorial-item.is-active::before {
  transform: scaleY(1);
}

.services-editorial-item:hover .services-editorial-copy h3,
.services-editorial-item:focus-visible .services-editorial-copy h3,
.services-editorial-item.is-active .services-editorial-copy h3 {
  color: var(--euroasia-accent);
}

.services-editorial-item:hover .services-editorial-arrow,
.services-editorial-item:focus-visible .services-editorial-arrow,
.services-editorial-item.is-active .services-editorial-arrow {
  transform: translate(2px,-2px);
}

.services-editorial-overview {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  align-self: flex-start;
  margin-top: 26px;
  padding: 12px 0;
  color: var(--euroasia-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-decoration: none;
  text-transform: uppercase;
}

.services-editorial-overview span {
  font-size: 15px;
  transition: transform 180ms ease;
}

.services-editorial-overview:hover span {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .services-editorial-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-editorial-head p {
    max-width: 650px;
  }

  .services-editorial-body {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-stage {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  .services-editorial {
    padding: 62px 20px 70px;
  }

  .services-editorial-head {
    margin-bottom: 30px;
  }

  .services-editorial-head h2 {
    font-size: 32px;
  }

  .services-stage {
    min-height: 420px;
  }

  .services-stage-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .services-editorial-item {
    grid-template-columns: 34px minmax(0,1fr) 28px;
    gap: 12px;
    min-height: 112px;
    padding: 19px 0;
  }

  .services-editorial-item:hover,
  .services-editorial-item:focus-visible,
  .services-editorial-item.is-active {
    padding-left: 10px;
  }

  .services-editorial-copy h3 {
    font-size: 20px;
  }

  .services-editorial-copy p {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-stage-image,
  .services-editorial-item,
  .services-editorial-item::before,
  .services-editorial-arrow,
  .services-editorial-overview span {
    transition: none;
  }
}


/* Softer editorial treatment for the main section statement */
.services-editorial-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.10;
  letter-spacing: -.018em;
}

/* A restrained frame gives the large image a finished editorial feel */
.services-stage {
  padding: 5px;
  border: 1px solid rgba(36, 76, 95, .13);
  background: var(--euroasia-white);
  box-shadow:
    0 18px 42px rgba(25, 69, 91, .11),
    0 1px 0 rgba(255,255,255,.92) inset;
}

.services-stage-media {
  inset: 5px;
}

/* Stronger lower overlay, kept inside the image frame */
.services-stage::after {
  inset: 5px;
  background:
    linear-gradient(
      180deg,
      rgba(8,31,42,0) 38%,
      rgba(7,31,44,.20) 60%,
      rgba(5,27,39,.82) 100%
    );
}

/* Caption sits clearly within the darkened image area */
.services-stage-caption {
  left: 38px;
  right: 38px;
  bottom: 34px;
  padding-top: 34px;
  text-shadow: 0 2px 12px rgba(0,0,0,.30);
}

.services-stage-caption span {
  color: rgba(255,255,255,.82);
}

.services-stage-caption strong {
  color: var(--euroasia-white);
  font-size: 24px;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0,0,0,.34);
}

@media (max-width: 680px) {
  .services-editorial-head h2 {
    font-size: 34px;
  }

  .services-stage {
    padding: 4px;
  }

  .services-stage-media,
  .services-stage::after {
    inset: 4px;
  }

  .services-stage-caption {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }
}


/* What We Do image frame color */
.services-stage {
  background: #0F78AE !important;
}


/* Restore the previous image-frame background */
.services-stage {
  background: var(--euroasia-white) !important;
}

/* Match the nearby service-title font family, at 32px */
.services-editorial-head h2 {
  font-family: Montserrat, Arial, sans-serif !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  line-height: 1.16 !important;
  letter-spacing: -.025em !important;
}


.services-editorial {
  padding: 78px 28px 92px;
}

.services-editorial-wrap {
  width: min(1200px, 100%);
}

/* Cleaner, more deliberate intro composition */
.services-editorial-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .58fr) !important;
  column-gap: 86px !important;
  row-gap: 0 !important;
  align-items: end !important;
  margin-bottom: 38px !important;
}

.services-editorial-eyebrow {
  grid-column: 1 / -1 !important;
  margin-bottom: 10px !important;
}

.services-editorial-head h2 {
  max-width: 620px !important;
  font-size: 32px !important;
  line-height: 1.15 !important;
}

.services-editorial-head p {
  max-width: 370px !important;
  margin: 0 0 2px !important;
  font-size: 13px !important;
  line-height: 1.72 !important;
}

/* Flip the experience: capability navigation left, visual stage right */
.services-editorial-body {
  display: grid !important;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr) !important;
  grid-template-areas: "list stage" !important;
  gap: 44px !important;
  align-items: stretch !important;
}

.services-editorial-list {
  grid-area: list;
  align-self: center;
  border-top: 0 !important;
}

.services-stage {
  grid-area: stage;
  min-height: 540px !important;
  border-radius: 0 !important;
}

/* Turn the left list into a calmer editorial navigation rail */
.services-editorial-item {
  min-height: 104px !important;
  grid-template-columns: 34px minmax(0,1fr) 28px !important;
  gap: 14px !important;
  padding: 17px 16px 17px 0 !important;
  border-top: 1px solid rgba(32,63,77,.12) !important;
  border-bottom: 0 !important;
  background: transparent !important;
}

.services-editorial-item:last-of-type {
  border-bottom: 1px solid rgba(32,63,77,.12) !important;
}

.services-editorial-item::before {
  left: -10px !important;
  top: 12px !important;
  bottom: 12px !important;
  width: 2px !important;
}

.services-editorial-item:hover,
.services-editorial-item:focus-visible,
.services-editorial-item.is-active {
  padding-left: 10px !important;
  padding-right: 6px !important;
  background: rgba(255,255,255,.36) !important;
}

.services-editorial-index {
  padding-top: 3px !important;
  font-size: 9px !important;
}

.services-editorial-copy h3 {
  font-size: clamp(19px, 1.8vw, 24px) !important;
}

.services-editorial-copy p {
  max-width: 360px !important;
  margin-top: 6px !important;
  font-size: 11.5px !important;
  line-height: 1.55 !important;
}

.services-editorial-arrow {
  width: 26px !important;
  height: 26px !important;
}

.services-editorial-overview {
  margin-top: 20px !important;
  padding: 10px 0 !important;
}

/* Give the visual more presence now that it sits on the right */
.services-stage-media {
  inset: 5px !important;
}

.services-stage::after {
  inset: 5px !important;
}

.services-stage-caption {
  left: 38px !important;
  right: 38px !important;
  bottom: 34px !important;
}

@media (max-width: 980px) {
  .services-editorial-head {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .services-editorial-head p {
    max-width: 620px !important;
  }

  .services-editorial-body {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "stage"
      "list" !important;
    gap: 30px !important;
  }

  .services-stage {
    min-height: 500px !important;
  }

  .services-editorial-list {
    align-self: stretch;
  }
}

@media (max-width: 680px) {
  .services-editorial {
    padding: 58px 20px 68px !important;
  }

  .services-editorial-head {
    margin-bottom: 28px !important;
  }

  .services-editorial-head h2 {
    font-size: 30px !important;
  }

  .services-stage {
    min-height: 410px !important;
  }

  .services-editorial-item {
    min-height: 102px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}


/* Increase space between the service text and the full framed image block */
@media (min-width: 981px) {
  .services-editorial-body {
    gap: 94px !important;
  }
}


/* Investment Facilitation — give the baked-in left text more breathing room */
.services-stage-image[data-service-image="investment"] {
  object-position: calc(50% + 15px) center !important;
}


/* Trade Facilitation — supporting copy beneath the image-overlay title */
.services-stage-description {
  max-width: 455px;
  margin: 2px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .005em;
}

.services-stage-description[hidden] {
  display: none !important;
}

@media (max-width: 680px) {
  .services-stage-description {
    max-width: 360px;
    font-size: 11px;
    line-height: 1.5;
  }
}


.services-editorial-item {
  cursor: pointer;
}

.services-editorial-arrow {
  text-decoration: none !important;
}

@media (max-width: 680px) {
  /* The row is a preview control on mobile, not an article link. */
  .services-editorial-item {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  /* Match the desktop arrow itself exactly. */
  .services-editorial-arrow {
    position: relative;
    display: grid !important;
    place-items: center !important;
    width: 26px !important;
    height: 26px !important;
    justify-self: end !important;
    color: var(--euroasia-accent) !important;
    font-family: inherit !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
  }

  /* No alternate/pseudo mobile arrow. */
  .services-editorial-arrow::before {
    content: none !important;
    display: none !important;
  }

  /* Larger invisible touch target without changing its visual size. */
  .services-editorial-arrow::after {
    content: "";
    position: absolute;
    inset: -9px;
  }

  .services-editorial-item:hover .services-editorial-arrow,
  .services-editorial-item:focus-visible .services-editorial-arrow,
  .services-editorial-item.is-active .services-editorial-arrow {
    transform: translate(2px, -2px) !important;
  }
}


@media (max-width: 680px) {
  .services-editorial-copy p {
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  /* Deliberately different mobile article arrow */
  .services-editorial-arrow {
    width: 36px !important;
    height: 36px !important;
    border: 1px solid rgba(17,147,212,.22) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.82) !important;
    color: var(--euroasia-accent) !important;
    font-size: 0 !important;
    box-shadow: 0 5px 14px rgba(17,147,212,.10);
    transform: none !important;
  }

  .services-editorial-arrow::before {
    content: "→" !important;
    display: block !important;
    color: currentColor;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
  }

  .services-editorial-arrow::after {
    content: "" !important;
    position: absolute;
    inset: -6px;
  }

  .services-editorial-item.is-active .services-editorial-arrow {
    background: var(--euroasia-accent) !important;
    border-color: var(--euroasia-accent) !important;
    color: var(--euroasia-white) !important;
    transform: none !important;
  }
}
