
.az-custom-section{
padding:60px 20px;
font-family:Arial,Helvetica,sans-serif;
}

.az-custom-container{
max-width:1180px;
margin:auto;
}

.az-custom-heading{
max-width:900px;
margin-bottom:50px;
}

.az-custom-eyebrow{
display:inline-block;
margin-bottom:12px;
font-size:13px;
font-weight:800;
letter-spacing:2px;
text-transform:uppercase;
color:#198da8;
}

.az-custom-heading h2{
margin:0 0 16px;
font-size:clamp(30px,4vw,48px);
font-weight:800;
line-height:1.15;
color:#101820;
}

.az-custom-heading p{
margin:0;
font-size:16px;
line-height:1.8;
color:#5f6b76;
}

/* Grid */

.az-custom-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.az-custom-card{
padding:28px;
background:#fff;
border-radius:22px;
border:1px solid rgba(16,24,32,.08);
box-shadow:0 14px 28px rgba(16,24,32,.08);
transition:.3s;
}

.az-custom-card:hover{
transform:translateY(-6px) scale(1.015);
border-color:rgba(25,141,168,.25);
box-shadow:0 24px 50px rgba(16,24,32,.12);
}

.az-custom-icon{
width:44px;
height:44px;
border-radius:14px;
background:#198da8;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:13px;
font-weight:800;
margin-bottom:18px;
}

.az-custom-card h3{
margin:0 0 10px;
font-size:18px;
font-weight:800;
color:#101820;
}

.az-custom-card p{
margin:0;
font-size:14px;
line-height:1.7;
color:#5f6b76;
}

.az-custom-card-wide{
grid-column:span 3;
background:linear-gradient(135deg,#f3fafc,#ffffff);
}

.az-custom-tags{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:20px;
}

.az-custom-tags span{
padding:10px 14px;
border-radius:999px;
background:rgba(25,141,168,.08);
border:1px solid rgba(25,141,168,.16);
font-size:13px;
font-weight:700;
color:#315b65;
}

/* Responsive */

@media(max-width:1024px){

.az-custom-grid{
grid-template-columns:repeat(2,1fr);
}

.az-custom-card-wide{
grid-column:span 2;
}

}

@media(max-width:768px){

.az-custom-grid{
grid-template-columns:1fr;
}

.az-custom-card-wide{
grid-column:span 1;
}

.az-custom-section{
padding:40px 16px;
}

.az-custom-card{
padding:24px;
border-radius:20px;
}

}

