/* SCHS teacher guide — safe inherited venue information */
.teacher-venue-profile{
  grid-column:1/-1;
  margin:20px 34px 30px;
  padding:18px 20px;
  border:1px solid #2a7a6e33;
  border-radius:12px;
  background:#fff;
  color:var(--deep);
}
.tvp-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:10px;
}
.tvp-eyebrow{
  color:var(--green);
  font-size:9px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.tvp-venue-name{
  margin-top:3px;
  font-size:15px;
  font-weight:700;
}
.tvp-city{
  margin-top:2px;
  color:#1a2e4a88;
  font-size:11px;
}
.tvp-status-wrap{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:5px;
}
.tvp-status,.tvp-verified{
  display:inline-flex;
  align-items:center;
  min-height:22px;
  padding:3px 8px;
  border-radius:20px;
  font-size:9.5px;
  font-weight:700;
  white-space:nowrap;
}
.tvp-status.ok{
  background:#e5f4ed;
  color:#22614f;
}
.tvp-status.warn{
  background:#fff4d5;
  color:#7d6116;
}
.tvp-verified{
  background:#1a2e4a0b;
  color:#1a2e4a88;
}
.tvp-website{
  display:inline-block;
  margin:0 0 11px;
  color:var(--sky);
  font-size:11px;
  font-weight:700;
  text-decoration:none;
}
.tvp-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin-top:4px;
}
.tvp-field{
  padding:8px 9px;
  border:1px solid #1a2e4a12;
  border-radius:7px;
  background:#1a2e4a04;
}
.tvp-field label{
  display:block;
  margin:0 0 3px;
  color:#1a2e4a77;
  font-size:8.5px;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.tvp-field span{
  display:block;
  color:#1a2e4ad0;
  font-size:10.5px;
  line-height:1.35;
}
.tvp-learning,.tvp-activity-note{
  margin-top:12px;
}
.tvp-learning strong,.tvp-activity-note strong,.tvp-note strong{
  display:block;
  margin-bottom:5px;
  color:#1a2e4acc;
  font-size:9.5px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.6px;
}
.tvp-tags{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
}
.tvp-tags span{
  padding:3px 7px;
  border-radius:20px;
  background:#3a7fa812;
  color:var(--sky);
  font-size:9.5px;
  font-weight:700;
}
.tvp-activity-note{
  padding:9px 10px;
  border-left:3px solid var(--gold);
  background:#c8952a0d;
}
.tvp-activity-note p{
  margin:0;
  color:#1a2e4ab5;
  font-size:11px;
  line-height:1.5;
}
.tvp-notes{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
  margin-top:12px;
}
.tvp-note{
  padding:10px;
  border:1px solid #1a2e4a12;
  border-radius:8px;
  background:#fafbfc;
}
.tvp-note ul{
  margin:0;
  padding-left:17px;
}
.tvp-note li{
  margin:3px 0;
  color:#1a2e4ab5;
  font-size:10.5px;
  line-height:1.4;
}
.tvp-caution{
  margin-top:10px;
  padding:7px 9px;
  border-radius:7px;
  background:#fff7df;
  color:#725c19;
  font-size:10px;
  line-height:1.4;
}
@media(max-width:720px){
  .teacher-venue-profile{margin:16px 20px 24px;padding:14px}
  .tvp-heading{flex-direction:column}
  .tvp-status-wrap{justify-content:flex-start}
  .tvp-grid,.tvp-notes{grid-template-columns:1fr}
}
