﻿/* Home page layout — sourced 1:1 from horizoneurope/assets/css/main.css */


.btn .btn-ico {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  display: block;
}

.btn .btn-label {
  line-height: 1;
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(6, 54, 119, 0.28);
  box-shadow: 0 4px 14px rgba(6, 54, 119, 0.06);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(251, 135, 28, 0.12);
}

.hero {
  position: relative;
  min-height: clamp(420px, 68vh, 640px);
  display: grid;
  align-items: end;
  overflow: visible;
  color: var(--white);
  background: var(--navy);
  margin-bottom: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s var(--ease), transform 6.5s ease-out;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(125deg, rgba(6, 54, 119, 0.9) 0%, rgba(6, 54, 119, 0.55) 42%, rgba(251, 135, 28, 0.38) 100%),
    linear-gradient(to top, rgba(6, 54, 119, 0.72), transparent 50%);
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 1.35rem;
  padding-bottom: 7.75rem;
  align-self: end;
  justify-self: center;
  text-align: left;
  /* Keep .container width (do not force 100% — that breaks logo/Platforma alignment) */
  box-sizing: border-box;
}

/* Same width as header: copy left (logo side), featured call right */
.hero-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  width: 100%;
  max-width: 100%;
}

.hero-copy {
  flex: 1 1 auto;
  width: auto;
  max-width: 40rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: 0.25rem;
}

.hero-inner > :not(.hero-controls) {
  max-width: none;
}

.hero-feature-call {
  flex: 0 0 23.5rem;
  width: 23.5rem;
  max-width: 23.5rem;
  min-width: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding-left: 2rem;
}

.hero-feature-call::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 12%,
    rgba(255, 255, 255, 0.55) 88%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-call-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(6, 54, 119, 0.28);
  padding: 1rem 1.1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  backdrop-filter: blur(10px);
}

.hero-call-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-call-badge {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-call-code {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  background: #f7941d;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-call-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.98rem * 1.35 * 4);
}

.hero-call-deadline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: #fff8f0;
  border: 1px solid #ffd9a8;
  font-size: 0.78rem;
}

.hero-call-deadline span {
  font-weight: 700;
  color: #c05c00;
}

.hero-call-deadline strong {
  font-weight: 700;
  color: var(--navy);
}

.hero-call-deadline em {
  margin-left: auto;
  font-style: normal;
  font-weight: 700;
  color: #f7941d;
  white-space: nowrap;
}

.hero-call-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 2.45rem;
  padding: 0.45rem 0.4rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 0;
}

.hero-call-btn .btn-ico {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
}

.hero-call-btn .btn-label {
  min-width: 0;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.hero-call-btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.hero-call-btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.hero-call-btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(6, 54, 119, 0.18);
}

.hero-call-btn-outline:hover {
  border-color: rgba(251, 135, 28, 0.55);
  background: #fff8f0;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.hero-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s var(--ease), background 0.3s;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--white);
}

.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  transform: translateY(50%);
  pointer-events: none;
  background: transparent;
  margin: 0;
  padding: 0;
  box-shadow: none;
  filter: none;
}

.hero-stats .container {
  pointer-events: auto;
  box-shadow: none;
  filter: none;
  background: transparent;
}

.stats-band {
  display: none;
}

.hero-stats .stats-grid,
#stats-grid.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none !important;
  filter: none !important;
  padding: 1.15rem 1rem;
}

.stat-item {
  text-align: center;
  padding: 0.35rem 0.5rem;
}

.hero-stats .stat-value,
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--eu-blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-stats .stat-label,
.stat-label {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}


.ncp-band-photo {
  /* legacy alias — styles live on .ncp-band */
}

/* Combined pulse board — news / funding / events */
.pulse-section {
  background:
    radial-gradient(ellipse at top right, rgba(251, 135, 28, 0.08), transparent 45%),
    radial-gradient(ellipse at bottom left, rgba(26, 79, 156, 0.05), transparent 40%),
    var(--mist);
}

