
/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--primary-blue);
  font-weight: 800;
}

.section-title span {
  display: block;
  width: 70px;
  height: 4px;
  background: var(--accent-red);
  margin: 10px auto 0;
  border-radius: 10px;
}

/* CARD */
.member-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding: 25px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

/* IMAGE */
.member-img {
  width: 180px;
  height: 220px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.member-card:hover img {
  transform: scale(1.08);
}

/* TEXT */
.member-card h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 5px;
}

.member-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about {
    padding: 60px 0;
  }
}