/* =========================
   OHS IMPROVEMENTS
========================= */

.kurt-ohs-image img{
  width:100%;
  max-width:420px;
  display:block;
  margin:0 auto;
}

.kurt-ohs-cards{
  margin-top:100px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
  text-align:center;
}

.ohs-card{
  padding:40px 30px;
  border:1px solid #e5e5e5;
  border-radius:6px;
  transition:.3s ease;
  background:#fff;
}

.ohs-card:hover{
  border-color:#0fa3b1;
  transform:translateY(-6px);
}

.ohs-card h3{
  font-size:18px;
  margin-bottom:14px;
  color:#111;
}

.ohs-card p{
  font-size:14px;
  line-height:1.9;
  color:#555;
}

/* MOBILE */
@media(max-width:900px){
  .kurt-ohs-cards{
    grid-template-columns:1fr;
    gap:30px;
  }
}
