.permits-section{
  background:transparent;
}

.permits-container{
  padding-right:0;
}

.permits-titleBlock{
  max-width:1400px;
  margin:0 auto 26px;
  text-align:center;
}

.permits-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:14px;
}

.permit-card{
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:16px;
  box-shadow:0 14px 34px rgba(0,0,0,0.06);
  overflow:hidden;
  padding:18px 18px 14px;
  min-height:230px;
  transition:transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .45s ease;
}

.permit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 56px rgba(0,0,0,0.08);
  border-color:rgba(190,170,118,0.38);
}

.permit-ok{
  position:absolute;
  top:12px;
  right:12px;
  width:24px;
  height:24px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(190,170,118,0.14);
  border:1px solid rgba(190,170,118,0.28);
}

.permit-ok svg{
  width:14px;
  height:14px;
  fill:#BEAA76;
}

.permit-hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding-top:10px;
}

.permit-icon{
  width:62px;
  height:62px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(190,170,118,0.10);
  border:1px solid rgba(190,170,118,0.22);
  box-shadow:0 10px 24px rgba(0,0,0,0.05);
  margin-bottom:12px;
}

.permit-icon svg{
  width:24px;
  height:24px;
  fill:rgba(190,170,118,0.95);
}

.permit-title{
  margin:0 0 10px 0;
  font-size:12px;
  font-weight:900;
  letter-spacing:0.9px;
  color:#111;
  line-height:1.35;
  text-transform:uppercase;
}

.permit-pill{
  display:inline-block;
  padding:5px 10px;
  border-radius:8px;
  font-size:10px;
  font-weight:800;
  letter-spacing:0.6px;
  color:rgba(190,170,118,0.95);
  background:rgba(190,170,118,0.10);
  border:1px solid rgba(190,170,118,0.18);
}

.permit-divider{
  height:1px;
  margin:14px 0 12px;
  background:rgba(0,0,0,0.06);
}

.permit-rows{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:center;
  text-align:center;
  padding-bottom:6px;
}

.permit-row{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.permit-k{
  font-size:10px;
  color:rgba(17,17,17,0.45);
  font-weight:700;
  letter-spacing:0.3px;
}

.permit-v{
  font-size:11px;
  color:#111;
  font-weight:900;
  letter-spacing:0.4px;
}

.permit-muted{
  color:rgba(17,17,17,0.32);
  font-weight:900;
  font-size:10px;
  letter-spacing:1.2px;
}

.permit-bottom-glow{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background:linear-gradient(90deg,
    rgba(190,170,118,0.00),
    rgba(190,170,118,0.55),
    rgba(190,170,118,0.00)
  );
  opacity:0.55;
}

@media(max-width:1024px){

  .permits-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .permit-card{
    min-height:220px;
  }
}