.about-hero { text-align: center; max-width: 900px; margin: 0 auto 5rem; }
.about-hero h2 { font-size: 3.5rem; color: #fff; font-weight: 900; margin-bottom: 2rem; text-shadow: 0 0 20px rgba(255,255,255,0.1); }
.about-hero p { font-size: 1.4rem; color: var(--text-light); line-height: 1.9; font-weight: 500; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.team-member { 
    background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; 
    text-align: center; transition: var(--transition); border: 1px solid var(--border);
}
.team-member:hover { transform: translateY(-15px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--primary-glow); }
.member-img-wrapper { position: relative; padding-top: 100%; overflow: hidden; border-bottom: 2px solid var(--border); }
.member-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; filter: grayscale(50%); }
.team-member:hover .member-img { transform: scale(1.1); filter: grayscale(0%); }
.member-info { padding: 2.5rem 2rem; background: var(--surface); }
.member-name { font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.member-role { color: var(--primary); font-weight: 800; margin-bottom: 1.5rem; font-size: 1.1rem; }
.member-desc { color: var(--text-light); font-size: 1.1rem; line-height: 1.7; }

@media (max-width: 968px) {
    .about-hero h2 { font-size: 2.5rem; }
    .about-hero p { font-size: 1.1rem; padding: 0 1rem; }
    .team-grid { grid-template-columns: 1fr; gap: 2rem; }
}
