/* =========================================================
   ABC PROJECTS
   SERVICES PAGE
   ========================================================= */

.services-hero {
  padding:
    92px 0 88px;

  background:
    radial-gradient(circle at 88% 22%, rgba(198, 161, 91, 0.13), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fb 58%, #edf3f7 100%);
  border-bottom:
    1px solid var(--border);

}

.services-hero-grid {
  display:
    grid;

  grid-template-columns:
    minmax(0, 1.15fr) minmax(350px, 0.65fr);

  align-items:
    center;

  gap:
    75px;

}

.services-hero-content { max-width: 760px; }

.services-eyebrow {
  display:
    inline-block;

  margin-bottom:
    16px;

  color:
    var(--gold);

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

  font-size:
    0.86rem;

  font-weight:
    700;

  letter-spacing:
    0.1em;

  text-transform:
    uppercase;

}

.services-hero h1 {
  max-width:
    800px;

  margin-bottom:
    24px;

  font-size:
    clamp(2.6rem, 5vw, 4.2rem);

}

.services-hero-text {
  max-width:
    720px;

  margin-bottom:
    34px;

  color:
    var(--muted);

  font-size:
    1.16rem;

  line-height:
    1.75;

}

.services-hero-panel {
  padding:
    34px 32px;

  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid rgba(23, 50, 77, 0.12);

  border-radius:
    18px;

  box-shadow:
    0 18px 48px rgba(15, 35, 55, 0.10);

}

.hero-panel-label {
  display:
    block;

  margin-bottom:
    22px;

  color:
    var(--gold);

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

  font-size:
    0.78rem;

  font-weight:
    700;

  letter-spacing:
    0.09em;

  text-transform:
    uppercase;

}

.hero-panel-item {
  display:
    flex;

  align-items:
    center;

  gap:
    17px;

  padding:
    18px 0;

  border-bottom:
    1px solid var(--border);

}

.hero-panel-item:last-child { border-bottom: 0; }

.hero-panel-item > span {
  flex:
    0 0 43px;

  width:
    43px;

  height:
    43px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  color:
    var(--white);

  background:
    var(--navy);

  border-radius:
    50%;

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

  font-size:
    0.72rem;

  font-weight:
    700;

}

.hero-panel-item strong {
  display:
    block;

  margin-bottom:
    3px;

  color:
    var(--navy);

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

  font-size:
    0.96rem;

}

.hero-panel-item small {
  display:
    block;

  color:
    var(--muted);

  font-size:
    0.88rem;

  line-height:
    1.45;

}

.services-section-heading { max-width: 800px; }

/* =========================================================
   CORE SERVICES
   ========================================================= */

.services-core { background: var(--white); }

.services-editorial-grid {
  display:
    grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    22px;

}

.editorial-service {
  --service-accent:
    var(--gold);

  --service-tint:
    rgba(198, 161, 91, 0.06);

  position:
    relative;

  overflow:
    hidden;

  display:
    grid;

  grid-template-columns:
    55px 1fr;

  gap:
    20px;

  min-height:
    235px;

  padding:
    31px 30px;

  background:
    linear-gradient(135deg, var(--service-tint) 0%, #ffffff 46%, #ffffff 100%);

  border:
    1px solid var(--border);

  border-top:
    4px solid var(--service-accent);

  border-radius:
    14px;

  box-shadow:
    0 5px 18px rgba(15, 35, 55, 0.05);

  transition:
    transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;

}

.editorial-service::after {
  content:
    "";

  position:
    absolute;

  width:
    115px;

  height:
    115px;

  right:
    -65px;

  bottom:
    -65px;

  background:
    var(--service-tint);

  border-radius:
    50%;

  transform:
    scale(0.7);

  transition:
    transform 0.3s ease;

}

.editorial-service:hover {
  transform:
    translateY(-8px);

  border-color:
    var(--service-accent);

  box-shadow:
    0 18px 38px rgba(15, 35, 55, 0.13);

  background:
    linear-gradient(135deg, var(--service-tint) 0%, #ffffff 62%);

}

.editorial-service:hover::after { transform: scale(1.35); }

.service-accent-1 { --service-accent: #315f83; --service-tint: rgba(49, 95, 131, 0.08); }
.service-accent-2 { --service-accent: #b88b3f; --service-tint: rgba(184, 139, 63, 0.08); }
.service-accent-3 { --service-accent: #397a79; --service-tint: rgba(57, 122, 121, 0.08); }
.service-accent-4 { --service-accent: #77659a; --service-tint: rgba(119, 101, 154, 0.08); }
.service-accent-5 { --service-accent: #8c7445; --service-tint: rgba(140, 116, 69, 0.08); }
.service-accent-6 { --service-accent: #58755f; --service-tint: rgba(88, 117, 95, 0.08); }
.service-accent-7 { --service-accent: #7b6281; --service-tint: rgba(123, 98, 129, 0.08); }
.service-accent-8 { --service-accent: #a46e3c; --service-tint: rgba(164, 110, 60, 0.08); }

.editorial-number {
  padding-top:
    4px;

  color:
    var(--service-accent);

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

  font-size:
    0.8rem;

  font-weight:
    700;

  letter-spacing:
    0.08em;

}

.editorial-content {
  position:
    relative;

  z-index:
    2;

  display:
    flex;

  flex-direction:
    column;

}

.editorial-content h3 { margin-bottom: 13px; font-size: 1.18rem; }

.editorial-content p {
  margin-bottom:
    22px;

  color:
    var(--muted);

  font-size:
    0.97rem;

  line-height:
    1.65;

}

.editorial-content a {
  display:
    inline-flex;

  align-items:
    center;

  align-self:
    flex-start;

  margin-top:
    auto;

  color:
    var(--navy);

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

  font-size:
    0.85rem;

  font-weight:
    700;

  transition:
    color 0.2s ease, transform 0.2s ease;

}

.editorial-service:hover .editorial-content a {
  color:
    var(--service-accent);

  transform:
    translateX(4px);

}

/* =========================================================
   PROFILE ASSESSMENT FEATURE
   ========================================================= */

.assessment-feature {
  background:
    linear-gradient(115deg, #fbf7ee 0%, #f8f3e8 50%, #ffffff 100%);

  border-top:
    1px solid rgba(198, 161, 91, 0.22);

  border-bottom:
    1px solid rgba(198, 161, 91, 0.22);

}

.assessment-layout {
  display:
    grid;

  grid-template-columns:
    minmax(0, 0.85fr) minmax(420px, 1.15fr);

  align-items:
    center;

  gap:
    75px;

}

.assessment-intro h2 { margin-bottom: 20px; }
.assessment-intro p { max-width: 600px; margin-bottom: 26px; color: var(--muted); font-size: 1.07rem; }
.assessment-link { color: var(--navy); font-family: "Montserrat", Arial, sans-serif; font-size: 0.9rem; font-weight: 700; }
.assessment-link:hover { color: var(--gold); }

.assessment-checklist {
  display:
    grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    13px;

}

.assessment-item {
  display:
    flex;

  align-items:
    flex-start;

  gap:
    13px;

  min-height:
    92px;

  padding:
    18px;

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid rgba(198, 161, 91, 0.28);

  border-radius:
    10px;

}

.assessment-item span {
  flex:
    0 0 28px;

  color:
    var(--gold);

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

  font-size:
    0.72rem;

  font-weight:
    700;

}

.assessment-item p { margin: 0; color: var(--charcoal); font-size: 0.91rem; line-height: 1.5; }

/* =========================================================
   SERVICE WORKFLOW
   ========================================================= */

.service-workflow { background: #eef4f8; }

.workflow-track {
  display:
    grid;

  grid-template-columns:
    1fr auto 1fr auto 1fr auto 1fr auto 1fr;

  align-items:
    center;

  gap:
    12px;

  margin-top:
    12px;

}

.workflow-step {
  min-height:
    175px;

  display:
    flex;

  flex-direction:
    column;

  justify-content:
    center;

  padding:
    25px 20px;

  text-align:
    center;

  background:
    var(--white);

  border:
    1px solid rgba(23, 50, 77, 0.12);

  border-radius:
    12px;

  box-shadow:
    0 6px 18px rgba(15, 35, 55, 0.05);

  transition:
    transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;

}

.workflow-step:hover {
  transform:
    translateY(-9px);

  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8f0 100%);

  border-color:
    rgba(198, 161, 91, 0.82);

  box-shadow:
    0 18px 34px rgba(15, 35, 55, 0.14);

}

.workflow-final { border-color: rgba(198, 161, 91, 0.55); box-shadow: 0 8px 24px rgba(198, 161, 91, 0.13); }
.workflow-number { display: block; margin-bottom: 18px; color: var(--gold); font-family: "Montserrat", Arial, sans-serif; font-size: 0.76rem; font-weight: 700; }
.workflow-step strong { display: block; margin-bottom: 8px; color: var(--navy); font-family: "Montserrat", Arial, sans-serif; font-size: 0.96rem; }
.workflow-step small { display: block; color: var(--muted); font-size: 0.84rem; line-height: 1.45; }

.workflow-arrow {
  color:
    var(--navy);

  font-size:
    2rem;

  font-weight:
    900;

  line-height:
    1;

  text-shadow:
    0 1px 0 rgba(23, 50, 77, 0.15);

  transition:
    transform 0.25s ease, color 0.25s ease;

}

.workflow-arrow:hover { color: var(--gold); transform: translateX(4px) scale(1.08); }

/* =========================================================
   PROFILE SUPPORT PATHWAYS
   ========================================================= */

.profile-pathways { padding: 64px 0; background: var(--white); }
.pathway-container { width: min(calc(100% - 80px), 1080px); }
.pathway-heading { max-width: 760px; margin-bottom: 30px; }
.pathway-heading h2 { margin-bottom: 14px; }
.pathway-heading p { font-size: 1rem; line-height: 1.6; }
.pathway-stack { display: grid; gap: 12px; }

.pathway-card {
  display:
    grid;

  grid-template-columns:
    115px 1fr 180px;

  align-items:
    center;

  gap:
    24px;

  min-height:
    118px;

  padding:
    20px 24px;

  border:
    1px solid var(--border);

  border-left-width:
    6px;

  border-radius:
    12px;

  transition:
    transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;

}

.pathway-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(15, 35, 55, 0.13); }

.pathway-eb1 { border-left-color: #315c83; background: linear-gradient(90deg, #f4f8fc 0%, #ffffff 48%); }
.pathway-eb1:hover { border-color: rgba(49, 92, 131, 0.55); border-left-color: #315c83; background: linear-gradient(90deg, #e9f2f9 0%, #ffffff 52%); }
.pathway-eb1b {
  border-left-color:
    #7c6a9b;

  background:
    linear-gradient(
      90deg,
      #f7f4fa 0%,
      #ffffff 48%
    );
}


.pathway-eb1b:hover {
  border-color:
    rgba(124, 106, 155, 0.58);

  border-left-color:
    #7c6a9b;

  background:
    linear-gradient(
      90deg,
      #eee8f4 0%,
      #ffffff 52%
    );
}
.pathway-niw { border-left-color: var(--gold); background: linear-gradient(90deg, #fbf7ee 0%, #ffffff 48%); }
.pathway-niw:hover { border-color: rgba(198, 161, 91, 0.65); border-left-color: var(--gold); background: linear-gradient(90deg, #f8edcf 0%, #ffffff 52%); }
.pathway-o1 { border-left-color: #688578; background: linear-gradient(90deg, #f2f7f4 0%, #ffffff 48%); }
.pathway-o1:hover { border-color: rgba(104, 133, 120, 0.62); border-left-color: #688578; background: linear-gradient(90deg, #e7f1eb 0%, #ffffff 52%); }

.pathway-code { color: var(--navy); font-family: "Montserrat", Arial, sans-serif; font-size: 1.05rem; font-weight: 700; }
.pathway-copy h3 { margin-bottom: 5px; font-size: 1.05rem; }
.pathway-copy p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.pathway-card > a {
  justify-self:
    end;

  color:
    var(--navy);

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

  font-size:
    0.78rem;

  font-weight:
    700;

  text-align:
    right;

  transition:
    color 0.2s ease, transform 0.2s ease;

}

.pathway-card:hover > a { color: var(--gold); transform: translateX(4px); }

.pathway-boundary {
  margin-top:
    18px;

  padding:
    14px 18px;

  color:
    var(--muted);

  background:
    var(--off-white);

  border:
    1px solid var(--border);

  border-radius:
    9px;

  font-size:
    0.86rem;

  line-height:
    1.5;

}

.pathway-boundary strong { color: var(--navy); }

/* =========================================================
   VISIBILITY ECOSYSTEM
   ========================================================= */

.visibility-ecosystem {
  color:
    #d9e2eb;

  background:
    linear-gradient(135deg, #10263a 0%, #17324d 100%);

}

.ecosystem-heading { max-width: 790px; margin-bottom: 46px; }
.ecosystem-heading h2 { margin-bottom: 18px; color: var(--white); }
.ecosystem-heading p { margin: 0; color: #b9c8d5; font-size: 1.06rem; }

.ecosystem-network {
  display:
    grid;

  grid-template-columns:
    1fr auto 1fr auto 1fr auto 1fr auto 1fr;

  align-items:
    stretch;

  gap:
    12px;

}

.ecosystem-node {
  min-height:
    175px;

  padding:
    24px 18px;

  text-align:
    center;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid rgba(255, 255, 255, 0.13);

  border-radius:
    12px;

  transition:
    transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;

}

.ecosystem-node:hover {
  transform:
    translateY(-6px);

  background:
    rgba(255, 255, 255, 0.09);

  border-color:
    rgba(198, 161, 91, 0.55);

}

.ecosystem-node > span {
  width:
    44px;

  height:
    44px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  margin:
    0 auto 18px;

  color:
    var(--deep-navy);

  background:
    var(--gold);

  border-radius:
    50%;

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

  font-size:
    0.72rem;

  font-weight:
    700;

}

.ecosystem-node strong { display: block; margin-bottom: 7px; color: var(--white); font-family: "Montserrat", Arial, sans-serif; font-size: 0.91rem; }
.ecosystem-node small { display: block; color: #aebfcd; font-size: 0.82rem; line-height: 1.45; }
.ecosystem-impactio > span { background: #cbb7e2; color: #3e2d55; }
.ecosystem-connector { display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; font-weight: 700; }

.ecosystem-actions {
  display:
    flex;

  flex-wrap:
    wrap;

  align-items:
    center;

  gap:
    18px 28px;

  margin-top:
    35px;

}

.ecosystem-actions a { color: var(--gold); font-family: "Montserrat", Arial, sans-serif; font-size: 0.86rem; font-weight: 700; }
.ecosystem-actions a:hover { color: var(--white); }
.ecosystem-resource-link { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, 0.22); }

/* =========================================================
   EVIDENCE DOCUMENTATION AREAS
   ========================================================= */

.evidence-documentation { background: #faf8f3; }
.evidence-documentation-heading { max-width: 830px; margin-bottom: 34px; }

.evidence-documentation-grid {
  display:
    grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    14px;

}

.evidence-documentation-item {
  display:
    grid;

  grid-template-columns:
    38px 1fr;

  gap:
    12px;

  min-height:
    132px;

  padding:
    21px 20px;

  background:
    rgba(255, 255, 255, 0.86);

  border:
    1px solid rgba(198, 161, 91, 0.26);

  border-radius:
    11px;

  box-shadow:
    0 4px 14px rgba(15, 35, 55, 0.04);

  transition:
    transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;

}

.evidence-documentation-item:hover {
  transform:
    translateY(-4px);

  border-color:
    rgba(198, 161, 91, 0.68);

  box-shadow:
    0 12px 25px rgba(15, 35, 55, 0.09);

}

.evidence-documentation-item > span { color: var(--gold); font-family: "Montserrat", Arial, sans-serif; font-size: 0.74rem; font-weight: 700; }
.evidence-documentation-item h3 { margin-bottom: 7px; font-size: 0.98rem; }
.evidence-documentation-item p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }

.evidence-documentation-note {
  margin-top:
    24px;

  padding:
    17px 20px;

  color:
    var(--muted);

  background:
    #fffdf8;

  border-left:
    4px solid var(--gold);

  border-radius:
    0 9px 9px 0;

  font-size:
    0.9rem;

  line-height:
    1.55;

}

.evidence-documentation-note strong { color: var(--navy); }

/* =========================================================
   PROFESSIONAL BOUNDARIES
   ========================================================= */

.service-boundaries { background: #edf1f4; }

.boundary-layout {
  display:
    grid;

  grid-template-columns:
    minmax(0, 0.8fr) minmax(440px, 1.2fr);

  gap:
    75px;

  align-items:
    start;

}

.boundary-heading h2 { margin-bottom: 18px; }
.boundary-heading p { max-width: 520px; margin: 0; color: var(--muted); font-size: 1.04rem; }

.boundary-list {
  background:
    var(--white);

  border:
    1px solid var(--border);

  border-radius:
    12px;

  overflow:
    hidden;

}

.boundary-item {
  display:
    grid;

  grid-template-columns:
    42px 1fr;

  gap:
    15px;

  padding:
    20px 22px;

  border-bottom:
    1px solid var(--border);

}

.boundary-item:last-child { border-bottom: 0; }
.boundary-item span { color: var(--gold); font-family: "Montserrat", Arial, sans-serif; font-size: 0.74rem; font-weight: 700; }
.boundary-item p { margin: 0; color: var(--charcoal); font-size: 0.93rem; line-height: 1.55; }

/* =========================================================
   FINAL CTA
   ========================================================= */

.services-final-cta {
  padding:
    80px 0;

  color:
    var(--white);

  background:
    radial-gradient(circle at 85% 25%, rgba(198, 161, 91, 0.18), transparent 27%),
    var(--deep-navy);
}

.services-cta-inner { max-width: 850px; margin: 0 auto; text-align: center; }

.services-cta-eyebrow {
  display:
    inline-block;

  margin-bottom:
    14px;

  color:
    var(--gold);

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

  font-size:
    0.82rem;

  font-weight:
    700;

  letter-spacing:
    0.09em;

  text-transform:
    uppercase;

}

.services-cta-inner h2 { margin-bottom: 18px; color: var(--white); }
.services-cta-inner > p { max-width: 720px; margin: 0 auto 30px; color: #bac8d5; font-size: 1.05rem; }
.services-cta-buttons { justify-content: center; }
.services-cta-primary { color: var(--deep-navy); background: var(--gold); }
.services-cta-primary:hover { color: var(--deep-navy); background: #d4b574; }
.services-cta-secondary { color: var(--white); background: transparent; border: 1px solid rgba(255, 255, 255, 0.55); }
.services-cta-secondary:hover { color: var(--deep-navy); background: var(--white); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .services-hero-grid { gap: 45px; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr); }
  .assessment-layout { gap: 45px; }
  .workflow-track { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .workflow-arrow { display: none; }
  .ecosystem-network { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .ecosystem-connector { display: none; }
  .evidence-documentation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  .services-hero { padding: 72px 0; }
  .services-hero-grid { grid-template-columns: 1fr; }
  .services-hero-panel { max-width: 650px; }
  .services-editorial-grid { grid-template-columns: 1fr; }
  .editorial-service { min-height: auto; }
  .assessment-layout { grid-template-columns: 1fr; }
  .workflow-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-final { grid-column: 1 / -1; }
  .pathway-container { width: min(calc(100% - 40px), 760px); }
  .pathway-card { grid-template-columns: 100px 1fr; gap: 18px; }
  .pathway-card > a { grid-column: 2; justify-self: start; text-align: left; }
  .ecosystem-network { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ecosystem-node:last-of-type { grid-column: 1 / -1; }
  .ecosystem-resource-link { padding-left: 0; border-left: 0; }
  .boundary-layout { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 640px) {
  .services-hero { padding: 58px 0; }
  .services-hero h1 { font-size: clamp(2.15rem, 11vw, 3rem); }
  .services-hero-text { font-size: 1.05rem; }
  .services-hero-panel { padding: 26px 22px; }
  .editorial-service { grid-template-columns: 1fr; gap: 10px; padding: 26px 22px; }
  .editorial-number { padding-top: 0; }
  .assessment-checklist { grid-template-columns: 1fr; }
  .assessment-item { min-height: auto; }
  .workflow-track { grid-template-columns: 1fr; }
  .workflow-final { grid-column: auto; }
  .workflow-step { min-height: 145px; }
  .pathway-container { width: min(calc(100% - 30px), var(--container-width)); }
  .pathway-card { grid-template-columns: 1fr; padding: 20px 20px; }
  .pathway-card > a { grid-column: auto; }
  .ecosystem-network { grid-template-columns: 1fr; }
  .ecosystem-node:last-of-type { grid-column: auto; }
  .ecosystem-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .evidence-documentation-grid { grid-template-columns: 1fr; }
  .evidence-documentation-item { min-height: auto; }
  .boundary-item { grid-template-columns: 32px 1fr; padding: 18px; }
  .services-final-cta { padding: 65px 0; }
}

/* =========================================================
   RESEARCH VISIBILITY ECOSYSTEM
   ICON + ACTION ENHANCEMENTS
   ========================================================= */

/* Platform icon link */
.ecosystem-icon-link {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

/* Actual platform icon */
.ecosystem-platform-icon {
  width: 84px;
  height: 84px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

/* Icon hover */
.ecosystem-icon-link:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.ecosystem-icon-link:hover .ecosystem-platform-icon {
  transform: scale(1.05);
}

/* Make whole ecosystem card react slightly
   when hovering over its icon */
.ecosystem-node:has(.ecosystem-icon-link:hover) {
  transform: translateY(-7px);
  border-color: rgba(210, 164, 76, 0.75);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   ECOSYSTEM BOTTOM ACTION LINKS
   ========================================================= */

.ecosystem-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
}

/* Left: Explore Research Visibility Support */
.ecosystem-support-link {
  flex: 0 0 auto;
  color: #d2a44c;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.ecosystem-support-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}


/* Right: Medium article CTA box */
.ecosystem-resource-link {
  margin-left: auto;
  max-width: 760px;
  padding: 17px 24px;
  border: 1px solid rgba(210, 164, 76, 0.7);
  border-radius: 10px;

  color: #d2a44c;
  background: rgba(255, 255, 255, 0.025);

  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ecosystem-resource-link span {
  color: #ffffff;
  font-weight: 700;
}

/* Medium box hover */
.ecosystem-resource-link:hover {
  color: #ffffff;
  background: rgba(210, 164, 76, 0.13);
  border-color: #d2a44c;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.ecosystem-resource-link:hover span {
  color: #d2a44c;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

  .ecosystem-icon-link,
  .ecosystem-platform-icon {
    width: 76px;
    height: 76px;
  }

  .ecosystem-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .ecosystem-resource-link {
    margin-left: 0;
    max-width: 100%;
  }
}


@media (max-width: 700px) {

  .ecosystem-icon-link,
  .ecosystem-platform-icon {
    width: 70px;
    height: 70px;
  }

  .ecosystem-icon-link {
    margin-bottom: 18px;
  }

  .ecosystem-resource-link {
    padding: 15px 18px;
  }
}

/* =========================================================
   RECOMMENDED STARTING SERVICE
   ========================================================= */

.recommended-service {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f3f8fc 0%,
      #fff9eb 100%
    );

  border:
    1px solid rgba(198, 161, 91, 0.58);

  border-top:
    4px solid var(--gold);

  box-shadow:
    0 8px 22px rgba(23, 50, 77, 0.10);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.recommended-service::after {
  content: "";

  position: absolute;

  right: -42px;
  bottom: -42px;

  width: 130px;
  height: 130px;

  background:
    radial-gradient(
      circle,
      rgba(198, 161, 91, 0.22) 0%,
      rgba(198, 161, 91, 0.08) 45%,
      transparent 70%
    );

  border-radius: 50%;

  pointer-events: none;
}


.recommended-service:hover {
  transform:
    translateY(-8px);

  background:
    linear-gradient(
      135deg,
      #e7f1f8 0%,
      #f8e8bf 100%
    );

  border-color:
    var(--gold);

  box-shadow:
    0 18px 38px rgba(23, 50, 77, 0.18);
}


.recommended-title-row {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 10px 14px;

  margin-bottom: 12px;
}


.recommended-title-row h3 {
  margin-bottom: 0;
}


.recommended-badge {
  display: inline-flex;

  align-items: center;

  padding:
    5px 10px;

  color:
    #765416;

  background:
    #f8e8bd;

  border:
    1px solid rgba(198, 161, 91, 0.65);

  border-radius:
    20px;

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

  font-size:
    0.66rem;

  font-weight:
    700;

  letter-spacing:
    0.04em;

  text-transform:
    uppercase;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}


.recommended-service:hover
.recommended-badge {
  color:
    var(--white);

  background:
    var(--navy);

  border-color:
    var(--gold);

  transform:
    translateY(-2px);
}


.recommended-service
.editorial-number {
  color:
    var(--gold-strong);
}


.recommended-service:hover
.editorial-content > a {
  color:
    var(--gold-strong);

  transform:
    translateX(5px);
}