.talks-list {
  list-style-type: none;
  padding: 0;
  margin: 2rem 0;
}
.talk-tile {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  margin: 0;
}
.talk-image {
  flex-shrink: 0;
  width: 240px;
  order: 1;
  position: relative;
}
.talk-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.talk-image-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.talk-image-overlay {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 4px 6px;
  border-radius: 3px;
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.talk-image-link:hover .talk-image-overlay {
  opacity: 1;
}
.talk-details {
  flex: 1;
  order: 2;
}
.talk-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
  font-family: var(--header-font-family);
  line-height: 1.3;
  color: var(--grey-dark);
}
.talk-link {
  color: var(--grey-dark);
  text-decoration: none;
}
.talk-link:hover {
  text-decoration: underline;
  color: var(--primary);
}
.talk-meta {
  margin-bottom: 1rem;
}
.talk-detail {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.7);
}
.talk-detail a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}
.talk-meta i,
.talk-meta svg {
  display: inline-block;
  width: 1.5rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
  color: var(--grey-default);
  text-align: center;
}
@media (max-width: 600px) {
  .talk-tile {
    gap: 1rem;
  }
  .talk-image {
    width: 35%;
    max-width: 180px;
    min-width: 120px;
  }
  .talk-links {
    gap: 0.5rem;
  }
}
