/* ========================================
   TV Channels Page — Full channel list
   ======================================== */

.tv-channels-page .tv-channels {
  background: #fff;
  padding-top: 46px;
  padding-bottom: 40px;
}

.tv-channels-page .tv-channels__head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tv-channels-page .tv-channels__lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tv-channels-page .tv-channels__tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tv-channels-page .tv-channels__tab {
  border-radius: 12px;
  border: 2px solid var(--color-orange);
  background: var(--color-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  text-decoration: none;
  font-family: "Magistral", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: opacity 0.2s;
}

.tv-channels-page .tv-channels__tab:hover {
  opacity: 0.85;
  color: #fff;
}

.tv-channels-page .tv-channels__tab--outline {
  background: transparent;
  color: var(--color-orange);
}

.tv-channels-page .tv-channels__tab--outline:hover {
  color: var(--color-orange);
  opacity: 1;
}

.tv-channels-page .tv-channels__columns {
  position: relative;
  min-height: 1px;
}

.tv-channels-page .tv-channels__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tv-channels-page .channel-group__title {
  color: var(--color-orange-light);
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 0;
}

.tv-channels-page .channel-group__items {
  font-size: 14px;
  line-height: 1.6;
  color: #33302e;
}

.tv-channels-page .channel-group__items p {
  margin: 0;
}

.tv-channels-page .channel-group__items .highlight {
  color: var(--color-orange);
}

@media (min-width: 768px) {
  .tv-channels-page .tv-channels {
    padding-top: 56px;
    padding-bottom: 50px;
  }

  .tv-channels-page .tv-channels__lead {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .tv-channels-page .tv-channels__tab {
    padding: 14px 26px;
    font-size: 16px;
  }

  .tv-channels-page .tv-channels__tabs {
    margin-bottom: 50px;
  }

  .tv-channels-page .channel-group__title {
    font-size: 24px;
    margin-bottom: 26px;
  }

  .tv-channels-page .channel-group__items {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .tv-channels-page .tv-channels {
    padding-top: 66px;
    padding-bottom: 60px;
  }

  .tv-channels-page .tv-channels__lead {
    font-size: 20px;
    margin-bottom: 34px;
  }

  .tv-channels-page .tv-channels__tab {
    padding: 16px 30px;
    font-size: 20px;
  }

  .tv-channels-page .tv-channels__tabs {
    max-width: 948px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
  }

  .tv-channels-page .channel-group__title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .tv-channels-page .channel-group__items {
    font-size: 16px;
  }

  .tv-channels-page .tv-channels__column {
    gap: 50px;
  }
}
