.text-center {
text-align:center;
}

.regimg {
width:100%;
}

.mtop0{margin-top: 0px;}
.mtop5{margin-top: 5px;}
.mtop10{margin-top: 10px;}
.mtop15{margin-top: 15px;}
.mtop20{margin-top: 20px;}
.mtop30{margin-top: 30px;}
.mtop40{margin-top: 40px;}
.mtop50{margin-top: 50px;}
.mtop60{margin-top: 60px;}
.mtop70{margin-top: 70px;}
.mtop80{margin-top: 80px;}
.mtop90{margin-top: 90px;}
.mtop100{margin-top: 100px;}

.mbot0{margin-bottom: 0px;}
.mbot5{margin-bottom: 5px;}
.mbot10{margin-bottom: 10px;}
.mbot20{margin-bottom: 20px;}
.mbot30{margin-bottom: 30px;}
.mbot40{margin-bottom: 40px;}
.mbot50{margin-bottom: 50px;}
.mbot60{margin-bottom: 60px;}
.mbot70{margin-bottom: 70px;}
.mbot80{margin-bottom: 80px;}
.mbot90{margin-bottom: 90px;}
.mbot100{margin-bottom: 100px;}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #e5e5e5;
}

/* Adult Health */
.callout .content-list {
  margin: 0.25rem 0 0.75rem 1.25rem;
  padding: 0;
}

.callout .content-list li {
  margin-bottom: 0.2rem;
}

.ah-kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
.ah-kit-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
@media (max-width: 639px) {
  .ah-kit-grid { grid-template-columns: 1fr; }
}

/* Child Health */
.benefit-grid {
  list-style: none;
  margin: 0.5rem 0 0.75rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1rem;
}

.benefit-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.benefit-grid li i {
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ch-wic-logo {
  display: inline-block;
  vertical-align: middle;
  max-width: 120px;
  height: auto;
  margin-right: 0.5rem;
}
.ch-lactation-link {
  display: block;
}

/* School Health */
.school-callout-wrap {
  margin-bottom: 1.5rem;
}

.school-logo {
  width: 110px;
  height: auto;
  margin: 0 0 0.75rem 1.25rem;
  float: right;
}

@media (max-width: 480px) {
  .school-logo {
    float: none;
    display: block;
    margin: 0 auto 1rem;
  }
}

/* Staff Directory — prefixed sd- to avoid conflicts */
.sd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
@media (max-width: 639px) {
  .sd-grid { grid-template-columns: 1fr; }
}

.sd-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sd-avatar {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
}
.sd-avatar-name {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.sd-body {
  padding: 1rem 1.1rem;
  flex: 1;
}

.sd-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.sd-title {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.sd-contact {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.6rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sd-contact i {
  color: var(--blue);
  font-size: 0.8rem;
}
