.account_profile_card {
    max-width: 650px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 28px;
}

.account_profile_header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.account_profile_avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--S);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.account_profile_header h2 {
    margin: 0;
    font-size: 1.7rem;
    color: var(--text_muted);
}

.account_profile_header p {
    margin: 6px 0 0;
    color: #475569;
    font-size: 0.95rem;
}

.account_profile_details {
    display: grid;
    gap: 12px;
}

.account_detail_row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.account_detail_row span {
    color: #475569;
    font-weight: 600;
}

.account_detail_row strong {
    color: var(--text_muted);

    text-align: right;
}

@media (max-width: 600px) {
    .account_profile_card {
        margin: 20px 14px;
        padding: 20px 16px;
    }

    .account_profile_header {
        flex-direction: column;
        align-items: flex-start;
    }

    .account_detail_row {
        flex-direction: column;
        align-items: flex-start;
    }

    .account_detail_row strong {
        text-align: left;
    }
}