/* Channel List / Recipe List */
.channel-list,
.recipe-list {
  margin-top: 10px;
  list-style-type: none;
  padding: 0;
}

.channel-list .channel,
.recipe-list .recipe {
  display: inline-block;
  width: 160px;
  height: 185px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}

.recipe-list .recipe {
  height: 210px;
}

.channel-list .channel:hover,
.recipe-list .recipe:hover {
  background-color: #eee;
}

.channel-list .channel-name,
.recipe-list .channel-name {
  text-align: center;
  font-size: 24px;
  line-height: 0.7;
}

.recipe-list .event-name {
  text-align: center;
  font-size: 18px;
  line-height: 2;
}

/* Event List */
.event-list {
  margin-top: 10px;
  list-style-type: none;
  padding: 0;
}

.event-list .event {
  display: inline-block;
  width: 300px;
  height: 185px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 5px;
  background-color: #fcfcfc;
}

.event-list .event:hover {
  background-color: #eee;
}

.event-list .event-name {
  text-align: center;
  font-size: 24px;
  line-height: 1;
}

.event-list .event-description {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}