.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 1rem;
  align-items: center;
  padding: 0.8rem 1.1rem;
}

.logo {
  justify-self: start;
  font-size: 1.3rem;
}

.search-bar {
  max-width: 560px;
  justify-self: center;
}

.header-actions {
  justify-self: end;
  gap: 0.6rem;
}

#searchInput {
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
}

.home,
main > section {
  padding: 1.25rem;
}

.section-title {
  font-size: 1.5rem;
}

.teasers-wrapper {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.shows-wrapper {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.show-preview {
  width: 85%;
  max-width: 1000px;
  max-height: 90vh;
}
.card-preview-bg {
  height: 240px;
}
.preview-header {
  padding: 0.9rem 1.1rem;
}
.preview-body {
  padding: 0 1.1rem 1.1rem;
}

.pagination {
  gap: 0.6rem;
}
.pagination-controls .button {
  font-size: 0.9rem;
  padding: 0.45rem 0.8rem;
}
.page-indicator {
  margin: 0 0.2rem;
  min-width: 90px;
  text-align: center;
}

.button {
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
}
