.alb-about{
  background:#fff;
  border-radius:12px;
  text-align:center;
}

/* العنوان داخل القسم فقط */
.alb-about .alb-heading-feature{
  display:inline-block;
  color:var(--purple);
  font-weight:800;
  font-size:clamp(1.7rem,3.2vw,3rem);
  border:2px solid var(--purple);
  border-radius:12px;
  padding:.4rem 1rem;
  margin:0 auto 2rem;
}

/* الكارت */
.alb-about .alb-feature-item{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  background:#fff;
  border:2px solid var(--purple);
  border-radius:16px;
  padding:1.5rem;
  color:var(--purple);
  box-shadow:0 6px 14px rgba(0,0,0,.06);
  transition:transform .18s, box-shadow .25s;
  min-height:220px;
  height:auto;
}
.alb-about .alb-feature-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.15);
}

/* الأيقونة */
.alb-about .alb-icon-badge{
  inline-size:56px; block-size:56px;
  border-radius:50%;
  display:grid; place-items:center;
  background:var(--purple);
  color:#fff; font-size:28px;
}

/* جسم الكارت */
.alb-about .alb-feature-body{
  flex:1 1 auto;
  display:flex; flex-direction:column;
  justify-content:center; gap:.6rem;
  text-align:center;
}

.alb-about .alb-feature-title{
  margin:0; color:var(--purple); font-weight:800;
  font-size:clamp(1.1rem,2.2vw,1.4rem);
}

.alb-about .alb-feature-text{
  margin:0; color:#444; line-height:1.8;
}

/* زر داخل القسم فقط (لا يلمس أزرار أخرى بالموقع) */
.alb-about .btn-aqua{
  margin-top:auto;
  align-self:center;
  width:100%;
  max-width:320px;
}

/* موبايل */
@media (max-width:768px){
  .alb-about .alb-feature-item{ min-height:200px; }
  .alb-about .alb-feature-body{ justify-content:flex-start; }
  .alb-about .btn-aqua{ margin-top:1rem; max-width:none; }
}


