
/* ABOUT US */
.about-page .concerts-header{
  max-width:900px;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:35px;
}

.about-card{
  background:#1b1b2f;
  border-radius:28px;
  padding:34px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 18px 40px rgba(0,0,0,0.28);
  min-height:280px;
}

.about-avatar{
  width:70px;
  height:70px;
  border-radius:50%;
  background:lightblue;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:900;
  margin-bottom:22px;
}

.about-card h3{
  font-size:30px;
  margin-bottom:14px;
}

.about-card p{
  color:#cfcfcf;
  line-height:1.7;
}