.elementor-783 .elementor-element.elementor-element-8b15d0e{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:40px;--padding-bottom:40px;--padding-left:40px;--padding-right:40px;}.elementor-783 .elementor-element.elementor-element-8b15d0e:not(.elementor-motion-effects-element-type-background), .elementor-783 .elementor-element.elementor-element-8b15d0e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #000000 0%, var( --e-global-color-secondary ) 100%);}.elementor-783 .elementor-element.elementor-element-65e3beb{--grid-columns:1;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-783 .elementor-element.elementor-element-8b15d0e{--content-width:900px;}}@media(max-width:1024px){.elementor-783 .elementor-element.elementor-element-65e3beb{--grid-columns:2;}}@media(max-width:767px){.elementor-783 .elementor-element.elementor-element-65e3beb{--grid-columns:1;}}/* Start custom CSS *//* =========================
   Broadcast Schedule (Shortcode)
   Matches markup from [games_for_day] shortcode:
   .schedule-games
   .schedule-game
   .schedule-time
   .schedule-matchup
   .schedule-team
   .schedule-logo-wrap
   .schedule-logo-img
   .schedule-logo-placeholder
   .schedule-name
   .schedule-vs
   ========================= */

/* Overall list container */
.schedule-games {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

/* Each row */
.schedule-game {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.schedule-game:last-child {
  border-bottom: 0;
}

/* Subtle hover */
.schedule-game:hover {
  background: rgba(0,0,0,0.02);
}

/* Time column */
.schedule-time {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  white-space: nowrap;
  opacity: 0.95;
}

/* Matchup layout */
.schedule-matchup {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

/* Team (logo + name) */
.schedule-team {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* Square logo box */
.schedule-logo-wrap {
  width: 86px;
  height: 86px;
  padding: 6px;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* safe now */
  flex: 0 0 auto;
  border: 1px solid rgba(0,0,0,0.08);
}


/* IMPORTANT FIX: let image size naturally */
.schedule-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}
/* Placeholder */
.schedule-logo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0,0,0,0.06);
}

/* Team name */
.schedule-nameclor-name,
.schedule-name {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* VS separator */
.schedule-vs {
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* Optional: empty state */
.schedule-no-games {
  padding: 14px 16px;
  border: 1px dashed rgba(0,0,0,0.15);
  border-radius: 12px;
  background: rgba(0,0,0,0.02);
  font-weight: 600;
  opacity: 0.8;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  .schedule-game {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .schedule-time {
    font-size: 14px;
    opacity: 0.85;
  }

  .schedule-matchup {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .schedule-vs {
    text-align: left;
    width: fit-content;
    padding: 4px 10px;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 999px;
    opacity: 0.7;
  }

  .schedule-logo-wrap {
    width: 42px;
    height: 42px;
    padding: 6px;
  }
}/* End custom CSS */