.card {
  font-family: sans-serif;
  box-sizing: border-box;

  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.card {
  background-color: #ffffff;
  border: 2px solid #44CBE1;
  border-radius: 24px;
  padding: 24px;
}

.card.collapsed {
  background-color: transparent;
  border: 1px solid #D2D5DB;
  border-radius: 100px;
  padding: 10px 10px 10px 24px;
}

.card.collapsed .description {
  display: none;
}

.card-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center; 
}

.text-section {
  overflow: hidden;
}

.title-row {
  font-size: 20px;
  font-weight: 700;
  
  white-space: normal; 
}

.card.collapsed .title-row {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.description {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
}

.champion {
  color: #44CBE1;
  margin-right: 12px;
}

.event {
  color: #003EB3;
}

.icon-button {
  flex-shrink: 0;
  display: flex;
}