.prev-shows {
  max-height: 260px;
  position: relative;
  overflow: hidden;
}
.prev-shows .read-more { 
  position: absolute; 
  bottom: 0; 
  left: 0;
  width: 100%; 
  text-align: center; 
  margin: 0; padding: 30px 0; 
	
  /* "transparent" only works here because == rgba(0,0,0,0) */
  background-image: linear-gradient(to bottom, transparent, grey);
}

body {
    font-family: Arial, sans-serif;
}

.accordion-button {
    background-color: #f1f1f1;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-top: 5px;
}

.accordion-button:hover {
    background-color: #ddd;
}

.accordion-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f9f9f9;
}

.accordion-content ul {
    list-style-type: none;
    padding-left: 0;
}

.accordion-content ul li {
    padding: 5px 0;
}

