/* ==========================================================
   BUILD 17.0 — Veus compactes + Agenda depurada estil Monocle
   ========================================================== */

.v17-voices,
.v17-events{
  margin-top:48px;
}

.v17-voices{
  padding-top:22px;
  border-top:4px solid var(--rule);
}

.v17-voices-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:20px;
}
.v17-voices-head p,
.v17-events-head p{
  margin:0 0 6px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}
.v17-voices-head h2{
  margin:0;
  font-family:var(--display);
  font-size:clamp(34px,4vw,58px);
  line-height:.98;
  letter-spacing:-.04em;
}
.v17-voices-actions{
  display:flex;
  align-items:center;
  gap:18px;
}
.v17-voices-actions > a,
.v17-events-head > a{
  font-size:14px;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.v17-voices-track{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:0;
}
.v17-voice-card{
  border-right:1px solid var(--rule);
  padding-right:18px;
  margin-right:18px;
  min-width:0;
}
.v17-voice-card:last-child{
  border-right:0;
  padding-right:0;
  margin-right:0;
}
.v17-voice-card a{
  display:block;
}
.v17-voice-image{
  aspect-ratio:4/5;
  overflow:hidden;
  background:#f7f3eb;
  border:1px solid #ddd6c9;
}
.v17-voice-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.v17-voice-body{
  padding-top:12px;
}
.v17-voice-body h3{
  margin:0 0 6px;
  font-family:var(--serif);
  font-size:clamp(22px,1.7vw,31px);
  line-height:.98;
  letter-spacing:-.03em;
}
.v17-voice-body p{
  margin:0;
  font-size:14px;
  line-height:1.28;
  color:var(--muted);
}

.v17-events{
  padding-top:20px;
  border-top:4px solid var(--rule);
}
.v17-events-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:16px;
}
.v17-events-head h2{
  margin:0;
  font-family:var(--display);
  font-size:clamp(38px,4.4vw,62px);
  line-height:.96;
  letter-spacing:-.04em;
}
.v17-events-panel{
  background:#f0ecdf;
  padding:18px 28px 8px;
}
.v17-event-row{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(210px,.8fr);
  gap:24px;
  align-items:center;
  padding:16px 0;
  border-top:1px solid rgba(17,17,17,.62);
}
.v17-event-row:first-child{
  border-top:0;
  padding-top:0;
}
.v17-event-copy{
  min-width:0;
}
.v17-event-copy .eyebrow{
  margin:0 0 8px;
  color:var(--agenda);
}
.v17-event-copy h3{
  margin:0;
  font-family:var(--serif);
  font-size:clamp(26px,2.8vw,44px);
  line-height:1;
  letter-spacing:-.03em;
}
.v17-event-excerpt{
  margin:10px 0 0;
  color:var(--ink);
  font-size:16px;
  line-height:1.35;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}
.v17-event-meta{
  margin:10px 0 0;
  font-size:14px;
  font-weight:700;
  color:var(--agenda);
}
.v17-event-image{
  display:block;
  overflow:hidden;
  border:1px solid #d7d1c4;
  background:#f7f3eb;
  aspect-ratio:4/3;
}
.v17-event-image img,
.v17-event-image picture{
  width:100%;
  height:100%;
}
.v17-event-image img{
  object-fit:cover;
}

@media (max-width:980px){
  .v17-voices-track{
    display:grid;
    grid-template-columns:none;
    grid-auto-flow:column;
    grid-auto-columns:minmax(150px,24vw);
    gap:14px;
    overflow-x:auto;
    overflow-y:hidden;
    padding-bottom:8px;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .v17-voices-track::-webkit-scrollbar{display:none}
  .v17-voice-card{
    border-right:0;
    padding-right:0;
    margin-right:0;
    scroll-snap-align:start;
  }
}

@media (max-width:760px){
  .v17-voices,
  .v17-events{
    margin-top:34px;
  }
  .v17-voices-head,
  .v17-events-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .v17-voices-actions{
    width:100%;
    justify-content:space-between;
  }
  .v17-voices-track{
    grid-auto-columns:minmax(168px,46vw);
  }
  .v17-voice-image{
    aspect-ratio:3/4;
  }
  .v17-voice-body h3{
    font-size:22px;
  }
  .v17-voice-body p{
    font-size:13px;
  }
  .v17-events-panel{
    padding:12px 16px 2px;
  }
  .v17-event-row{
    grid-template-columns:minmax(0,1fr) 34%;
    gap:14px;
    padding:14px 0;
    align-items:start;
  }
  .v17-event-copy h3{
    font-size:20px;
    line-height:1.04;
  }
  .v17-event-excerpt{
    font-size:13px;
    margin-top:7px;
    -webkit-line-clamp:2;
  }
  .v17-event-meta{
    font-size:12px;
    margin-top:8px;
  }
  .v17-event-image{
    aspect-ratio:4/3;
  }
}
