/* Profile Styles */

.ach-profile-header {
    position: relative;
    margin: -24px -24px 24px;
}

.ach-profile-cover {
    height: 200px;
    background: linear-gradient(135deg, var(--ach-primary), var(--ach-secondary));
    border-radius: var(--ach-radius) var(--ach-radius) 0 0;
}

.ach-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--ach-white);
    position: absolute;
    bottom: -60px;
    left: 24px;
}

.ach-profile-info {
    padding-top: 70px;
}

.ach-profile-name {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.ach-profile-bio {
    color: var(--ach-text-light);
    margin: 0 0 16px 0;
}

.ach-profile-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.ach-profile-stat {
    text-align: center;
}

.ach-profile-stat-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--ach-primary);
}

.ach-profile-stat-label {
    font-size: 12px;
    color: var(--ach-text-light);
}

.ach-members-directory {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.ach-member-card {
    background: var(--ach-white);
    border: 1px solid var(--ach-border);
    border-radius: var(--ach-radius);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ach-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ach-member-avatar-wrapper {
    margin-bottom: 12px;
}

.ach-member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.ach-member-name {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
}

.ach-member-level {
    display: inline-block;
    padding: 4px 12px;
    background: var(--ach-bg);
    border-radius: 12px;
    font-size: 12px;
    margin-top: 8px;
}