/* Home open calls carousel (Figma 97:7353) */
.section.home-ops-section {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #f4f7fa;
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.75rem, 5vw, 3.75rem);
}

.section.home-ops-section .container {
  overflow: visible;
}

.home-ops-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.home-ops-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.home-ops-copy p {
  margin: 0.4rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #4a5568;
}

.home-ops-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.home-ops-all {
  flex: 0 0 auto;
  width: auto;
  min-height: 0;
}

.home-ops-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
  width: 100%;
}

.home-ops-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  max-width: 12rem;
  flex-wrap: wrap;
}

.home-ops-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #c5d0de;
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.home-ops-dot:hover {
  background: #8fa3bb;
}

.home-ops-dot.is-active {
  width: 28px;
  background: var(--navy);
}

.home-ops-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1.125px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.home-ops-nav-btn:hover {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(6, 54, 119, 0.1);
}

/*
 * Exactly 3 cards spanning the site container width (no partial 4th peek).
 * Card size = (viewport width − gaps) / 3 using container queries.
 */
.home-ops-viewport {
  --home-ops-gap: 1rem;
  --home-ops-cols: 3;
  container-type: inline-size;
  container-name: home-ops;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0;
  /* less bottom pad without card shadows */
  padding: 0.35rem 0 0.75rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
}

.home-ops-viewport::-webkit-scrollbar {
  display: none;
}

.home-ops-track {
  display: flex;
  align-items: stretch;
  gap: var(--home-ops-gap);
  overflow: visible;
  width: max-content;
  min-width: 100%;
  padding: 0.1rem 0 0.25rem;
  margin: 0;
  box-sizing: border-box;
}

.home-ops-card {
  /* (row − gaps between cols) / cols  → fills container; 4th card fully off-screen */
  flex: 0 0
    calc(
      (100cqw - (var(--home-ops-cols) - 1) * var(--home-ops-gap)) / var(--home-ops-cols)
    );
  width: calc(
    (100cqw - (var(--home-ops-cols) - 1) * var(--home-ops-gap)) / var(--home-ops-cols)
  );
  min-width: 0;
  max-width: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: none;
  box-sizing: border-box;
}

.home-ops-card:first-of-type {
  box-shadow: none;
}

.home-ops-card-top {
  display: none;
}

.home-ops-code {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  background: #f7941d;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: none;
}

.home-ops-type-row {
  display: none;
}

.home-ops-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  color: #0b2748;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.home-ops-cluster {
  display: block;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #62758d;
  line-height: 1.3;
}

.home-ops-status-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.65rem;
}

.home-ops-status-row .opp-status {
  flex: 0 0 auto;
  margin-right: auto;
}

.home-ops-status-row .home-ops-type {
  flex: 0 0 auto;
  margin-left: auto;
}

.home-ops-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0b2748;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}

.home-ops-card-title-link {
  color: inherit;
  text-decoration: none;
}

.home-ops-card-title-link:hover,
.home-ops-card-title-link:focus-visible {
  color: var(--accent, #fb871c);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.home-ops-card-desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #4a5568;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 0 0 auto;
}

.home-ops-deadline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: #fff8f0;
  border: 1px solid #ffd9a8;
}

.home-ops-deadline-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.home-ops-deadline-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.home-ops-deadline-side .home-ops-type {
  background: var(--white);
}

.home-ops-deadline-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c05c00;
  line-height: 1.2;
}

.home-ops-deadline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.home-ops-deadline-date {
  font-size: 1rem;
  font-weight: 700;
  color: #0b2748;
  line-height: 1.2;
}

.home-ops-deadline-days {
  font-size: 0.875rem;
  font-weight: 700;
  color: #f7941d;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-ops-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.home-ops-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: #f4f7fa;
  min-width: 0;
}

.home-ops-meta-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4a5568;
  line-height: 1.2;
}

.home-ops-meta-item strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b2748;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-ops-meta-item--budget {
  background: #fff8f0;
  border: 1px solid #ffd9a8;
}

