
/* ---- section wrapper ---- */
.vot-section{
  padding: clamp(64px,8vw,104px) 0;
  background: #f1f4f8;
}

/* ---- section header ---- */
.vot-head{
  text-align:center;
  max-width:680px;
  margin:0 auto clamp(36px,5vw,64px);
}
.vot-eyebrow{
  font-family:"IBM Plex Mono",monospace;
  font-size:12px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--blue);display:inline-flex;align-items:center;gap:10px;
}
.vot-eyebrow::before{content:"[";color:var(--amber);font-weight:700}
.vot-eyebrow::after{content:"]";color:var(--amber);font-weight:700}
.vot-title{
  font-family:"Archivo",sans-serif;font-weight:800;text-transform:uppercase;
  font-size:clamp(28px,4vw,46px);color:var(--navy-2);line-height:1.05;
  margin:16px 0 14px;letter-spacing:-.01em;
}
.vot-sub{
  color:var(--steel);font-size:16.5px;line-height:1.6;
}
.vot-rule{width:54px;height:3px;background:var(--amber);margin:16px auto 0;border-radius:2px}

/* ---- filter tabs ---- */
.vot-filters{
  display:flex;flex-wrap:wrap;justify-content:center;gap:10px;
  margin-bottom:clamp(32px,4vw,52px);
}
.vot-tab{
  font-family:"IBM Plex Mono",monospace;font-size:11.5px;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;
  padding:9px 20px;border:1.5px solid var(--line);border-radius:40px;
  background:#fff;color:var(--steel);cursor:pointer;transition:.2s;
}
.vot-tab:hover,.vot-tab.active{
  background:var(--blue);color:#fff;border-color:var(--blue);
}
.vot-tab.active{box-shadow:0 6px 18px rgba(16,76,141,.28)}

/* ---- grid ---- */
.vot-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media(max-width:900px){.vot-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:540px){.vot-grid{grid-template-columns:1fr}}

/* ---- card ---- */
.vot-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:26px 22px;
  display:flex;
  align-items:center;
  gap:20px;
  transition:.25s var(--ease);
  position:relative;
  overflow:hidden;
}
.vot-card::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:var(--amber);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s var(--ease);
}
.vot-card:hover{
  border-color:rgba(16,76,141,.22);
  box-shadow:0 18px 44px rgba(10,27,51,.1);
  transform:translateY(-3px);
}
.vot-card:hover::before{transform:scaleX(1)}

/* avatar */
.vot-av{
  width:76px;height:76px;
  border-radius:50%;
  flex:0 0 76px;
  background:linear-gradient(135deg,#e6edf8,#c8d6eb);
  overflow:hidden;
  border:3px solid #fff;
  box-shadow:0 4px 16px rgba(16,76,141,.16);
  position:relative;
}
.vot-av img{
  width:100%;height:100%;
  object-fit:cover;
  /* greyscale matching reference image style */
  filter:grayscale(100%);
  transition:filter .3s;
}
.vot-card:hover .vot-av img{filter:grayscale(0%)}

/* avatar placeholder SVG for when no real photo exists */
.vot-av-ph{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--navy-2),var(--blue));
  color:#fff;
  font-family:"Archivo",sans-serif;font-weight:800;font-size:22px;letter-spacing:.02em;
}

/* info */
.vot-info{flex:1;min-width:0}
.vot-role{
  font-family:"IBM Plex Mono",monospace;
  font-size:10.5px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;
  color:var(--steel);line-height:1.4;margin-bottom:5px;
}
.vot-name{
  font-family:"Archivo",sans-serif;font-weight:800;font-size:17px;
  color:var(--navy-2);margin-bottom:10px;line-height:1.1;
}
.vot-phone{
  display:flex;align-items:center;gap:7px;
  font-size:13.5px;color:#2e6eb5;font-weight:600;
  margin-bottom:10px;letter-spacing:.01em;
  font-family:"IBM Plex Mono",monospace;
}
.vot-phone svg{width:14px;height:14px;flex:0 0 14px;stroke:var(--amber);stroke-width:2.2;fill:none}

/* mail button — green pill matching reference image */
.vot-mail{
  display:inline-flex;align-items:center;gap:8px;
  font-family:"Archivo",sans-serif;font-weight:700;font-size:12px;
  letter-spacing:.06em;text-transform:uppercase;
  padding:8px 16px;border-radius:4px;
  background:#104c8d;color:#fff;
  border:0;cursor:pointer;transition:.22s var(--ease);
  text-decoration:none;
}
.vot-mail:hover{background:#104c8d;transform:translateY(-1px);box-shadow:0 6px 16px rgba(46,125,50,.32)}
.vot-mail .vot-arr{
  width:22px;height:22px;border-radius:3px;
  background:rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
}

/* ---- CTA band ---- */
.vot-cta-band{
  margin-top:clamp(48px,6vw,72px);
  text-align:center;
  padding:48px 32px;
  background:var(--navy-2);
  border-radius:12px;
  position:relative;overflow:hidden;
}
.vot-cta-band::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.18;
  background-image:linear-gradient(rgba(255,255,255,.3) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.3) 1px,transparent 1px);
  background-size:48px 48px;
}
.vot-cta-band h3{
  font-family:"Archivo",sans-serif;font-weight:800;font-size:clamp(22px,3vw,32px);
  color:#fff;text-transform:uppercase;position:relative;z-index:1;margin-bottom:12px;
}
.vot-cta-band p{
  color:#b9c7dd;font-size:16px;max-width:50ch;margin:0 auto 28px;
  position:relative;z-index:1;
}
.vot-cta-band .vot-cta-btns{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
  position:relative;z-index:1;
}

/* ---- hidden cards (filter) ---- */
.vot-card.vot-hidden{display:none}

@media(max-width:540px){
  .vot-card{flex-direction:column;text-align:center;align-items:center}
  .vot-mail{width:100%;justify-content:center}
}
@media(prefers-reduced-motion:reduce){
  .vot-card,.vot-card::before,.vot-av img{transition:none}
  .vot-card:hover{transform:none}
}
