/* Inter everywhere in this section */
.mis, .mis *{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.mis{
  background: #ffffff;
  padding: 90px 0 80px;
}

.mis-wrap{
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}

.mis-title{
  text-align: center;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 46px;
}

/* grid = 3 columns, then responsive */
.mis-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* card */
.mis-card{
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  padding: 22px 22px 20px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  min-height: 150px;
}

.mis-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.10);
  color: #ef4444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mis-card-title{
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}

.mis-card-text{
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.65);
  margin: 0;
  max-width: 290px;
}

/* make the last row look like 2 cards centered */
.mis-card:nth-child(4){
  grid-column: 1 / span 1;
}
.mis-card:nth-child(5){
  grid-column: 2 / span 1;
}

/* responsive */
@media (max-width: 980px){
  .mis-title{ font-size: 32px; }
  .mis-grid{ grid-template-columns: repeat(2, 1fr); }
  .mis-card:nth-child(4),
  .mis-card:nth-child(5){
    grid-column: auto;
  }
}

@media (max-width: 560px){
  .mis{ padding: 70px 0 60px; }
  .mis-title{ font-size: 26px; }
  .mis-grid{ grid-template-columns: 1fr; }
}