.home-ops-meta-item--budget strong {
  color: var(--accent-deep, #ff6f00);
}

.home-ops-meta-item--grants {
  background: #eef5fb;
  border: 1px solid #c5daf0;
}

.home-ops-meta-item--grants strong {
  color: var(--sky-mid, #59c0e4);
}

.home-ops-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: auto;
}

.home-ops-btn,
a.home-ops-btn,
button.home-ops-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  min-height: 44px;
  height: auto;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.home-ops-btn .btn-ico {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  display: block;
}

.home-ops-btn .btn-label {
  flex: 0 1 auto;
  max-width: 9.5em;
  min-width: 0;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: break-word;
}

.home-ops-btn-primary,
a.home-ops-btn-primary,
button.home-ops-btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.home-ops-btn-primary:hover,
a.home-ops-btn-primary:hover,
button.home-ops-btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.home-ops-btn-outline,
a.home-ops-btn-outline,
button.home-ops-btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid #d1dbe8;
}

.home-ops-btn-outline:hover,
a.home-ops-btn-outline:hover,
button.home-ops-btn-outline:hover {
  border-color: var(--navy);
  background: var(--mist);
  color: var(--navy);
}

@media (max-width: 980px) {
  .home-ops-viewport {
    --home-ops-cols: 2;
  }
}

@media (max-width: 640px) {
  .section.pulse-section {
    padding-top: 11rem;
  }

  .section.home-ops-section {
    padding-top: clamp(2.5rem, 5vw, 3.25rem);
  }

  .home-ops-viewport {
    --home-ops-cols: 1;
  }

  .home-ops-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .home-ops-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .home-ops-all {
    margin-left: auto;
  }
}

/* Pulse — first after hero; clearance under overlapping stats */
.section.pulse-section {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse at top right, rgba(251, 135, 28, 0.08), transparent 45%),
    radial-gradient(ellipse at bottom left, rgba(26, 79, 156, 0.05), transparent 40%),
    var(--mist);
  padding-top: clamp(6rem, 10vw, 7.25rem);
}

.pulse-board {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pulse-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--mist), var(--white));
}

.pulse-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}

.pulse-tab:hover {
  color: var(--navy);
  background: var(--mist);
}

.pulse-tab.is-active {
  background: var(--accent);
  color: var(--white);
}

.pulse-stage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  /* Fixed stage so left feature + right rail share one height */
  height: 400px;
  min-height: 400px;
  max-height: 400px;
  overflow: hidden;
  align-items: stretch;
}

.pulse-feature {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--line);
  height: 100%;
  min-height: 0;
  background: var(--white);
  overflow: hidden;
}

.pulse-feature.is-swap .pulse-feature-body {
  animation: pulseIn 0.45s var(--ease);
}

.pulse-feature-media {
  min-height: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.pulse-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.85s var(--ease);
  z-index: 0;
}

.pulse-feature:hover .pulse-feature-media::before {
  transform: scale(1.08);
}

.pulse-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6, 54, 119, 0.25), transparent 45%);
  pointer-events: none;
}

.pulse-feature-body {
  padding: 0.9rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 0;
  flex-shrink: 0;
}

.pulse-feature-meta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sky);
}

.pulse-feature-body h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pulse-feature-body p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pulse-rail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background: var(--mist);
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.pulse-rail-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  /* Default: natural height — few items leave empty space below (not stretched) */
  flex: 0 0 auto;
  min-height: 84px;
  height: auto;
  padding: 0.55rem 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
  animation: pulseIn 0.4s var(--ease) both;
  animation-delay: var(--delay, 0s);
  transition: background 0.25s;
}

/* Full rail (4 items): share stage height so left/right feel balanced */
.pulse-rail--fill .pulse-rail-item {
  flex: 1 1 0;
  min-height: 0;
}

.pulse-rail-item:last-child {
  border-bottom: 0;
}

.pulse-rail-item:hover {
  background: var(--white);
}

.pulse-rail-item:hover .pulse-rail-arrow {
  color: var(--navy);
  transform: rotate(0deg) translateX(3px);
}

.pulse-rail-thumb {
  width: 72px;
  height: 54px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: var(--accent-deep);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pulse-rail-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.65s var(--ease);
}

