main {
  padding-top: 80px;
}

#epg-banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

#body-wrapper {
  display: none;
}

#body-wrapper h1 {
  margin: 2rem 0 2.25rem 3.5rem;
  padding-bottom: 0.5rem;
  color: var(--white);
  border-bottom: 0.188rem solid var(--amber-700);
  display: inline-block;
  font-size: 2rem;
  letter-spacing: -0.03rem;
}

/* Channel Categories */
#channel-categories {
  padding: 1.5rem 3.5rem;
  display: flex;
}

.channel-category {
  font-weight: 600;
  margin-right: 2rem;
  cursor: pointer;
}

.channel-category:hover {
  text-decoration: underline 2px;
  text-underline-offset: 0.5rem;
}

.active-category {
  color: var(--amber-700);
  text-decoration: underline 2px;
  text-underline-offset: 0.5rem;
}

/* EPG Table */
#epg-wrapper {
  margin: 1.5rem 1rem 1.5rem 3.5rem;
}

.channel-row {
  display: flex;
  margin-bottom: 1.5rem;
}

.channel-logo {
  min-width: 6.75rem;
  min-height: 6.75rem;
  max-width: 6.75rem;
  background: var(--zinc-800);
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  border: 0.125rem solid transparent;
}

.channel-logo:hover {
  border: 0.125rem solid var(--amber-700);
}

.channel-logo img {
  width: 100%;
}

.channel-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  gap: 1rem;
}

.content {
  background-color: var(--zinc-800);
  height: 7rem;
  width: 100%;
  border: 0.125rem solid var(--zinc-700);
  border-radius: 0.5rem;
  padding: 1rem;
  overflow: hidden;
}

.content h3 {
  padding: 0.5rem 0;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content .time-indicator {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
}

.content-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-details img {
  width: 0.8rem;
}

.content-details span {
  font-size: 0.9rem;
  letter-spacing: -0.02rem;
}

.content:hover {
  border: 0.125rem solid var(--amber-700);
  cursor: pointer;
}

/* Footer */
footer {
  width: 100%;
  padding: 0px 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
}

footer hr {
  margin: 0.5rem 0px 1.25rem;
  border-bottom: 1px solid var(--zinc-700);
  border-radius: 1rem;
  opacity: 0.3;
}

#footer-description {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.875rem;
  margin-bottom: 1rem;
}

#footer-description p {
  max-width: 62.625rem;
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-weight: 300;
}

#footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  place-content: flex-end flex-start;
  text-align: right;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

#footer-logo p {
  width: max-content;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: normal;
}
