:root{
  --az-bg:#f5f7fa;
  --az-card:#fff;
  --az-primary:#0b3d91;
  --az-muted:#6b7280;
}

.az-page{
  max-width:1100px;
  margin:auto;
  padding:20px;
}

.az-hero{
  text-align:center;
  margin-bottom:25px;
}

.az-hero h2{
  margin:0;
  font-size:30px;
}

.az-hero p{
  color:var(--az-muted);
}

.az-search{
  margin-top:15px;
  width:100%;
  max-width:500px;
  padding:12px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:16px;
}

.az-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

.az-card{
  background:var(--az-card);
  padding:18px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  transition:.18s;
}

.az-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(0,0,0,.12);
}

.az-title{
  font-weight:800;
  font-size:18px;
  margin-bottom:6px;
}

.az-category{
  color:var(--az-primary);
  font-weight:700;
  margin-bottom:8px;
}

.az-desc{
  font-size:14px;
  color:#333;
  margin-bottom:10px;
}

.az-phone{
  font-size:14px;
  color:#111;
  font-weight:600;
}

.az-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.az-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:rgba(11,61,145,.10);
  color:var(--az-primary);
  border:1px solid rgba(11,61,145,.18);
}

.az-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.az-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(135deg, #0b3d91, #0a2f72);
  color:#fff;
}

.az-btn--ghost{
  background:#fff;
  color:#111;
}
