.content-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e7;
}

.entry-date {
  font-size: 0.75rem;
  text-align: center;
  color: #5c5c5c;
  background-color: #f5f5f7;
  display: flex;
  flex-direction: column;
  width: 70px;
  height: 74px;
  border-radius: 6px;
  overflow: hidden;
}
.entry-date > .year {
  color: #fff;
  padding: 4px 0;
  background-color: #02449b;
}
.entry-date > .day {
  font-size: 24px;
  font-weight: 600;
}

.entry-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.entry-title h2 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}

.entry-title-inner .location {
  font-size: 0.875rem;
  color: #999;
}

.entry-title:hover {
  color: #02449b;
}
