/* ============= ABOUT ============= */

.who-wrapper {
    width: 100%; height: calc(100vh - 120px);
    display: flex; justify-content: center; align-items: flex-start; padding-top: 40px;
}
.who-container { display: flex; gap: 30px; }
.who-card {
    width: 1500px; min-height: 280px; padding: 25px; box-sizing: border-box;
    border: 1px dotted #48ff00; background: rgba(0,0,0,0.85);
    text-align: center; position: relative; transition: all 0.3s ease;
}
.who-card:hover { border-color: #aa00ff; transform: scale(1.03); background: rgba(170,0,255,0.08); }
.who-header { display: flex; justify-content: flex-start; margin-bottom: 10px; }
.who-tag { font-size: 12px; letter-spacing: 3px; color: #000; background: #48ff00; padding: 4px 10px; }
.who-card h3 { font-size: 40px; margin: 5px 0 15px; letter-spacing: 2px; color: #48ff00; }
.who-card h3:hover { color: #aa00ff; }
.who-card p { font-size: 28px; line-height: 2.5; margin: 0 0 15px; color: #48ff00; transform: scale(0.8); }
.who-card p:hover { color: #aa00ff; }
.who-status { margin-top: 10px; font-size: 14px; letter-spacing: 2px; color: #48ff00; }
.who-status span { color: #aa00ff; font-weight: bold; }