.elfy-vt-wrap{
  padding: 70px 0;
  background: #3A7CAA;
  color: #fff;
}

.elfy-vt-inner{
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 0 60px;
}

.elfy-vt-head{
  text-align: center;
  margin-bottom: 44px;
}

.elfy-vt-title{
  font-family: "Instrument Serif", serif !important;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: .04em;
}

.elfy-vt-subtitle{
  margin-top: 10px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  opacity: .95;
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- DESKTOP HORIZONTAL (FIXED) ---------- */
.elfy-vt-desktop{ display:block; }
.elfy-vt-mobile{ display:none; }

.elfy-vt-h{
  position: relative;
  /* IMPORTANT: reserve space for top + bottom text */
  padding: 210px 0 210px;
  display: grid;
  grid-template-columns: repeat(var(--elfyCols, 6), minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

/* Center line */
.elfy-vt-line{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.55);
  transform: translateY(-50%);
}

/* Each node column */
.elfy-vt-h-item{
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 1px;
}

/* Icon circle */
.elfy-vt-node{
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  z-index: 2;
}

.elfy-vt-node i,
.elfy-vt-node svg{
  width: 14px;
  /*height: 26px;*/
  color: #0B4A65;
  fill: #0B4A65;
}

/* Connector line from node to content */
.elfy-vt-connector{
  position:absolute;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,.55);
  transform: translateX(-50%);
  z-index: 1;
}

/* Content block */
.elfy-vt-content{
  position:absolute;
  width: 240px;          /* fixed, like your design */
  max-width: 240px;
  text-align: center;
}

/* TOP items */
.elfy-vt-h-item.is-top .elfy-vt-content{
  top: -20px;
  transform: translate(-50%, -100%);
  left: 50%;
}
.elfy-vt-h-item.is-top .elfy-vt-connector{
  top: 50%;
  height: 50px;          /* more spacing */
  transform: translate(-50%, -100%);
}

/* BOTTOM items */
.elfy-vt-h-item.is-bottom .elfy-vt-content{
  bottom: -20px;
  transform: translate(-50%, 100%);
  left: 50%;
}
.elfy-vt-h-item.is-bottom .elfy-vt-connector{
  top: 50%;
  height: 50px;
  transform: translate(-50%, 0);
}

/* Typography */
.elfy-vt-hname{
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.elfy-vt-htxt{
  font-size: 14px;
  line-height: 1.6;
  opacity: .92;
}


/* ---------- MOBILE VERTICAL ---------- */
.elfy-vt-v{
  position: relative;
  padding: 10px 0 0;
}

.elfy-vt-vline{
  position:absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.55);
}

.elfy-vt-v-item{
  position: relative;
  display:flex;
  gap: 16px;
  padding: 18px 0;
  align-items:flex-start;
}

.elfy-vt-v-item .elfy-vt-node{
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.elfy-vt-vcontent{
  padding-top: 4px;
}

@media (max-width: 1024px){
  .elfy-vt-h{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 70px 0 40px;
    gap: 18px;
  }
  .elfy-vt-content{ width: 210px; max-width: 210px; }
}

@media (max-width: 767px){
  .elfy-vt-title{ font-size: 36px; }
  .elfy-vt-desktop{ display: none; }
  .elfy-vt-mobile{ display: block; }
}
