/* css styles */




/* Charlas */
.talk-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.talk-card {
  border-left: 3px solid #4a90d9;
  padding: 0.8rem 1.2rem;
  background: #f8f9fa;
  border-radius: 0 6px 6px 0;
  transition: background 0.2s;
}

.talk-card:hover {
  background: #eef3fb;
}

.talk-meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.3rem;
}

.talk-event {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4a90d9;
}

.talk-year {
  font-size: 0.78rem;
  color: #888;
}

.talk-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  display: block;
  line-height: 1.4;
}

.talk-title:hover {
  color: #4a90d9;
  text-decoration: underline;
}

.talk-desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0.3rem 0 0 0;
}
