
.staley-schedule{
  display:flex;
  flex-direction:column;
  width:100%;
  background:#fff;
  border:1px solid #dcdcdc;
  box-sizing:border-box;
}

.staley-game-row{
  display:grid;
  grid-template-columns:86px minmax(0,1fr) 360px 120px;
  align-items:center;
  column-gap:12px;
  row-gap:8px;
  padding:16px 18px;
  margin:0;
  width:100%;
  box-sizing:border-box;
  background:#fff;
  border-bottom:1px solid #e3e3e3;
}

.staley-game-row:nth-child(even){background:#f7f7f7}
.staley-game-row:last-child{border-bottom:none}
.staley-game-row.home{border-left:4px solid #00853f}
.staley-game-row.away{border-left:4px solid #5f6368}
.staley-game-row.neutral{border-left:4px solid #bdbdbd}

.staley-game-opponent-logo{
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#f2f2f2;
  border:1px solid #dcdcdc;
  box-sizing:border-box;
}
.staley-game-opponent-logo img{
  display:block;
  width:44px;
  height:44px;
  max-width:44px;
  max-height:44px;
  object-fit:contain;
}

.staley-game-info{
  min-width:0;
  width:100%;
}

.staley-game-datetime{
  font-size:13px;
  line-height:1.3;
  font-weight:600;
  color:#666;
  margin-bottom:4px;
}

.staley-game-matchup{
  margin:0;
  font-size:22px;
  line-height:1.15;
  font-weight:800;
  color:#111;
  text-transform:uppercase;
}

.staley-vsat{
  color:#111;
  font-weight:800;
  margin-right:5px;
}

.staley-game-location{
  text-align:left;
  justify-self:start;
  align-self:center;
  width:100%;
  transform:none !important;
}

.staley-homeaway{
  display:inline-block;
  margin-bottom:5px;
  padding:4px 10px;
  background:#00853f;
  color:#fff;
  font-size:11px;
  line-height:1.2;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.away .staley-homeaway{background:#5f6368}
.neutral .staley-homeaway{background:#bdbdbd;color:#222}

.staley-venue{
  display:block;
  font-size:13px;
  line-height:1.35;
  font-weight:600;
  color:#555;
}

.staley-game-right{
  justify-self:end;
  align-self:center;
  text-align:right;
  white-space:nowrap;
  font-size:15px;
  font-weight:800;
  color:#111;
}

.staley-dual-results{
  justify-self:end;
  align-self:center;
  display:flex;
  gap:24px;
  text-align:center;
  white-space:nowrap;
}

.staley-squad-result{
  display:flex;
  flex-direction:column;
  gap:3px;
  min-width:60px;
}

.staley-squad-label{
  font-size:12px;
  line-height:1.2;
  color:#555;
}

.staley-squad-result strong{
  font-size:18px;
  line-height:1.15;
  color:#111;
}

.staley-schedule-empty{
  padding:18px;
  margin:0;
}

@media(max-width:900px){
  .staley-game-row{
    grid-template-columns:74px minmax(0,1fr) 150px 90px;
    padding:15px 16px;
  }

  .staley-game-matchup{font-size:20px}

  .staley-game-opponent-logo{
    width:58px;
    height:58px;
  }

  .staley-game-opponent-logo img{
    width:40px;
    height:40px;
    max-width:40px;
    max-height:40px;
  }

  .staley-dual-results{gap:14px}
  .staley-squad-result strong{font-size:16px}
}

@media(max-width:700px){
  .staley-game-row{
    grid-template-columns:58px minmax(0,1fr);
    grid-template-areas:
      "logo info"
      "logo location"
      "logo result";
    align-items:start;
    gap:9px 12px;
    padding:14px;
  }

  .staley-game-opponent-logo{
    grid-area:logo;
    width:58px;
    height:58px;
    align-self:start;
  }

  .staley-game-opponent-logo img{
    width:40px;
    height:40px;
    max-width:40px;
    max-height:40px;
  }

  .staley-game-info{
    grid-area:info;
    width:100%;
  }

  .staley-game-datetime{
    font-size:11px;
    line-height:1.25;
    margin-bottom:3px;
  }

  .staley-game-matchup{
    font-size:19px;
    line-height:1.15;
  }

  .staley-game-location{
    grid-area:location;
    width:100%;
    transform:none !important;
    justify-self:start;
  }

  .staley-homeaway{
    margin-bottom:5px;
    padding:4px 9px;
    font-size:10px;
  }

  .staley-venue{
    display:block;
    font-size:12px;
    line-height:1.3;
  }

  .staley-game-right{
    grid-area:result;
    width:100%;
    justify-self:start;
    text-align:left;
    font-size:15px;
    padding-top:1px;
  }

  .staley-dual-results{
    grid-area:result;
    width:100%;
    justify-self:start;
    justify-content:flex-start;
    text-align:left;
    gap:28px;
    padding-top:2px;
  }

  .staley-squad-result{
    min-width:78px;
  }

  .staley-squad-label{
    font-size:11px;
  }

  .staley-squad-result strong{
    font-size:16px;
  }
}

@media(max-width:420px){
  .staley-game-row{
    grid-template-columns:52px minmax(0,1fr);
    gap:8px 10px;
    padding:12px;
  }

  .staley-game-opponent-logo{
    width:52px;
    height:52px;
  }

  .staley-game-opponent-logo img{
    width:36px;
    height:36px;
    max-width:36px;
    max-height:36px;
  }

  .staley-game-datetime{font-size:10px}
  .staley-game-matchup{font-size:18px}
  .staley-dual-results{gap:20px}
}

.staley-game-link{color:inherit;text-decoration:none}.staley-game-link:hover,.staley-game-link:focus{text-decoration:underline}


/* 1.9.37 - OPEN WEEK / BYE schedule entry */
.staley-game-row.staley-open-week{
  background:#f7f7f7;
  border-left:4px solid #b8b8b8;
}

.staley-open-week .staley-open-week-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#9a9a9a;
  font-size:26px;
  font-weight:700;
}

.staley-open-week .staley-open-week-label{
  color:#555;
  font-weight:800;
  letter-spacing:.03em;
  text-decoration:none;
}

.staley-open-week .staley-homeaway,
.staley-open-week .staley-venue{
  color:#888;
}

@media(max-width:700px){
  .staley-game-row.staley-open-week{
    border-left-width:3px;
  }
}


/* 1.9.43 - postseason schedule labels */
.staley-schedule-playoff-label{
  display:flex;
  align-items:center;
  gap:5px;
  margin:0 0 3px;
  color:#555;
  font-size:10px;
  font-weight:800;
  letter-spacing:.035em;
  text-transform:uppercase;
}
.staley-schedule-playoff-label img{
  width:13px;
  height:13px;
  object-fit:contain;
  flex:0 0 13px;
}
@media(max-width:700px){
  .staley-schedule-playoff-label{
    font-size:9px;
  }
}
