.meeting-rule-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
  margin-top:24px;
}

.meeting-rule-card h2{
  margin:3px 0 10px;
  color:var(--navy);
  font-family:Georgia,serif;
}

.meeting-rule-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}

.rule-status{
  display:inline-flex;
  padding:5px 9px;
  border-radius:999px;
  font-size:.76rem;
  font-weight:900;
  white-space:nowrap;
}

.rule-status.active{
  background:#e8f4e8;
  color:#235f27;
}

.rule-status.inactive{
  background:#f2ece3;
  color:#756f67;
}

.rule-summary{
  min-height:42px;
  color:var(--muted);
  line-height:1.5;
}

.meeting-schedule-form{
  max-width:760px;
}

.meeting-schedule-form > p{
  color:var(--muted);
  line-height:1.55;
}

.meeting-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.meeting-schedule-form input[type="time"],
.meeting-schedule-form input[type="month"],
.meeting-schedule-form select{
  min-height:50px;
}

@media(max-width:700px){
  .meeting-fields{
    grid-template-columns:1fr;
  }
}
