/* =========================================================
   Voctos — Partnership: "Example of your commission"
   Values matched 1:1 to source: row white/20r, coloured card
   276×136/20r, numbers 36/400 #0D172D, income 36/700 #cad63a,
   labels 14 #878b95, rows gap 40px.
   ========================================================= */
.vce-sec { font-family: 'Unbounded', sans-serif; color: #0D172D; margin: 40px 0; }
.vce-inner { max-width: 1350px; margin: 0 auto; }

.vce-heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 1.25;
  color: #0D172D;
  margin: 0 0 30px;
}

.vce-rows { display: flex; flex-direction: column; gap: 40px; }

.vce-row {
  display: grid;
  grid-template-columns: 276px 1fr 1fr 1fr;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  align-items: stretch;
}

/* coloured service card (col 1) */
.vce-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding: 16px 32px 18px;
  min-height: 136px;
  text-align: center;
}
.vce-card.is-light { color: #ffffff; }
.vce-card.is-dark  { color: #0D172D; }
.vce-card--link { text-decoration: none; cursor: pointer; transition: filter .2s ease, transform .2s ease; }
.vce-card--link:hover { filter: brightness(1.06); transform: translateY(-2px); }
.vce-card-icon { display: flex; align-items: center; justify-content: center; flex: 1 1 auto; }
.vce-card-icon img { max-width: 105px; max-height: 68px; width: auto; height: auto; display: block; }
.vce-card-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  margin-top: auto;
}

/* stat columns */
.vce-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
}
.vce-stat + .vce-stat { border-left: 1px solid #e6e9f0; }
.vce-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #0D172D;
}
.vce-stat--income .vce-stat-num { font-weight: 700; color: #cad63a; }
.vce-stat-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #878b95;
  margin-top: 6px;
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .vce-row { grid-template-columns: 200px 1fr 1fr; }
  .vce-card { grid-row: 1 / span 2; min-height: 0; }
  .vce-stat--income { grid-column: 2 / span 2; border-left: 0; border-top: 1px solid #e6e9f0; }
}
@media (max-width: 620px) {
  .vce-row { grid-template-columns: 1fr; }
  .vce-card { grid-row: auto; min-height: 120px; }
  .vce-stat { border-left: 0 !important; border-top: 1px solid #e6e9f0; padding: 18px 22px; }
  .vce-stat--income { grid-column: auto; }
  .vce-stat-num { font-size: 28px; line-height: 32px; }
}
