.antares-schedule-wrap {
  font-family: Montserrat, sans-serif;
}

.antares-date-pill {
  display: inline-block;
  background: #0b67c2;
  color: #fff;
  padding: 16px 26px;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: lowercase;
}

.antares-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.antares-grid-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.antares-grid-count-1 {
  grid-template-columns: 1fr;
}

.antares-channel-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  padding: 34px;
  height: 100%;
  box-sizing: border-box;
}

.antares-channel-card__inner,
.antares-channel-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.antares-channel-card__footer {
  margin-top: auto;
  padding-top: 18px;
}

.antares-channel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  min-height: 96px;
}

.antares-channel-logo {
  /*max-width: 140px;*/
  max-height: 124px;
  object-fit: contain;
}

.antares-channel-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 92px;
  background: #f3f6fa;
  border-radius: 12px;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  color: #1f2d3d;
}

.antares-live-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0b67c2;
  color: #fff !important;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.antares-live-arrow {
  font-size: 20px;
  line-height: 1;
}

.antares-live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1be11b;
  display: inline-block;
  flex: 0 0 12px;
  box-shadow: 0 0 0 4px rgba(27, 225, 27, 0.15);
}

.antares-live-dot.small {
  width: 8px;
  height: 8px;
  flex-basis: 8px;
  box-shadow: none;
  margin-right: 6px;
}

.antares-schedule-heading {
  margin: 0 0 16px;
  color: #233857;
  font-size: 22px;
  font-weight: 700;
}

.antares-program-list-wrap {
  position: relative;
  padding: 16px;
  background-color: #eeeeee7d;
  border-radius: 16px;
}

.antares-program-list-wrap.is-collapsed {
  max-height: 510px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(35, 56, 87, 0.22) transparent;
  padding: 16px;
  background-color: #eeeeee7d;
  border-radius: 16px;
}

.antares-program-list-wrap.is-collapsed::-webkit-scrollbar {
  width: 6px;
}

.antares-program-list-wrap.is-collapsed::-webkit-scrollbar-thumb {
  background: rgba(35, 56, 87, 0.22);
  border-radius: 999px;
}

.antares-program-list-wrap.is-collapsed::before,
.antares-program-list-wrap.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 64px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
  z-index: 2;
}

.antares-program-list-wrap.is-collapsed::before {
  top: 0;
  background: linear-gradient(to bottom, #fff 18%, rgba(255, 255, 255, 0));
}

.antares-program-list-wrap.is-collapsed::after {
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 82%);
}

.antares-program-list-wrap.is-collapsed.has-top-fade::before,
.antares-program-list-wrap.is-collapsed.has-bottom-fade::after {
  opacity: 1;
}

.antares-program-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e3;
}

.antares-program-time,
.antares-program-name {
  color: #222;
  font-size: 16px;
}

.antares-program-name {
  font-weight: 500;
}

.antares-program-item.is-current .antares-program-name {
  font-weight: 700;
}

.antares-program-status {
  display: inline-flex;
  align-items: center;
  color: #233857;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.antares-toggle-schedule {
  color: #0b67c2;
  font-weight: 700;
  text-decoration: none;
}

.antares-toggle-schedule:hover,
.antares-toggle-schedule:focus-visible {
  text-decoration: underline;
  outline: none;
}

.antares-empty {
  padding: 14px 0;
  color: #666;
}

@media (max-width: 980px) {
  .antares-grid-count-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .antares-channel-card {
    padding: 22px;
  }

  .antares-channel-top {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

  .antares-schedule-heading {
    font-size: 24px;
  }

  .antares-program-list-wrap.is-collapsed {
    max-height: 470px;
  }

  .antares-program-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}



/* Remove fade superior e inferior */
.antares-program-list-wrap::after,
.antares-program-list-wrap::before {
  display: none !important;
}

/* Garante que não haja máscara (caso tenha sido usada) */
.antares-program-list-wrap {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}