/* --------------------------------- */
.crosstalk__list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: min(2vw, 40px);
  list-style: none;
}
.crosstalk__list a {
  width: 100%;
  height: clamp(240px, 100px + 30vw, 540px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  gap: 10px;
  border-radius: 5px clamp(120px, 50px + 15vw, 270px) clamp(120px, 50px + 15vw, 270px) 5px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  color: var(--white-color);
}
.crosstalk__image {
  width: 100%;
  height: 100%;
  border-radius: 5px clamp(120px, 50px + 15vw, 270px) clamp(120px, 50px + 15vw, 270px) 5px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.crosstalk__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
a:hover .crosstalk__image img {
  transform: scale3d(1.1, 1.1, 1.1);
}

.crosstalk__title, .crosstalk__category {
  padding-inline: 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(15px);
  transition: all 300ms ease;
}
a:hover .crosstalk__title, a:hover .crosstalk__category {
  background-color: rgba(0, 0, 0, 0.5);
}

.crosstalk__title {
  font-size: clamp(1.5rem, 1.242rem + 0.96vw, 2.25rem);
  font-weight: 700;
}
.crosstalk__category {
  font-size: clamp(1rem, 0.914rem + 0.32vw, 1.25rem);
  font-weight: 500;
}