.weather-panel{
  margin-bottom:12px;
  padding:10px 12px;
}
.weather-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  align-items:stretch;
  min-width:0;
}
.weather-location{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:2px 8px 2px 0;
}
.weather-location-title{
  margin:0 0 3px;
  font-size:18px;
  color:var(--navy);
}
.weather-location-suburb{
  font-size:14px;
}
.weather-location-address{
  margin-top:2px;
  color:var(--muted);
  line-height:1.25;
  overflow-wrap:anywhere;
}
.weather-day-card{
  min-width:0;
  min-height:0;
  padding:8px 10px;
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  grid-template-rows:auto auto auto;
  column-gap:8px;
  row-gap:2px;
  align-items:start;
  text-align:left;
}
.weather-day-icon{
  grid-column:1;
  grid-row:1 / span 3;
  align-self:center;
  font-size:36px;
  line-height:1;
}
.weather-day-card .weather-day-title{
  grid-column:2;
  margin:0;
  display:block;
  min-width:0;
  font-size:15px;
  line-height:1.15;
  color:var(--ink);
}
.weather-day-card .weather-day-primary{
  grid-column:2;
  display:block;
  min-width:0;
  font-size:12px;
  line-height:1.25;
  color:var(--muted);
}
.weather-day-card .weather-day-secondary{
  grid-column:2;
  display:block;
  min-width:0;
  font-size:11px;
  line-height:1.25;
  color:var(--muted);
}
.job-address-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:4px;
}
.job-address-row p{
  margin:0;
  min-width:220px;
  flex:1;
  color:var(--muted);
}
.job-map-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.job-map-actions .button{
  white-space:nowrap;
}
.site-requirement-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:9px;
  margin-top:12px;
}
.site-requirement{
  display:grid;
  gap:3px;
  min-width:0;
  padding:9px 11px;
  border:1px solid var(--line);
  border-radius:9px;
  background:#f8fafb;
}
.site-requirement span{
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.site-requirement strong{
  color:var(--navy);
  overflow-wrap:anywhere;
}
.site-requirement.is-required{
  border-left:5px solid #e2a100;
  background:#fff9df;
}
.site-requirement.is-not-required{
  border-left:5px solid #19a974;
  background:#effaf5;
}
.site-requirement.site-lockbox{
  border-left:5px solid #4a90b8;
  background:var(--blue);
}
.dispatch-site-access{
  margin:0 0 14px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#f8fbfc;
}
.dispatch-site-access-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.dispatch-site-access h3{
  margin:0;
  color:var(--navy);
}
.job-action-cell{
  display:flex;
  align-items:center;
  gap:7px;
  flex-wrap:wrap;
}
.job-site-form-note{
  margin:0 0 12px;
  padding:9px 11px;
  border-radius:8px;
  background:var(--blue);
  color:var(--navy);
  font-size:12px;
}
@media(max-width:1100px){
  .site-requirement-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:1050px){
  .weather-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .weather-location{
    grid-column:span 2;
  }
}
@media(max-width:680px){
  .job-address-row{
    align-items:flex-start;
  }
  .job-map-actions{
    width:100%;
  }
  .job-map-actions .button{
    flex:1;
  }
  .site-requirement-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:600px){
  .weather-strip{
    grid-template-columns:1fr;
  }
  .weather-location{
    grid-column:auto;
  }
  .weather-day-card{
    grid-template-columns:38px minmax(0,1fr);
  }
  .weather-day-icon{
    font-size:32px;
  }
}
