/* ── Speakers Page ─────────────────────────────────────────── */
.speakers-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 2rem;
}
.speaker-tile { display: flex; flex-direction: column; }
.speaker-tile-photo {
  background: linear-gradient(135deg, var(--green), var(--charcoal));
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 1.5rem;
  position: relative;
}
.speaker-tile-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.speaker-tile-photo img {
  width: 120px; height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.speaker-tile-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.speaker-name { font-size: 1.25rem; margin-bottom: 0; }
.speaker-meta { font-size: .85rem; color: var(--green); font-weight: 700; }
.speaker-company { color: #888; font-weight: 600; }
.talk-title { background: var(--warm-gray); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: .75rem 1rem; font-size: .9rem; font-weight: 700; color: var(--charcoal); line-height: 1.4; }
.talk-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.speaker-bio { font-size: .9rem; line-height: 1.65; color: #555; flex: 1; }
.speaker-bio p { margin-bottom: .7rem; }
.deck-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 700; color: var(--green); text-decoration: none; margin-top: auto; padding-top: .5rem; }
.deck-link:hover { text-decoration: underline; }

@media(max-width:700px) { .speakers-full-grid { grid-template-columns: 1fr; } }