.pulse-rail-item:hover .pulse-rail-thumb::before {
  transform: scale(1.12);
}

.pulse-rail-copy {
  min-width: 0;
}

.pulse-rail-meta {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sky);
  margin-bottom: 0.25rem;
}

.pulse-rail-item h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pulse-rail-arrow {
  color: var(--muted);
  flex-shrink: 0;
  transform: rotate(-28deg);
  transition: color 0.2s, transform 0.3s var(--ease);
}

@keyframes pulseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .pulse-stage {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .pulse-feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
    height: auto;
  }

  .pulse-feature-media {
    min-height: 180px;
    height: 180px;
  }

  .pulse-rail {
    height: auto;
    overflow: visible;
  }

  .pulse-rail-item {
    flex: 0 0 auto;
    min-height: 76px;
  }

  .pulse-rail--fill .pulse-rail-item {
    flex: 0 0 auto;
    min-height: 76px;
  }

  .pulse-rail-thumb {
    width: 72px;
    height: 54px;
  }

  .pulse-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .pulse-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero-brand span:first-child {
  color: var(--light-blue);
}

.hero-brand span:last-child {
  color: var(--white);
}

.hero-inner.is-swap .hero-copy #hero-eyebrow,
.hero-inner.is-swap .hero-copy #hero-title,
.hero-inner.is-swap .hero-copy #hero-text,
.hero-inner.is-swap .hero-copy .hero-ctas {
  animation: pulseIn 0.4s var(--ease) both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
  line-height: 1.25;
  white-space: normal;
  max-width: 100%;
  overflow: visible;
  text-overflow: unset;
}

@media (max-width: 900px) {
  .hero h1 {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-blue);
  margin: 0 0 0.45rem;
}

.hero .lede {
  font-size: clamp(0.9rem, 1.25vw, 1.02rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 100%;
  margin-bottom: 1.15rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  min-height: 2.75rem;
  align-items: center;
}

.hero-ctas .btn {
  opacity: 1;
  visibility: visible;
  font-size: 0.88rem;
  padding: 0.7rem 1.15rem;
}

.hero-ctas .btn-primary,
.hero #hero-cta.btn-primary {
  background: #fb871c;
  border-color: #fb871c;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(251, 135, 28, 0.32);
}

.hero-ctas .btn-primary:hover,
.hero #hero-cta.btn-primary:hover {
  background: #ff6f00;
  border-color: #ff6f00;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 111, 0, 0.34);
}


.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-mist {
  background: var(--mist);
}

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

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

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head p {
  color: var(--muted);
  max-width: 100%;
  margin: 0;
}

.pulse-head {
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.25rem;
}

.pulse-head > div {
  flex: 1;
  min-width: 0;
}

.pulse-head p {
  max-width: none;
  white-space: nowrap;
}

.pulse-head .btn {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pulse-head {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.85rem;
  }

  .pulse-head > div {
    flex: none;
    width: 100%;
  }

  .pulse-head p {
    white-space: normal;
  }

  .pulse-head .btn {
    align-self: flex-end;
    margin-left: auto;
  }
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.text-center {
  text-align: center;
}

.card-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--eu-blue);
  margin-top: 0.35rem;
}

.tool-tile {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.ncp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(6, 54, 119, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  text-decoration: none;
  color: inherit;
}

.ncp-card:hover,
.ncp-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(6, 54, 119, 0.12);
  border-color: rgba(26, 79, 156, 0.35);
  outline: none;
  color: inherit;
}

.ncp-card-photo {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: var(--mist) center / cover no-repeat;
}

.ncp-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 54, 119, 0.45), transparent 45%);
  pointer-events: none;
}

.ncp-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.15rem 1.2rem;
  flex: 1;
}

.ncp-card-role {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eu-blue);
}

.ncp-card-body h3 {
  margin: 0.15rem 0 0.2rem;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.25;
}

