/* ============================================
   TALKS / PRESENTATIONS SECTION
   ============================================ */

.talks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.talk-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.talk-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.talk-card__type {
  margin-bottom: var(--space-3);
}

.talk-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.talk-card__event {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}

.talk-card__meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  display: flex;
  gap: var(--space-4);
}

.talk-card__description {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  flex: 1;
  margin-bottom: var(--space-4);
}

.talk-card__links {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
}

@media (max-width: 768px) {
  .talks__grid {
    grid-template-columns: 1fr;
  }
}
