.theatre-container {
  background: #262626;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  max-width: 900px;
  margin: 0 auto;
}

.theatre-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #353535;
}

.screening-list {
  list-style: none;
}

.screening-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #353535;
}

.screening-item:last-child {
  border-bottom: none;
}

.screening-date {
  width: 220px;
  font-weight: 500;
}

.screening-movie {
  flex: 1;
}

.screening-movie a {
  color: #6a9a9a;
  text-decoration: none;
}

.screening-movie a:hover {
  text-decoration: underline;
}

.screening-book {
  padding: 6px 12px;
  background: #4a7c7c;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
}

.screening-book:hover {
  background: #3d6868;
}

.screening-note {
  color: #888;
  font-size: 13px;
  font-style: italic;
}

.screening-book .short-text {
  display: none;
}

@media (max-width: 800px) {
  .theatre-container {
    padding: 16px;
  }

  .screening-date {
    width: auto;
    min-width: 80px;
    text-align: left;
    line-height: 1.3;
    margin-right: 10px;
  }

  .screening-date .date-part {
    display: block;
  }

  .screening-date .time-part {
    display: block;
    font-weight: normal;
    font-size: 0.9em;
  }

  .screening-date .at-separator {
    display: none;
  }

  .screening-movie {
    margin-right: 5px;
  }

  .screening-book .full-text {
    display: none;
  }

  .screening-book .short-text {
    display: inline;
  }
}