.ncp-card-domain {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.ncp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.ncp-card:hover .ncp-card-cta svg {
  transform: translateX(3px);
}

.ncp-card-cta svg {
  transition: transform 0.25s var(--ease);
}

/* ===== NCP home block — exact design match (horizoneurope) ===== */
body .ncp-band.ncp-band-photo {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  isolation: auto;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  box-shadow: none;
}

body .ncp-band.ncp-band-photo .container {
  position: relative;
  z-index: 1;
}

body .ncp-band.ncp-band-photo h2 {
  color: #ffffff !important;
  max-width: none;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  white-space: nowrap;
}

body .ncp-band.ncp-band-photo p {
  max-width: none;
  margin: 0.75rem auto 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 900px) {
  body .ncp-band.ncp-band-photo h2,
  body .ncp-band.ncp-band-photo p {
    white-space: normal;
    padding-inline: 0.5rem;
  }
}

body .home-ncp-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: transparent;
}

body .home-ncp-section #home-ncps.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

body .home-ncp-section .ncp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(6, 54, 119, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  margin: 0;
  padding: 0;
  min-width: 0;
  height: 100%;
}

body .home-ncp-section .ncp-card:hover,
body .home-ncp-section .ncp-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(6, 54, 119, 0.12);
  border-color: rgba(26, 79, 156, 0.35);
}

body .home-ncp-section .ncp-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
}

body .home-ncp-section .ncp-card-photo {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  background-color: var(--mist);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

body .home-ncp-section .ncp-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 54, 119, 0.45), transparent 45%);
  pointer-events: none;
}

body .home-ncp-section .ncp-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.15rem 1.2rem;
  flex: 1;
  background: var(--white);
}

body .home-ncp-section .ncp-card-role {
  margin: 0 !important;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eu-blue);
}

body .home-ncp-section .ncp-card-body h3 {
  margin: 0.15rem 0 0.2rem !important;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy) !important;
  line-height: 1.25;
}

body .home-ncp-section .ncp-card-domain {
  margin: 0 !important;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

body .home-ncp-section .ncp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

body .home-ncp-section .ncp-card:hover .ncp-card-cta svg {
  transform: translateX(3px);
}

body .home-ncp-section .ncp-card-cta svg {
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

body .home-ncp-section .actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

body .home-ncp-section .actions-row .btn {
  text-decoration: none;
}


.home-support-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.home-support-cta {
  margin-top: 1.75rem;
}

.home-support-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 54, 119, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
  min-height: 100%;
}

.home-support-card:hover {
  border-color: rgba(251, 135, 28, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(6, 54, 119, 0.12);
}

.home-support-card .service-card-media {
  border-radius: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
  height: auto;
}

.home-support-card:hover .service-card-media img {
  transform: scale(1.06);
}

.home-support-card .service-card-body {
  border-radius: 0;
  flex: 1;
}

.home-support-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 2.25rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .home-support-stack {
    grid-template-columns: 1fr;
  }

  .home-support-card .service-card-media {
    aspect-ratio: 16 / 9;
  }
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .home-ncp-section .actions-row,
  .home-support-cta,
  .actions-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .home-ncp-section .actions-row .btn,
  .home-support-cta .btn,
  .actions-row .btn {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
  }
}


@media (max-width: 980px) {
  .stats-grid,
  .hero-stats .stats-grid,
  #stats-grid.stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.5rem;
  }

  .stat-item--stat_events {
    display: none;
  }

  .hero {
    margin-bottom: 0;
  }

  .home-ops-section,
  .section.home-ops-section {
    padding-top: clamp(2.5rem, 5vw, 3.25rem);
  }

  .pulse-section {
    padding-top: clamp(2.25rem, 5vw, 3rem);
  }

  .section.pulse-section {
    padding-top: clamp(2.25rem, 5vw, 3rem);
  }

  .split-visual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .highlight-row,
  .footer-grid,
  .content-grid,
  .split-visual-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .hero-stats .stats-grid,
  #stats-grid.stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.5rem;
    padding: 1rem 0.65rem;
  }

  .stat-item {
    min-width: 0;
    padding: 0.25rem 0.2rem;
  }

  .hero-stats .stat-value,
  .stat-value {
    font-size: 1.45rem;
  }

  .hero-stats .stat-label,
  .stat-label {
    font-size: 0.75rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-blurb {
    max-width: none;
  }

  .hero-inner {
    padding-top: 1.25rem;
    padding-bottom: 7.25rem;
    text-align: left;
  }

  .hero-layout {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    gap: 1.15rem;
  }

  .hero-copy {
    flex: none;
    width: 100%;
    max-width: 32rem;
    padding-right: 0;
  }

  .hero-feature-call {
    flex: none;
    width: 100%;
    max-width: 24rem;
    margin-left: 0;
    padding-left: 0;
  }

  .hero-feature-call::before {
    display: none;
  }

  .hero {
    margin-bottom: 0;
  }

  .hero-stats {
    transform: translateY(48%);
  }

  .home-ops-section,
  .section.home-ops-section {
    padding-top: clamp(2.5rem, 5vw, 3.25rem);
  }

  .pulse-section {
    padding-top: clamp(2.25rem, 5vw, 3rem);
  }

  .section.pulse-section {
    padding-top: clamp(2.25rem, 5vw, 3rem);
  }

  .lang-select {
    min-width: 3.75rem;
    padding: 0.5rem 1.7rem 0.5rem 0.55rem;
    font-size: 0.9rem;
  }

  .header-actions {
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .header-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem 0.5rem;
  }

  .brand {
    order: unset;
    grid-column: 1;
  }

  .header-top-end {
    order: unset;
    width: auto;
    margin-left: 0;
    grid-column: 2;
  }

  .header-search {
    order: unset;
    width: 100%;
    flex: none;
    grid-column: 1 / -1;
  }

  .header-search-row {
    justify-content: center;
  }

  .header-search-popup {
    position: absolute;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    top: calc(100% + 0.35rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .quick-search {
    flex-direction: column;
    max-width: 100%;
  }

  .quick-search .btn {
    width: 100%;
  }

  .stats-band {
    margin-top: 0;
  }

  .hero {
    min-height: clamp(380px, 60vh, 560px);
    margin-bottom: 0;
  }

  .hero-inner {
    padding-top: 1rem;
    padding-bottom: 6.5rem;
    text-align: left;
  }

  .hero-stats {
    transform: translateY(42%);
  }

  .pulse-section {
    padding-top: clamp(2.25rem, 5vw, 3rem);
  }

  .section.pulse-section {
    padding-top: clamp(2.25rem, 5vw, 3rem);
  }
}

.service-card-media {
  position: relative;
  min-height: 150px;
  height: 100%;
  background-color: var(--navy);
  overflow: hidden;
  isolation: isolate;
  border-radius: 16px 0 0 16px;
  z-index: 1;
}

.service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.45s var(--ease);
  will-change: transform;
  z-index: 0;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 54, 119, 0.05) 0%, rgba(6, 54, 119, 0.4) 100%);
  pointer-events: none;
}

.service-timeline-item:hover .service-card-media img {
  transform: scale(1.06);
}

.opp-status {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.opp-status-open {
  color: #1a9e5c;
}

.opp-status-upcoming {
  color: var(--accent-deep);
}

.opp-status-closed {
  color: var(--muted);
}

body.home .hero, body.page-template-home .hero { margin-bottom: 0; }
body.home #main, body.page-template-home #main { overflow: visible; }
body.home .section.pulse-section { padding-top: clamp(5.5rem, 10vw, 7rem); }

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  min-width: 0;
  background: var(--white);
}

.home-support-card h3,
.service-card-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--navy);
}

.home-support-card p,
.home-support-card .home-support-desc,
.service-card-body p,
.service-card-body .home-support-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

a.ncp-card {
  text-decoration: none;
  color: inherit;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  min-width: 0;
  background: var(--white);
}

.home-support-card h3,
.service-card-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--navy);
}

.home-support-card p,
.home-support-card .home-support-desc,
.service-card-body p,
.service-card-body .home-support-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

a.ncp-card {
  text-decoration: none;
  color: inherit;
}
